From e5fdc682cc63155884f341c980d10185e37c6a91 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 29 Nov 2020 23:08:05 +0100 Subject: [PATCH] avcodec/fic: Mark decoder as init-threadsafe Signed-off-by: Andreas Rheinhardt --- libavcodec/fic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/fic.c b/libavcodec/fic.c index 457d74d7cd..d29f6d16fb 100644 --- a/libavcodec/fic.c +++ b/libavcodec/fic.c @@ -494,4 +494,5 @@ const AVCodec ff_fic_decoder = { .close = fic_decode_close, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_SLICE_THREADS, .priv_class = &fic_decoder_class, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, };