From f7813a5324be39d13ab536c245d15dfc602a7849 Mon Sep 17 00:00:00 2001 From: Tim Redfern Date: Sun, 29 Dec 2013 12:19:38 +0000 Subject: basic type mechanism working --- ffmpeg/libavcodec/adpcm_data.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ffmpeg/libavcodec/adpcm_data.h') diff --git a/ffmpeg/libavcodec/adpcm_data.h b/ffmpeg/libavcodec/adpcm_data.h index 0ebb7c3..a14d520 100644 --- a/ffmpeg/libavcodec/adpcm_data.h +++ b/ffmpeg/libavcodec/adpcm_data.h @@ -28,6 +28,10 @@ #include +static const uint8_t ff_adpcm_ima_block_sizes[4] = { 4, 12, 4, 20 }; +static const uint8_t ff_adpcm_ima_block_samples[4] = { 16, 32, 8, 32 }; + +extern const int8_t const *ff_adpcm_index_tables[4]; extern const int8_t ff_adpcm_index_table[16]; extern const int16_t ff_adpcm_step_table[89]; extern const int16_t ff_adpcm_oki_step_table[49]; -- cgit v1.2.3