diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 19:57:34 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 04:08:05 +0200 |
commit | c4c077ada5dcd206f99c6c816f6e20861672dd61 (patch) | |
tree | 7e66694bb91e5a988ca1c65204705bf34e7e21ff | |
parent | 2c9d398f749022ebe7a8a53bb8a51fc638d130bf (diff) | |
download | ffmpeg-c4c077ada5dcd206f99c6c816f6e20861672dd61.tar.gz |
avcodec/vqavideo: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/vqavideo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vqavideo.c b/libavcodec/vqavideo.c index a396615ce5..f690f7464a 100644 --- a/libavcodec/vqavideo.c +++ b/libavcodec/vqavideo.c @@ -653,4 +653,5 @@ const AVCodec ff_vqa_decoder = { .decode = vqa_decode_frame, .capabilities = AV_CODEC_CAP_DR1, .defaults = vqa_defaults, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |