diff options
author | wm4 <wm4@nowhere> | 2015-07-08 14:13:27 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-07-08 14:48:11 +0200 |
commit | db2268d5b11bfd290251b4aac7045535803f4d96 (patch) | |
tree | a199c62049139ff7d01acc0a2ea5db964f3d104e /wscript | |
parent | 4781f9e69a074ded4404784138bccc231906b492 (diff) |
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-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |