comparison aactab.h @ 7539:4fca7939ad48 libavcodec

More OKed hunks of the AAC decoder from SoC
author superdump
date Mon, 11 Aug 2008 11:16:06 +0000
parents a3f7ffdb676d
children c49ab52db74c
comparison
equal deleted inserted replaced
7538:06c291f42d5f 7539:4fca7939ad48
33 #include "libavutil/mem.h" 33 #include "libavutil/mem.h"
34 #include "aac.h" 34 #include "aac.h"
35 35
36 #include <stdint.h> 36 #include <stdint.h>
37 37
38 /* NOTE:
39 * Tables in this file are used by the AAC decoder and will be used by the AAC
40 * encoder.
41 */
42
43 /* @name number of scalefactor window bands for long and short transform windows respectively
44 * @{
45 */
46 extern const uint8_t ff_aac_num_swb_1024[];
47 extern const uint8_t ff_aac_num_swb_128 [];
48 // @}
49
38 extern const uint32_t ff_aac_scalefactor_code[121]; 50 extern const uint32_t ff_aac_scalefactor_code[121];
39 extern const uint8_t ff_aac_scalefactor_bits[121]; 51 extern const uint8_t ff_aac_scalefactor_bits[121];
40 52
41 extern const uint16_t *ff_aac_spectral_codes[11]; 53 extern const uint16_t *ff_aac_spectral_codes[11];
42 extern const uint8_t *ff_aac_spectral_bits [11]; 54 extern const uint8_t *ff_aac_spectral_bits [11];