diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-27 13:52:35 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 02:29:47 +0200 |
commit | d0639af58ece57c12fb77a6536457d19dfc749ca (patch) | |
tree | 00b2a2c8ea5ff39d6f249aad255641aee9664c1e /libavcodec | |
parent | 543a2c3784450f1fddd70e7591ff503e06b45d1e (diff) | |
download | ffmpeg-d0639af58ece57c12fb77a6536457d19dfc749ca.tar.gz |
avcodec/rl2: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/rl2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/rl2.c b/libavcodec/rl2.c index d75802cc12..4d13aec0c9 100644 --- a/libavcodec/rl2.c +++ b/libavcodec/rl2.c @@ -228,4 +228,5 @@ const AVCodec ff_rl2_decoder = { .close = rl2_decode_end, .decode = rl2_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |