diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-11-26 17:48:29 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-12-04 15:46:46 +0100 |
commit | 88f0d6b60c9b473b9654b27db6e9cd078213e3fa (patch) | |
tree | 2dbfc240ececce7b7176d9ec8ede914986327c7c | |
parent | 44a893f09cff7ef70031db842e5e575caf213e95 (diff) | |
download | ffmpeg-88f0d6b60c9b473b9654b27db6e9cd078213e3fa.tar.gz |
avcodec/xl: Mark decoder as init-threadsafe
Reviewed-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-rw-r--r-- | libavcodec/xl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/xl.c b/libavcodec/xl.c index 37ab46e4f7..72fb3bf259 100644 --- a/libavcodec/xl.c +++ b/libavcodec/xl.c @@ -135,4 +135,5 @@ AVCodec ff_xl_decoder = { .init = decode_init, .decode = decode_frame, .capabilities = AV_CODEC_CAP_DR1, + .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE, }; |