1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

vaapi_hevc: Mark as async-safe

This commit is contained in:
Mark Thompson 2017-03-21 22:31:04 +00:00
parent 81b7deab82
commit 14c1101518

View File

@ -25,6 +25,7 @@
#include "avcodec.h"
#include "hevc.h"
#include "hwaccel.h"
#include "vaapi_decode.h"
typedef struct VAAPIDecodePictureHEVC {
@ -434,4 +435,5 @@ AVHWAccel ff_hevc_vaapi_hwaccel = {
.init = ff_vaapi_decode_init,
.uninit = ff_vaapi_decode_uninit,
.priv_data_size = sizeof(VAAPIDecodeContext),
.caps_internal = HWACCEL_CAP_ASYNC_SAFE,
};