From 543a2c3784450f1fddd70e7591ff503e06b45d1e Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Fri, 27 Nov 2020 13:42:40 +0100 Subject: [PATCH] avcodec/ralf: Mark decoder as init-threadsafe Signed-off-by: Andreas Rheinhardt --- libavcodec/ralf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index 2b253c5711..bb80119b0c 100644 --- a/libavcodec/ralf.c +++ b/libavcodec/ralf.c @@ -539,4 +539,5 @@ const AVCodec ff_ralf_decoder = { AV_CODEC_CAP_DR1, .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P, AV_SAMPLE_FMT_NONE }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, };