comparison mpegaudiotab.h @ 1064:b32afefe7d33 libavcodec

* UINTX -> uintx_t INTX -> intx_t
author kabi
date Tue, 11 Feb 2003 16:35:48 +0000
parents 718a22dc121f
children 1e39f273ecd6
comparison
equal deleted inserted replaced
1063:fdeac9642346 1064:b32afefe7d33
52 1, 17, 9, 25, 5, 21, 13, 29, 52 1, 17, 9, 25, 5, 21, 13, 29,
53 3, 19, 11, 27, 7, 23, 15, 31 53 3, 19, 11, 27, 7, 23, 15, 31
54 }; 54 };
55 55
56 56
57 static INT16 filter_bank[512]; 57 static int16_t filter_bank[512];
58 58
59 static int scale_factor_table[64]; 59 static int scale_factor_table[64];
60 #ifdef USE_FLOATS 60 #ifdef USE_FLOATS
61 static float scale_factor_inv_table[64]; 61 static float scale_factor_inv_table[64];
62 #else 62 #else
63 static INT8 scale_factor_shift[64]; 63 static int8_t scale_factor_shift[64];
64 static unsigned short scale_factor_mult[64]; 64 static unsigned short scale_factor_mult[64];
65 #endif 65 #endif
66 static unsigned char scale_diff_table[128]; 66 static unsigned char scale_diff_table[128];
67 67
68 /* total number of bits per allocation group */ 68 /* total number of bits per allocation group */