diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-03-21 22:31:21 +0000 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-03-22 19:07:32 +0000 |
commit | 9560766a6164ed362e7f274242a024fe7b71d154 (patch) | |
tree | 255a327e3e0d90031b3d98e3489e7a42da692afc /libavcodec | |
parent | 14c1101518388f0f190c4737ea1b88d8b55b5281 (diff) | |
download | ffmpeg-9560766a6164ed362e7f274242a024fe7b71d154.tar.gz |
vaapi_vp9: Mark as async-safe
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vaapi_vp9.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vaapi_vp9.c b/libavcodec/vaapi_vp9.c index a656ffb13c..7374465d49 100644 --- a/libavcodec/vaapi_vp9.c +++ b/libavcodec/vaapi_vp9.c @@ -21,6 +21,8 @@ */ #include "libavutil/pixdesc.h" + +#include "hwaccel.h" #include "vaapi_decode.h" #include "vp9.h" @@ -178,4 +180,5 @@ AVHWAccel ff_vp9_vaapi_hwaccel = { .init = ff_vaapi_decode_init, .uninit = ff_vaapi_decode_uninit, .priv_data_size = sizeof(VAAPIDecodeContext), + .caps_internal = HWACCEL_CAP_ASYNC_SAFE, }; |