From 072d2caf427bc7f755c2f23b9d7188be4cd6cee8 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sun, 29 Nov 2020 21:20:23 +0100 Subject: [PATCH] avcodec/flicvideo: Mark decoder as init-threadsafe Signed-off-by: Andreas Rheinhardt --- libavcodec/flicvideo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c index db35d917a9..47ca77f62e 100644 --- a/libavcodec/flicvideo.c +++ b/libavcodec/flicvideo.c @@ -1112,4 +1112,5 @@ const AVCodec ff_flic_decoder = { .close = flic_decode_end, .decode = flic_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, };