diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-27 13:42:40 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:27:40 +0200 |
commit | 543a2c3784450f1fddd70e7591ff503e06b45d1e (patch) | |
tree | 36461beeafe46a035fe3773b435cebb67c37c9c9 /libavcodec/ralf.c | |
parent | 51e38d8e1512b5083da3eb85dca7d039cd7008f4 (diff) | |
download | ffmpeg-543a2c3784450f1fddd70e7591ff503e06b45d1e.tar.gz |
avcodec/ralf: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec/ralf.c')
-rw-r--r-- | libavcodec/ralf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ralf.c b/libavcodec/ralf.c index 2b253c5711..bb80119b0c 100644 --- a/libavcodec/ralf.c +++ b/libavcodec/ralf.c @@ -539,4 +539,5 @@ const AVCodec ff_ralf_decoder = { AV_CODEC_CAP_DR1, .sample_fmts = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_S16P, AV_SAMPLE_FMT_NONE }, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |