diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 22:48:06 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 05:14:41 +0200 |
commit | 8320820ada6a32890df674d607ad589035d64760 (patch) | |
tree | 87b8871b0ab2989ae0a8076061e1ed5078a7878d | |
parent | d43f0f6136e95ab66bee2a23b9f9a756df07db25 (diff) | |
download | ffmpeg-8320820ada6a32890df674d607ad589035d64760.tar.gz |
avcodec/012v: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/012v.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/012v.c b/libavcodec/012v.c index f8aea0d04f..08c9938b12 100644 --- a/libavcodec/012v.c +++ b/libavcodec/012v.c @@ -152,4 +152,5 @@ const AVCodec ff_zero12v_decoder = { .init = zero12v_decode_init, .decode = zero12v_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |