From 1e93f42743af2e5bc40a2890c92f7d2b944aa62f Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Sat, 12 Feb 2022 06:52:45 +0100 Subject: [PATCH] avcodec/vorbisdec: Mark decoder as init-threadsafe It does not modify any static data in its init function. Signed-off-by: Andreas Rheinhardt --- libavcodec/vorbisdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/vorbisdec.c b/libavcodec/vorbisdec.c index 6e07bc5a8a..be4ac055e0 100644 --- a/libavcodec/vorbisdec.c +++ b/libavcodec/vorbisdec.c @@ -1891,7 +1891,7 @@ const AVCodec ff_vorbis_decoder = { .decode = vorbis_decode_frame, .flush = vorbis_decode_flush, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, .channel_layouts = ff_vorbis_channel_layouts, .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE },