summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-01-20 19:41:29 +0100
committerwm4 <wm4@nowhere>2016-01-20 19:41:29 +0100
commit68366b05f283d8f12f5602c74954e2ec986b2f50 (patch)
tree812859932e800bdabbfc3ab489cba889e4aaaee9 /wscript
parentca00e347fc8bf8c7ddfd45ef488180c49537e698 (diff)
downloadmpv-68366b05f283d8f12f5602c74954e2ec986b2f50.tar.bz2
mpv-68366b05f283d8f12f5602c74954e2ec986b2f50.tar.xz
vo_opengl: add KMS/DRM VAAPI hardware decoding interop
Just requires glueing it together with Bloat Super Glue (tm).
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 5 insertions, 1 deletions
diff --git a/wscript b/wscript
index 8d15f383f3..ca48401c4e 100644
--- a/wscript
+++ b/wscript
@@ -705,7 +705,11 @@ video_output_features = [
'desc': 'VAAPI (Wayland support)',
'deps': [ 'vaapi', 'gl-wayland' ],
'func': check_pkg_config('libva-wayland', '>= 0.36.0'),
-
+ }, {
+ 'name': '--vaapi-drm',
+ 'desc': 'VAAPI (DRM/EGL support)',
+ 'deps': [ 'vaapi', 'egl-drm' ],
+ 'func': check_pkg_config('libva-drm', '>= 0.36.0'),
}, {
'name': '--vaapi-glx',
'desc': 'VAAPI GLX',