diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 20:17:24 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 04:12:28 +0200 |
commit | 81615a265faefdce129c829d1596ab7e5229dcfe (patch) | |
tree | f8f2d33469dc14f66d6465536564c5ba7c4b1c25 | |
parent | dcad67583178f4d4215f2dc97941b405d2978865 (diff) | |
download | ffmpeg-81615a265faefdce129c829d1596ab7e5229dcfe.tar.gz |
avcodec/v308dec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/v308dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/v308dec.c b/libavcodec/v308dec.c index c2b0a69561..d059474b36 100644 --- a/libavcodec/v308dec.c +++ b/libavcodec/v308dec.c @@ -80,4 +80,5 @@ const AVCodec ff_v308_decoder = { .init = v308_decode_init, .decode = v308_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |