diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-09 14:17:16 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-10 16:07:22 +0100 |
commit | 5d6a990c115850326711c2f5be4d9fd33f399616 (patch) | |
tree | 93d6dee2f09d2426e54878db3a4b04008762adf6 /libavcodec/mpegaudiotab.h | |
parent | 08303d774132775d49d4ba767092de5d426f089d (diff) | |
download | ffmpeg-5d6a990c115850326711c2f5be4d9fd33f399616.tar.gz |
mpegaudioenc: Remove broken integer-only quantization code path
Diffstat (limited to 'libavcodec/mpegaudiotab.h')
-rw-r--r-- | libavcodec/mpegaudiotab.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/mpegaudiotab.h b/libavcodec/mpegaudiotab.h index 45afe9bd16..2addcb2630 100644 --- a/libavcodec/mpegaudiotab.h +++ b/libavcodec/mpegaudiotab.h @@ -82,12 +82,7 @@ static const int bitinv32[32] = { static int16_t filter_bank[512]; static int scale_factor_table[64]; -#ifdef USE_FLOATS static float scale_factor_inv_table[64]; -#else -static int8_t scale_factor_shift[64]; -static unsigned short scale_factor_mult[64]; -#endif static unsigned char scale_diff_table[128]; /* total number of bits per allocation group */ |