diff options
author | wm4 <wm4@nowhere> | 2017-01-17 08:11:12 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-01-17 08:11:12 +0100 |
commit | 9850932722eb252fcf685080f14edd8b10c8685e (patch) | |
tree | 29c3215a132c402b405eb30b9397bb2c1492ff61 | |
parent | 64041f963e7214fc07b62c834050419303fe1595 (diff) |
build: prefix hwaccel decoder wrapper filenames with hw_
Should have done this a long time ago.
d3d.c remains as it is, because it's just a bunch of helper functions.
-rw-r--r-- | video/decode/hw_cuda.c (renamed from video/decode/cuda.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_d3d11va.c (renamed from video/decode/d3d11va.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_dxva2.c (renamed from video/decode/dxva2.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_vaapi.c (renamed from video/decode/vaapi.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_vaapi_old.c (renamed from video/decode/vaapi_old.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_vdpau.c (renamed from video/decode/vdpau.c) | 0 | ||||
-rw-r--r-- | video/decode/hw_videotoolbox.c (renamed from video/decode/videotoolbox.c) | 0 | ||||
-rw-r--r-- | wscript_build.py | 16 |
8 files changed, 8 insertions, 8 deletions
diff --git a/video/decode/cuda.c b/video/decode/hw_cuda.c index 92ba0772c4..92ba0772c4 100644 --- a/video/decode/cuda.c +++ b/video/decode/hw_cuda.c diff --git a/video/decode/d3d11va.c b/video/decode/hw_d3d11va.c index a69a3890bd..a69a3890bd 100644 --- a/video/decode/d3d11va.c +++ b/video/decode/hw_d3d11va.c diff --git a/video/decode/dxva2.c b/video/decode/hw_dxva2.c index c6a34a2e70..c6a34a2e70 100644 --- a/video/decode/dxva2.c +++ b/video/decode/hw_dxva2.c diff --git a/video/decode/vaapi.c b/video/decode/hw_vaapi.c index 13e38f2258..13e38f2258 100644 --- a/video/decode/vaapi.c +++ b/video/decode/hw_vaapi.c diff --git a/video/decode/vaapi_old.c b/video/decode/hw_vaapi_old.c index 9c0907d0d4..9c0907d0d4 100644 --- a/video/decode/vaapi_old.c +++ b/video/decode/hw_vaapi_old.c diff --git a/video/decode/vdpau.c b/video/decode/hw_vdpau.c index a6b6210804..a6b6210804 100644 --- a/video/decode/vdpau.c +++ b/video/decode/hw_vdpau.c diff --git a/video/decode/videotoolbox.c b/video/decode/hw_videotoolbox.c index c6f1a472bf..c6f1a472bf 100644 --- a/video/decode/videotoolbox.c +++ b/video/decode/hw_videotoolbox.c diff --git a/wscript_build.py b/wscript_build.py index 9e213e824e..56006f3169 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -302,16 +302,16 @@ def build(ctx): ( "video/vaapi.c", "vaapi" ), ( "video/vdpau.c", "vdpau" ), ( "video/vdpau_mixer.c", "vdpau" ), - ( "video/decode/dec_video.c"), - ( "video/decode/cuda.c", "cuda-hwaccel" ), - ( "video/decode/dxva2.c", "d3d-hwaccel" ), - ( "video/decode/d3d11va.c", "d3d-hwaccel" ), ( "video/decode/d3d.c", "win32" ), - ( "video/decode/vaapi.c", "vaapi-hwaccel-new" ), - ( "video/decode/vaapi_old.c", "vaapi-hwaccel-old" ), + ( "video/decode/dec_video.c"), + ( "video/decode/hw_cuda.c", "cuda-hwaccel" ), + ( "video/decode/hw_dxva2.c", "d3d-hwaccel" ), + ( "video/decode/hw_d3d11va.c", "d3d-hwaccel" ), + ( "video/decode/hw_vaapi.c", "vaapi-hwaccel-new" ), + ( "video/decode/hw_vaapi_old.c", "vaapi-hwaccel-old" ), + ( "video/decode/hw_vdpau.c", "vdpau-hwaccel" ), + ( "video/decode/hw_videotoolbox.c", "videotoolbox-hwaccel" ), ( "video/decode/vd_lavc.c" ), - ( "video/decode/videotoolbox.c", "videotoolbox-hwaccel" ), - ( "video/decode/vdpau.c", "vdpau-hwaccel" ), ( "video/filter/refqueue.c" ), ( "video/filter/vf.c" ), ( "video/filter/vf_buffer.c" ), |