diff options
author | Andreas Rheinhardt <[email protected]> | 2020-11-27 03:39:45 +0100 |
---|---|---|
committer | Andreas Rheinhardt <[email protected]> | 2021-05-02 02:23:48 +0200 |
commit | b7a0850101337fb625cb0447b08d28a65249392e (patch) | |
tree | b76979655c41d2adb3991724fbc253dd0cd2258c | |
parent | 71ace22d93c3d41ccd4aaa88f7415c6649de46e1 (diff) |
avcodec/ra144dec: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <[email protected]>
-rw-r--r-- | libavcodec/ra144dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/ra144dec.c b/libavcodec/ra144dec.c index e5e3def15e..b6272b343b 100644 --- a/libavcodec/ra144dec.c +++ b/libavcodec/ra144dec.c @@ -135,4 +135,5 @@ const AVCodec ff_ra_144_decoder = { .init = ra144_decode_init, .decode = ra144_decode_frame, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |