comparison ac3dec_data.c @ 9980:ac31ff44d1a5 libavcodec

cosmetics: Reorder some tables/lines to make future diffs smaller.
author diego
date Wed, 22 Jul 2009 23:33:58 +0000
parents fe394fdc45e3
children 68de5143aa45
comparison
equal deleted inserted replaced
9979:8fff6b5d4ae4 9980:ac31ff44d1a5
40 { 1, 2, 1 }, { 1, 2, 2 }, { 2, 0, 0 }, { 2, 0, 1 }, 40 { 1, 2, 1 }, { 1, 2, 2 }, { 2, 0, 0 }, { 2, 0, 1 },
41 { 2, 0, 2 }, { 2, 1, 0 }, { 2, 1, 1 }, { 2, 1, 2 }, 41 { 2, 0, 2 }, { 2, 1, 0 }, { 2, 1, 1 }, { 2, 1, 2 },
42 { 2, 2, 0 }, { 2, 2, 1 }, { 2, 2, 2 }, { 3, 0, 0 }, 42 { 2, 2, 0 }, { 2, 2, 1 }, { 2, 2, 2 }, { 3, 0, 0 },
43 { 3, 0, 1 }, { 3, 0, 2 }, { 3, 1, 0 }, { 3, 1, 1 } 43 { 3, 0, 1 }, { 3, 0, 2 }, { 3, 1, 0 }, { 3, 1, 1 }
44 }; 44 };
45
46 /**
47 * Table of bin locations for rematrixing bands
48 * reference: Section 7.5.2 Rematrixing : Frequency Band Definitions
49 */
50 const uint8_t ff_ac3_rematrix_band_tab[5] = { 13, 25, 37, 61, 253 };
45 51
46 const uint8_t ff_eac3_hebap_tab[64] = { 52 const uint8_t ff_eac3_hebap_tab[64] = {
47 0, 1, 2, 3, 4, 5, 6, 7, 8, 8, 53 0, 1, 2, 3, 4, 5, 6, 7, 8, 8,
48 8, 8, 9, 9, 9, 10, 10, 10, 10, 11, 54 8, 8, 9, 9, 9, 10, 10, 10, 10, 11,
49 11, 11, 11, 12, 12, 12, 12, 13, 13, 13, 55 11, 11, 11, 12, 12, 12, 12, 13, 13, 13,
1123 /** 1129 /**
1124 * Table E2.16 Default Coupling Banding Structure 1130 * Table E2.16 Default Coupling Banding Structure
1125 */ 1131 */
1126 const uint8_t ff_eac3_default_cpl_band_struct[18] = 1132 const uint8_t ff_eac3_default_cpl_band_struct[18] =
1127 { 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 }; 1133 { 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 1 };
1128
1129 /**
1130 * Table of bin locations for rematrixing bands
1131 * reference: Section 7.5.2 Rematrixing : Frequency Band Definitions
1132 */
1133 const uint8_t ff_ac3_rematrix_band_tab[5] = { 13, 25, 37, 61, 253 };