diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-12 06:52:45 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-18 20:28:52 +0100 |
commit | 1e93f42743af2e5bc40a2890c92f7d2b944aa62f (patch) | |
tree | 45949c69194ba05880347a0cfe80660a70bc655e /libavcodec | |
parent | 8359803957eceeebe1f934c11330794bc0faf5ae (diff) | |
download | ffmpeg-1e93f42743af2e5bc40a2890c92f7d2b944aa62f.tar.gz |
avcodec/vorbisdec: Mark decoder as init-threadsafe
It does not modify any static data in its init function.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vorbisdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 }, |