diff mbox series

[FFmpeg-devel,18/20] avcodec/metasound: Mark decoder as init-threadsafe

Message ID HE1PR0301MB2154AE885EF25B488F8C39178F579@HE1PR0301MB2154.eurprd03.prod.outlook.com
State Accepted
Commit 5ee835944134a2b264c365c7dd59ff206761ae31
Headers show
Series [FFmpeg-devel,01/20] avcodec/wma: Remove nonsense volatile | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Andreas Rheinhardt May 7, 2021, 6:46 a.m. UTC
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/metasound.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/libavcodec/metasound.c b/libavcodec/metasound.c
index be47510d7a..57851a43c5 100644
--- a/libavcodec/metasound.c
+++ b/libavcodec/metasound.c
@@ -382,4 +382,5 @@  const AVCodec ff_metasound_decoder = {
     .capabilities   = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
     .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
                                                       AV_SAMPLE_FMT_NONE },
+    .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE,
 };