avcodec/ffwavesynth: Mark decoder as init-threadsafe

Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-11-29 23:18:19 +01:00
parent 5766c8e968
commit dbf8a1639f

View File

@ -469,5 +469,5 @@ AVCodec ff_ffwavesynth_decoder = {
.close = wavesynth_close,
.decode = wavesynth_decode,
.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};