summaryrefslogtreecommitdiff
path: root/audio_codec/libfaad/codebook/hcb_8.h (plain)
blob: 751a3ad9877e95b5cf1bc63e19a0f2c843d8192e
1/*
2** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3** Copyright (C) 2003-2005 M. Bakker, Nero AG, http://www.nero.com
4**
5** This program is free software; you can redistribute it and/or modify
6** it under the terms of the GNU General Public License as published by
7** the Free Software Foundation; either version 2 of the License, or
8** (at your option) any later version.
9**
10** This program is distributed in the hope that it will be useful,
11** but WITHOUT ANY WARRANTY; without even the implied warranty of
12** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13** GNU General Public License for more details.
14**
15** You should have received a copy of the GNU General Public License
16** along with this program; if not, write to the Free Software
17** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18**
19** Any non-GPL usage of this software or parts of this software is strictly
20** forbidden.
21**
22** The "appropriate copyright message" mentioned in section 2c of the GPLv2
23** must read: "Code from FAAD2 is copyright (c) Nero AG, www.nero.com"
24**
25** Commercial non-GPL licensing of this software is possible.
26** For more info contact Nero AG through Mpeg4AAClicense@nero.com.
27**
28** $Id: hcb_8.h,v 1.5 2007/11/01 12:34:11 menno Exp $
29**/
30
31/* 2-step huffman table HCB_8 */
32
33
34/* 1st step: 5 bits
35 * 2^5 = 32 entries
36 *
37 * Used to find offset into 2nd step table and number of extra bits to get
38 */
39static hcb hcb8_1[] = {
40 /* 3 bit codeword */
41 { /* 00000 */ 0, 0 },
42 { /* */ 0, 0 },
43 { /* */ 0, 0 },
44 { /* */ 0, 0 },
45
46 /* 4 bit codewords */
47 { /* 00100 */ 1, 0 },
48 { /* */ 1, 0 },
49 { /* 00110 */ 2, 0 },
50 { /* */ 2, 0 },
51 { /* 01000 */ 3, 0 },
52 { /* */ 3, 0 },
53 { /* 01010 */ 4, 0 },
54 { /* */ 4, 0 },
55 { /* 01100 */ 5, 0 },
56 { /* */ 5, 0 },
57
58 /* 5 bit codewords */
59 { /* 01110 */ 6, 0 },
60 { /* 01111 */ 7, 0 },
61 { /* 10000 */ 8, 0 },
62 { /* 10001 */ 9, 0 },
63 { /* 10010 */ 10, 0 },
64 { /* 10011 */ 11, 0 },
65 { /* 10100 */ 12, 0 },
66
67 /* 6 bit codewords */
68 { /* 10101 */ 13, 1 },
69 { /* 10110 */ 15, 1 },
70 { /* 10111 */ 17, 1 },
71 { /* 11000 */ 19, 1 },
72 { /* 11001 */ 21, 1 },
73
74 /* 7 bit codewords */
75 { /* 11010 */ 23, 2 },
76 { /* 11011 */ 27, 2 },
77 { /* 11100 */ 31, 2 },
78
79 /* 7/8 bit codewords */
80 { /* 11101 */ 35, 3 },
81
82 /* 8 bit codewords */
83 { /* 11110 */ 43, 3 },
84
85 /* 8/9/10 bit codewords */
86 { /* 11111 */ 51, 5 }
87};
88
89/* 2nd step table
90 *
91 * Gives size of codeword and actual data (x,y,v,w)
92 */
93static hcb_2_pair hcb8_2[] = {
94 /* 3 bit codeword */
95 { 3, 1, 1 },
96
97 /* 4 bit codewords */
98 { 4, 2, 1 },
99 { 4, 1, 0 },
100 { 4, 1, 2 },
101 { 4, 0, 1 },
102 { 4, 2, 2 },
103
104 /* 5 bit codewords */
105 { 5, 0, 0 },
106 { 5, 2, 0 },
107 { 5, 0, 2 },
108 { 5, 3, 1 },
109 { 5, 1, 3 },
110 { 5, 3, 2 },
111 { 5, 2, 3 },
112
113 /* 6 bit codewords */
114 { 6, 3, 3 },
115 { 6, 4, 1 },
116 { 6, 1, 4 },
117 { 6, 4, 2 },
118 { 6, 2, 4 },
119 { 6, 3, 0 },
120 { 6, 0, 3 },
121 { 6, 4, 3 },
122 { 6, 3, 4 },
123 { 6, 5, 2 },
124
125 /* 7 bit codewords */
126 { 7, 5, 1 },
127 { 7, 2, 5 },
128 { 7, 1, 5 },
129 { 7, 5, 3 },
130 { 7, 3, 5 },
131 { 7, 4, 4 },
132 { 7, 5, 4 },
133 { 7, 0, 4 },
134 { 7, 4, 5 },
135 { 7, 4, 0 },
136 { 7, 2, 6 },
137 { 7, 6, 2 },
138
139 /* 7/8 bit codewords */
140 { 7, 6, 1 }, { 7, 6, 1 },
141 { 7, 1, 6 }, { 7, 1, 6 },
142 { 8, 3, 6 },
143 { 8, 6, 3 },
144 { 8, 5, 5 },
145 { 8, 5, 0 },
146
147 /* 8 bit codewords */
148 { 8, 6, 4 },
149 { 8, 0, 5 },
150 { 8, 4, 6 },
151 { 8, 7, 1 },
152 { 8, 7, 2 },
153 { 8, 2, 7 },
154 { 8, 6, 5 },
155 { 8, 7, 3 },
156
157 /* 8/9/10 bit codewords */
158 { 8, 1, 7 }, { 8, 1, 7 }, { 8, 1, 7 }, { 8, 1, 7 },
159 { 8, 5, 6 }, { 8, 5, 6 }, { 8, 5, 6 }, { 8, 5, 6 },
160 { 8, 3, 7 }, { 8, 3, 7 }, { 8, 3, 7 }, { 8, 3, 7 },
161 { 9, 6, 6 }, { 9, 6, 6 },
162 { 9, 7, 4 }, { 9, 7, 4 },
163 { 9, 6, 0 }, { 9, 6, 0 },
164 { 9, 4, 7 }, { 9, 4, 7 },
165 { 9, 0, 6 }, { 9, 0, 6 },
166 { 9, 7, 5 }, { 9, 7, 5 },
167 { 9, 7, 6 }, { 9, 7, 6 },
168 { 9, 6, 7 }, { 9, 6, 7 },
169 { 10, 5, 7 },
170 { 10, 7, 0 },
171 { 10, 0, 7 },
172 { 10, 7, 7 }
173};
174