Changeset 382 for libmpc/trunk/libmpcenc
- Timestamp:
- 03/06/08 16:39:07 (17 years ago)
- Location:
- libmpc/trunk/libmpcenc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcenc/encode_sv7.c
r359 r382 28 28 29 29 // huffsv7.c 30 extern const Huffman_t HuffBands [33];31 extern const Huffman_t HuffRes [2][17];32 extern Huffman_t HuffSCFI_1 [4]; // contains tables for SV7-scalefactor select33 extern Huffman_t HuffSCFI_2 [16]; // contains tables for SV7-scalefactor select34 extern Huffman_t HuffDSCF_1 [64]; // contains tables for SV7-scalefactor coding35 extern Huffman_t HuffDSCF_2 [65]; // contains tables for SV7-scalefactor coding36 extern const Huffman_t *HuffQ [2][8]; // points to tables for SV7-sample coding37 extern const Huffman_t HuffQ9up [256];30 extern Huffman_t const HuffBands [33]; 31 extern Huffman_t const HuffRes [2][17]; 32 extern Huffman_t const HuffSCFI_1 [4]; // contains tables for SV7-scalefactor select 33 extern Huffman_t const HuffSCFI_2 [16]; // contains tables for SV7-scalefactor select 34 extern Huffman_t const HuffDSCF_1 [64]; // contains tables for SV7-scalefactor coding 35 extern Huffman_t const HuffDSCF_2 [65]; // contains tables for SV7-scalefactor coding 36 extern Huffman_t const * const HuffQ [2][8]; // points to tables for SV7-sample coding 37 extern Huffman_t const HuffQ9up [256]; 38 38 39 39 /* -
libmpc/trunk/libmpcenc/huffsv7.c
r161 r382 104 104 }; 105 105 106 const Huffman_t*HuffQ [2] [8] = {106 Huffman_t const * const HuffQ [2] [8] = { 107 107 { HuffQ1, HuffQ2[0], HuffQ3, HuffQ4, HuffQ5[0], HuffQ6[0], HuffQ7[0], HuffQ8[0] }, 108 108 { HuffQ1, HuffQ2[1], HuffQ3, HuffQ4, HuffQ5[1], HuffQ6[1], HuffQ7[1], HuffQ8[1] }
Note: See TracChangeset
for help on using the changeset viewer.