diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 21:05:50 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 04:14:03 +0200 |
commit | e87edfc28ac47336cce57068a8e1aa3eda52394c (patch) | |
tree | 2fe1dbe16164914f3536e86d851837c72c2820b1 /libavcodec | |
parent | 94b3ce05b93978e4ed88e20161c344ff496044c3 (diff) | |
download | ffmpeg-e87edfc28ac47336cce57068a8e1aa3eda52394c.tar.gz |
avcodec/sanm: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/sanm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/sanm.c b/libavcodec/sanm.c index dddc2c871b..9506bbe04c 100644 --- a/libavcodec/sanm.c +++ b/libavcodec/sanm.c @@ -1525,4 +1525,5 @@ const AVCodec ff_sanm_decoder = { .close = decode_end, .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |