diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 23:21:25 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:23:37 +0200 |
commit | 843a717b33a02a993208a0956059bd47042443b9 (patch) | |
tree | 049b294a1a40a04228ff23a71735d3b73299213f | |
parent | e5fdc682cc63155884f341c980d10185e37c6a91 (diff) | |
download | ffmpeg-843a717b33a02a993208a0956059bd47042443b9.tar.gz |
avcodec/fastaudio: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/fastaudio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/fastaudio.c b/libavcodec/fastaudio.c index e771534e9f..a07c5e60a7 100644 --- a/libavcodec/fastaudio.c +++ b/libavcodec/fastaudio.c @@ -199,4 +199,5 @@ const AVCodec ff_fastaudio_decoder = { .capabilities = AV_CODEC_CAP_DR1, .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP, AV_SAMPLE_FMT_NONE }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |