1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avcodec/g726: Mark decoders as init-threadsafe

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2020-11-29 20:52:53 +01:00
committed by Andreas Rheinhardt
parent 995ac7b55a
commit d40579c3cb

View File

@@ -514,6 +514,7 @@ const AVCodec ff_adpcm_g726_decoder = {
.decode = g726_decode_frame, .decode = g726_decode_frame,
.flush = g726_decode_flush, .flush = g726_decode_flush,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}; };
#endif #endif
@@ -528,5 +529,6 @@ const AVCodec ff_adpcm_g726le_decoder = {
.flush = g726_decode_flush, .flush = g726_decode_flush,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF, .capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
.long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM little-endian"), .long_name = NULL_IF_CONFIG_SMALL("G.726 ADPCM little-endian"),
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}; };
#endif #endif