1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avcodec/arbc: Mark decoder as init-threadsafe

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2020-11-30 17:22:06 +01:00
committed by Andreas Rheinhardt
parent d0f90e23b4
commit f812913451

View File

@@ -223,5 +223,5 @@ const AVCodec ff_arbc_decoder = {
.flush = decode_flush, .flush = decode_flush,
.close = decode_close, .close = decode_close,
.capabilities = AV_CODEC_CAP_DR1, .capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP, .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
}; };