diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-04 21:14:03 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-10 16:07:22 +0100 |
commit | 45ef963908f5ccc63161d4c3479ba8f2a56a7705 (patch) | |
tree | 8ef10caa7f2f0ba77c1f577dd05dae6d98ffd47a /libavcodec/mpegaudiotab.h | |
parent | 5d6a990c115850326711c2f5be4d9fd33f399616 (diff) | |
download | ffmpeg-45ef963908f5ccc63161d4c3479ba8f2a56a7705.tar.gz |
mpegaudioenc: Move some static tables to MpegAudioContext
This reduces global state and the amount of globally visible tables.
Diffstat (limited to 'libavcodec/mpegaudiotab.h')
-rw-r--r-- | libavcodec/mpegaudiotab.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libavcodec/mpegaudiotab.h b/libavcodec/mpegaudiotab.h index 2addcb2630..d30ef1b752 100644 --- a/libavcodec/mpegaudiotab.h +++ b/libavcodec/mpegaudiotab.h @@ -79,15 +79,6 @@ static const int bitinv32[32] = { }; -static int16_t filter_bank[512]; - -static int scale_factor_table[64]; -static float scale_factor_inv_table[64]; -static unsigned char scale_diff_table[128]; - -/* total number of bits per allocation group */ -static unsigned short total_quant_bits[17]; - /* signal to noise ratio of each quantification step (could be computed from quant_steps[]). The values are dB multiplied by 10 */ |