Browse Source

avcodec/opusdec: Mark decoder as init-threadsafe

Reviewed-by: Lynne <dev@lynne.ee>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
tags/n4.4
Andreas Rheinhardt 4 years ago
parent
commit
e0311e848a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/opusdec.c

+ 1
- 1
libavcodec/opusdec.c View File

@@ -716,5 +716,5 @@ AVCodec ff_opus_decoder = {
.decode = opus_decode_packet,
.flush = opus_decode_flush,
.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY | AV_CODEC_CAP_CHANNEL_CONF,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
};

Loading…
Cancel
Save