diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 20:23:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 04:13:03 +0200 |
commit | e7db133864431cfd0ebcae3b5419904dd466c37c (patch) | |
tree | c582b9ce56d9ef98a2150fe081cb63d8a2902e25 | |
parent | af815d4bea1898b96cf1da0a8738fbae73a34a02 (diff) | |
download | ffmpeg-e7db133864431cfd0ebcae3b5419904dd466c37c.tar.gz |
avcodec/tiertexseqv: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/tiertexseqv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/tiertexseqv.c b/libavcodec/tiertexseqv.c index e5b863b6af..7170eb3155 100644 --- a/libavcodec/tiertexseqv.c +++ b/libavcodec/tiertexseqv.c @@ -271,4 +271,5 @@ const AVCodec ff_tiertexseqvideo_decoder = { .close = seqvideo_decode_end, .decode = seqvideo_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |