summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-07-08 14:13:27 +0200
committerwm4 <wm4@nowhere>2015-07-08 14:48:11 +0200
commitdb2268d5b11bfd290251b4aac7045535803f4d96 (patch)
treea199c62049139ff7d01acc0a2ea5db964f3d104e /wscript
parent4781f9e69a074ded4404784138bccc231906b492 (diff)
downloadmpv-db2268d5b11bfd290251b4aac7045535803f4d96.tar.bz2
mpv-db2268d5b11bfd290251b4aac7045535803f4d96.tar.xz
vaapi: drop compatibility crap and vo_vaapi deinterlacer
Drop libva versions below 0.34.0. These are ancient, so I don't care. Drop the vo_vaapi deinterlacer as well. With 0.34.0, VPP is always available, and deinterlacing is done with vf_vavpp. The vaCreateSurfaces() function changes its signature - actually it did in 0.34.0 or so, and the <va/va_compat.h> defined a macro to make it use the old signature.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index dbc575d620..1cad348231 100644
--- a/wscript
+++ b/wscript
@@ -627,7 +627,7 @@ video_output_features = [
'desc': 'VAAPI acceleration',
'deps': [ 'x11', 'libdl' ],
'func': check_pkg_config(
- 'libva', '>= 0.32.0', 'libva-x11', '>= 0.32.0'),
+ 'libva', '>= 0.34.0', 'libva-x11', '>= 0.34.0'),
}, {
'name': '--vaapi-vpp',
'desc': 'VAAPI VPP',