diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-30 18:42:26 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:59:17 +0200 |
commit | 53c077d5ad615c3685edb96f19bb683414f39ec5 (patch) | |
tree | 4f2bbb02eb57b6a34a4b8299c9d47f50e1c255f8 | |
parent | 0ef263eb43f7071116c1ef32de3224891fe05e51 (diff) | |
download | ffmpeg-53c077d5ad615c3685edb96f19bb683414f39ec5.tar.gz |
avcodec/ra288: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/ra288.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ra288.c b/libavcodec/ra288.c index 05f322c40a..4310ccdf20 100644 --- a/libavcodec/ra288.c +++ b/libavcodec/ra288.c @@ -246,4 +246,5 @@ const AVCodec ff_ra_288_decoder = { .init = ra288_decode_init, .decode = ra288_decode_frame, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |