forked from FFmpeg/FFmpeg
avcodec/wmavoice: Mark decoder as init-threadsafe
It is init-threadsafe since b9c1ab8907
and except on MIPS even before that due to its use of ff_thread_once()
for static initialization.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
parent
f6ee90b6dc
commit
f48e4639ae
1 changed files with 1 additions and 1 deletions
|
@ -2007,6 +2007,6 @@ const AVCodec ff_wmavoice_decoder = {
|
|||
.close = wmavoice_decode_end,
|
||||
.decode = wmavoice_decode_packet,
|
||||
.capabilities = AV_CODEC_CAP_SUBFRAMES | AV_CODEC_CAP_DR1 | AV_CODEC_CAP_DELAY,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
|
||||
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP,
|
||||
.flush = wmavoice_flush,
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue