diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 23:29:44 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:24:54 +0200 |
commit | 23566222c30f163c5bea437f35992a3addf9a82a (patch) | |
tree | a24a973441b519520c3059c71c2703c0b9d72a14 | |
parent | ccad905aa45c7adff2590d860b5a06862b982f27 (diff) | |
download | ffmpeg-23566222c30f163c5bea437f35992a3addf9a82a.tar.gz |
avcodec/escape130: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/escape130.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/escape130.c b/libavcodec/escape130.c index 67373c3470..ee1eafe861 100644 --- a/libavcodec/escape130.c +++ b/libavcodec/escape130.c @@ -355,5 +355,5 @@ const AVCodec ff_escape130_decoder = { .close = escape130_decode_close, .decode = escape130_decode_frame, .capabilities = AV_CODEC_CAP_DR1, - .caps_internal = FF_CODEC_CAP_INIT_CLEANUP, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, }; |