summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm_data.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-06-17 03:41:36 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-22 08:31:23 +0200
commit73b847e136481f643a855d4504a5fa66b47db48c (patch)
tree1adfd144bb844b20c41823f1bc68996fd34b3787 /libavcodec/adpcm_data.h
parentac5bd4e41a01eb45c2909e98d68a434ac58a32e5 (diff)
downloadffmpeg-73b847e136481f643a855d4504a5fa66b47db48c.tar.gz
avcodec/adpcm_data: Move tables only used by adpcm.c to it
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/adpcm_data.h')
-rw-r--r--libavcodec/adpcm_data.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/libavcodec/adpcm_data.h b/libavcodec/adpcm_data.h
index d678bfc71a..7dec6499f8 100644
--- a/libavcodec/adpcm_data.h
+++ b/libavcodec/adpcm_data.h
@@ -31,18 +31,12 @@
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];
extern const int16_t ff_adpcm_AdaptationTable[];
extern const uint8_t ff_adpcm_AdaptCoeff1[];
extern const int8_t ff_adpcm_AdaptCoeff2[];
extern const int16_t ff_adpcm_yamaha_indexscale[];
extern const int8_t ff_adpcm_yamaha_difflookup[];
-extern const int16_t ff_adpcm_afc_coeffs[2][16];
-extern const int16_t ff_adpcm_mtaf_stepsize[32][16];
-extern const int8_t ff_adpcm_ima_cunning_index_table[9];
-extern const int16_t ff_adpcm_ima_cunning_step_table[61];
#endif /* AVCODEC_ADPCM_DATA_H */