avcodec/qdmc: Mark decoder as init-threadsafe

It already uses ff_thread_once() to initialize its static data.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-12-28 20:01:47 +01:00
parent e0311e848a
commit bd46e3ee71
1 changed files with 1 additions and 0 deletions

View File

@ -736,4 +736,5 @@ AVCodec ff_qdmc_decoder = {
.decode = qdmc_decode_frame,
.flush = qdmc_flush,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_CHANNEL_CONF,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
};