2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
3 ** Copyright (C) 2003 M. Bakker, Ahead Software AG, http://www.nero.com
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.
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.
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.
19 ** Any non-GPL usage of this software or parts of this software is strictly
22 ** Commercial non-GPL licensing of this software is possible.
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
25 ** $Id: hcb_2.h,v 1.3 2003/09/09 18:12:01 menno Exp $
28 /* 2-step huffman table HCB_2 */
34 * Used to find offset into 2nd step table and number of extra bits to get
36 static hcb hcb2_1
[] = {
53 { /* 01110 */ 11, 1 },
54 { /* 01111 */ 13, 1 },
55 { /* 10000 */ 15, 1 },
56 { /* 10001 */ 17, 1 },
57 { /* 10010 */ 19, 1 },
58 { /* 10011 */ 21, 1 },
59 { /* 10100 */ 23, 1 },
60 { /* 10101 */ 25, 1 },
61 { /* 10110 */ 27, 1 },
62 { /* 10111 */ 29, 1 },
63 { /* 11000 */ 31, 1 },
66 { /* 11001 */ 33, 2 },
67 { /* 11010 */ 37, 2 },
68 { /* 11011 */ 41, 2 },
70 /* 7/8 bit codewords */
71 { /* 11100 */ 45, 3 },
74 { /* 11101 */ 53, 3 },
75 { /* 11110 */ 61, 3 },
77 /* 8/9 bit codewords */
83 * Gives size of codeword and actual data (x,y,v,w)
85 static hcb_2_quad hcb2_2
[] = {
101 /* 6 bit codewords */
127 /* 7 bit codewords */
139 { 7, -1, -1, -1, 0 },
141 /* 7/8 bit codewords */
142 { 7, -1, 0, -1, 1 }, { 7, -1, 0, -1, 1 },
143 { 7, 1, -1, -1, 0 }, { 7, 1, -1, -1, 0 },
144 { 7, 1, 1, -1, 0 }, { 7, 1, 1, -1, 0 },
148 /* 8 bit codewords */
152 { 8, -1, -1, 0, -1 },
153 { 8, 0, -1, -1, -1 },
159 { 8, -1, 0, -1, -1 },
166 /* 8/9 bit codewords */
167 { 8, -1, 1, -1, 1 }, { 8, -1, 1, -1, 1 },
169 { 9, -1, -1, -1, -1 },
173 { 9, -1, -1, 1, -1 },
175 { 9, -1, 1, -1, -1 },
178 { 9, 1, -1, -1, -1 },
179 { 9, -1, -1, -1, 1 },