summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-17 14:17:49 +0200
committerwm4 <wm4@nowhere>2015-10-17 14:17:49 +0200
commit7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd (patch)
treeefd65d71046533ff5462b9cac865b77b06c76787 /wscript
parent76bfd5b4a237dda8f4ec5c05315bf566421f7908 (diff)
downloadmpv-7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd.tar.bz2
mpv-7e7ef2f01d56cc1a89b41ee45419075e01bf1ebd.tar.xz
build: bump required libva version
0.34 and 0.35 don't have the buffer API, such as vaAcquireBufferHandle. This is only needed for the EGL interop, but why bother staying compatible for such old things (0.36 was released over a year ago). We also can drop some minor compatibility ifdeffery.
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index 7de1c5855d..d9dd156968 100644
--- a/wscript
+++ b/wscript
@@ -647,22 +647,22 @@ video_output_features = [
'desc': 'VAAPI acceleration',
'deps': [ 'libdl' ],
'deps_any': [ 'x11', 'wayland' ],
- 'func': check_pkg_config('libva', '>= 0.34.0'),
+ 'func': check_pkg_config('libva', '>= 0.36.0'),
}, {
'name': '--vaapi-x11',
'desc': 'VAAPI (X11 support)',
'deps': [ 'vaapi', 'x11' ],
- 'func': check_pkg_config('libva-x11', '>= 0.34.0'),
+ 'func': check_pkg_config('libva-x11', '>= 0.36.0'),
}, {
'name': '--vaapi-wayland',
'desc': 'VAAPI (Wayland support)',
'deps': [ 'vaapi', 'wayland' ],
- 'func': check_pkg_config('libva-wayland', '>= 0.34.0'),
+ 'func': check_pkg_config('libva-wayland', '>= 0.36.0'),
}, {
'name': '--vaapi-vpp',
'desc': 'VAAPI VPP',
'deps': [ 'vaapi' ],
- 'func': check_pkg_config('libva', '>= 0.34.0'),
+ 'func': check_pkg_config('libva', '>= 0.36.0'),
}, {
'name': '--vaapi-glx',
'desc': 'VAAPI GLX',