diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 18:45:22 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:59:41 +0200 |
commit | 4051599cea72b81138fadd38dbd14e5e41b940c4 (patch) | |
tree | 384a572933e7753bf1aec4461a79326ed1891abb | |
parent | 53c077d5ad615c3685edb96f19bb683414f39ec5 (diff) | |
download | ffmpeg-4051599cea72b81138fadd38dbd14e5e41b940c4.tar.gz |
avcodec/truespeech: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/truespeech.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c index 5eac34fefc..a65ced15d7 100644 --- a/libavcodec/truespeech.c +++ b/libavcodec/truespeech.c @@ -364,4 +364,5 @@ const AVCodec ff_truespeech_decoder = { .init = truespeech_decode_init, .decode = truespeech_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |