diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-29 23:30:34 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-02 03:25:29 +0200 |
commit | fff618b8b89f479841a44841fa5c8e6fa4cfaf1b (patch) | |
tree | 01dc3f6e61600d7ae487ec2a1aa8bda68f1b5233 | |
parent | 23566222c30f163c5bea437f35992a3addf9a82a (diff) | |
download | ffmpeg-fff618b8b89f479841a44841fa5c8e6fa4cfaf1b.tar.gz |
avcodec/escape124: Mark decoder as init-threadsafe
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/escape124.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/escape124.c b/libavcodec/escape124.c index 3b514e7eb0..ab5c8d2243 100644 --- a/libavcodec/escape124.c +++ b/libavcodec/escape124.c @@ -386,4 +386,5 @@ const AVCodec ff_escape124_decoder = { .close = escape124_decode_close, .decode = escape124_decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |