avcodec/vima: Make decoder init-threadsafe

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2020-11-30 19:01:16 +01:00 committed by Andreas Rheinhardt
parent 58ca07320b
commit acde66082f

View File

@ -26,13 +26,13 @@
*/ */
#include "libavutil/channel_layout.h" #include "libavutil/channel_layout.h"
#include "libavutil/thread.h"
#include "adpcm_data.h" #include "adpcm_data.h"
#include "avcodec.h" #include "avcodec.h"
#include "get_bits.h" #include "get_bits.h"
#include "internal.h" #include "internal.h"
static int predict_table_init = 0;
static uint16_t predict_table[5786 * 2]; static uint16_t predict_table[5786 * 2];
static const uint8_t size_table[] = { static const uint8_t size_table[] = {
@ -84,16 +84,9 @@ static const int8_t *const step_index_tables[] = {
index_table4, index_table5, index_table6 index_table4, index_table5, index_table6
}; };
static av_cold int decode_init(AVCodecContext *avctx) static av_cold void predict_table_init(void)
{ {
int start_pos; for (int start_pos = 0; start_pos < 64; start_pos++) {
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
if (predict_table_init)
return 0;
for (start_pos = 0; start_pos < 64; start_pos++) {
unsigned int dest_pos, table_pos; unsigned int dest_pos, table_pos;
for (table_pos = 0, dest_pos = start_pos; for (table_pos = 0, dest_pos = start_pos;
@ -110,7 +103,15 @@ static av_cold int decode_init(AVCodecContext *avctx)
predict_table[dest_pos] = put; predict_table[dest_pos] = put;
} }
} }
predict_table_init = 1; }
static av_cold int decode_init(AVCodecContext *avctx)
{
static AVOnce init_static_once = AV_ONCE_INIT;
avctx->sample_fmt = AV_SAMPLE_FMT_S16;
ff_thread_once(&init_static_once, predict_table_init);
return 0; return 0;
} }
@ -215,4 +216,5 @@ const AVCodec ff_adpcm_vima_decoder = {
.init = decode_init, .init = decode_init,
.decode = decode_frame, .decode = decode_frame,
.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,
}; };