mirror of https://github.com/mpv-player/mpv
wscript: drop pointless libavcodec vaapi.h/dxva2.h/d3d11va.h checks
Not needed under any circumstances. While the Windows ones export functions to which we must link, these functions are always available, even if libavcodec was compiled with D3D disabled.
This commit is contained in:
parent
cda9fdcfc7
commit
c0cbe74912
8
wscript
8
wscript
|
@ -797,7 +797,7 @@ hwaccel_features = [
|
|||
'name': '--vaapi-hwaccel',
|
||||
'desc': 'libavcodec VAAPI hwaccel',
|
||||
'deps': [ 'vaapi' ],
|
||||
'func': check_headers('libavcodec/vaapi.h', use='libav'),
|
||||
'func': check_true,
|
||||
}, {
|
||||
'name': '--vaapi-hwaccel-new',
|
||||
'desc': 'libavcodec VAAPI hwaccel (new)',
|
||||
|
@ -837,11 +837,9 @@ hwaccel_features = [
|
|||
use='libav'),
|
||||
}, {
|
||||
'name': '--d3d-hwaccel',
|
||||
'desc': 'libavcodec DXVA2 and D3D11VA hwaccel',
|
||||
'desc': 'DXVA2 and D3D11VA hwaccel',
|
||||
'deps': [ 'win32' ],
|
||||
'func': compose_checks(
|
||||
check_headers('libavcodec/dxva2.h', use='libav'),
|
||||
check_headers('libavcodec/d3d11va.h', use='libav')),
|
||||
'func': check_true,
|
||||
}, {
|
||||
'name': '--cuda-hwaccel',
|
||||
'desc': 'CUDA hwaccel',
|
||||
|
|
Loading…
Reference in New Issue