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.
This commit is contained in:
wm4 2017-01-17 15:12:55 +01:00
parent 9d68d8fb0f
commit a38283d5d9
1 changed files with 1 additions and 1 deletions

View File

@ -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')),
}
]