summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-01-17 15:12:55 +0100
committerwm4 <wm4@nowhere>2017-01-17 15:48:56 +0100
commita38283d5d92e75c62b1c0be5e029aaa5ce9d4b1e (patch)
tree99fb30f3a9dcf4751c9667cf160f5ae5dbcf45f0 /wscript
parent9d68d8fb0f806f25408435c09ac5dbbe34b95462 (diff)
downloadmpv-a38283d5d92e75c62b1c0be5e029aaa5ce9d4b1e.tar.bz2
mpv-a38283d5d92e75c62b1c0be5e029aaa5ce9d4b1e.tar.xz
vaapi: we don't need SSE intrinsics with the new API
libavutil does this for us. Although the new vaapi decode API does not strictly introduce or even need av_image_copy_uc_from(), it's implied that it will be present if the new decode API is present - even if it's not, we can't use our own SSE code with it anyway.
Diffstat (limited to 'wscript')
-rw-r--r--wscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript b/wscript
index 2872e2500a..b05f4e67c6 100644
--- a/wscript
+++ b/wscript
@@ -888,7 +888,7 @@ hwaccel_features = [
}, {
'name': 'sse4-intrinsics',
'desc': 'GCC SSE4 intrinsics for GPU memcpy',
- 'deps_any': [ 'd3d-hwaccel', 'vaapi-hwaccel' ],
+ 'deps_any': [ 'd3d-hwaccel', 'vaapi-hwaccel-old' ],
'func': check_cc(fragment=load_fragment('sse.c')),
}
]