summaryrefslogtreecommitdiff
path: root/src/libffmpeg/libavcodec/mpegaudiotab.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libffmpeg/libavcodec/mpegaudiotab.h')
-rw-r--r--src/libffmpeg/libavcodec/mpegaudiotab.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/libffmpeg/libavcodec/mpegaudiotab.h b/src/libffmpeg/libavcodec/mpegaudiotab.h
index 41fb0fdbd..59bf86893 100644
--- a/src/libffmpeg/libavcodec/mpegaudiotab.h
+++ b/src/libffmpeg/libavcodec/mpegaudiotab.h
@@ -8,6 +8,12 @@
* same archive
*/
+/**
+ * @file mpegaudiotab.h
+ * mpeg audio layer 2 tables.
+ * Most of them come from the mpeg audio specification.
+ */
+
#define SQRT2 1.41421356237309514547
static const int costab32[30] = {
@@ -54,13 +60,13 @@ static const int bitinv32[32] = {
};
-static INT16 filter_bank[512];
+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 scale_factor_shift[64];
+static int8_t scale_factor_shift[64];
static unsigned short scale_factor_mult[64];
#endif
static unsigned char scale_diff_table[128];