summaryrefslogtreecommitdiff
path: root/libavcodec/gsmdec_data.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-06-04 16:53:54 +0200
committerDiego Biurrun <diego@biurrun.de>2016-06-07 13:22:22 +0200
commit81f769fa129edc51c28285649c2df6da717e718f (patch)
tree07c0e4d4d0826b9cd82f1daf3ae7de5a3da0c851 /libavcodec/gsmdec_data.h
parent42dc214323637464759354912e18b2bee1884dd1 (diff)
downloadffmpeg-81f769fa129edc51c28285649c2df6da717e718f.tar.gz
gsm: Move requant_tab table to the gsm tables file
This avoids duplicating the table in the gsm template file. Also adjust the table type to uint8_t to save space.
Diffstat (limited to 'libavcodec/gsmdec_data.h')
-rw-r--r--libavcodec/gsmdec_data.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/gsmdec_data.h b/libavcodec/gsmdec_data.h
index f5581d53ba..f301f56079 100644
--- a/libavcodec/gsmdec_data.h
+++ b/libavcodec/gsmdec_data.h
@@ -38,6 +38,7 @@ typedef struct GSMContext {
} GSMContext;
extern const uint16_t ff_gsm_long_term_gain_tab[4];
+extern const uint8_t ff_gsm_requant_tab[4][8];
extern const int16_t ff_gsm_dequant_tab[64][8];
extern const int* const ff_gsm_apcm_bits[][4];