hcb_1.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:6k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003 M. Bakker, Ahead Software 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. ** Commercial non-GPL licensing of this software is possible.
  23. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  24. **
  25. ** $Id: hcb_1.h,v 1.2 2005/11/01 21:41:43 gabest Exp $
  26. **/
  27. /* 2-step huffman table HCB_1 */
  28. /* 1st step: 5 bits
  29.  *           2^5 = 32 entries
  30.  *
  31.  * Used to find offset into 2nd step table and number of extra bits to get
  32.  */
  33. static hcb hcb1_1[] = {
  34.     { /* 00000 */ 0, 0 },
  35.     { /*       */ 0, 0 },
  36.     { /*       */ 0, 0 },
  37.     { /*       */ 0, 0 },
  38.     { /*       */ 0, 0 },
  39.     { /*       */ 0, 0 },
  40.     { /*       */ 0, 0 },
  41.     { /*       */ 0, 0 },
  42.     { /*       */ 0, 0 },
  43.     { /*       */ 0, 0 },
  44.     { /*       */ 0, 0 },
  45.     { /*       */ 0, 0 },
  46.     { /*       */ 0, 0 },
  47.     { /*       */ 0, 0 },
  48.     { /*       */ 0, 0 },
  49.     { /*       */ 0, 0 },
  50.     { /* 10000 */ 1, 0 },
  51.     { /* 10001 */ 2, 0 },
  52.     { /* 10010 */ 3, 0 },
  53.     { /* 10011 */ 4, 0 },
  54.     { /* 10100 */ 5, 0 },
  55.     { /* 10101 */ 6, 0 },
  56.     { /* 10110 */ 7, 0 },
  57.     { /* 10111 */ 8, 0 },
  58.     /* 7 bit codewords */
  59.     { /* 11000 */ 9,  2 },
  60.     { /* 11001 */ 13, 2 },
  61.     { /* 11010 */ 17, 2 },
  62.     { /* 11011 */ 21, 2 },
  63.     { /* 11100 */ 25, 2 },
  64.     { /* 11101 */ 29, 2 },
  65.     /* 9 bit codewords */
  66.     { /* 11110 */ 33, 4 },
  67.     /* 9/10/11 bit codewords */
  68.     { /* 11111 */ 49, 6 }
  69. };
  70. /* 2nd step table
  71.  *
  72.  * Gives size of codeword and actual data (x,y,v,w)
  73.  */
  74. static hcb_2_quad hcb1_2[] = {
  75.     /* 1 bit codeword */
  76.     { 1,  0,  0,  0,  0 },
  77.     /* 5 bit codewords */
  78.     { 5,  1,  0,  0,  0 },
  79.     { 5, -1,  0,  0,  0 },
  80.     { 5,  0,  0,  0, -1 },
  81.     { 5,  0,  1,  0,  0 },
  82.     { 5,  0,  0,  0,  1 },
  83.     { 5,  0,  0, -1,  0 },
  84.     { 5,  0,  0,  1,  0 },
  85.     { 5,  0, -1,  0,  0 },
  86.     /* 7 bit codewords */
  87.     /* first 5 bits: 11000 */
  88.     { 7,  1, -1,  0,  0 },
  89.     { 7, -1,  1,  0,  0 },
  90.     { 7,  0,  0, -1,  1 },
  91.     { 7,  0,  1, -1,  0 },
  92.     /* first 5 bits: 11001 */
  93.     { 7,  0, -1,  1,  0 },
  94.     { 7,  0,  0,  1, -1 },
  95.     { 7,  1,  1,  0,  0 },
  96.     { 7,  0,  0, -1, -1 },
  97.     /* first 5 bits: 11010 */
  98.     { 7, -1, -1,  0,  0 },
  99.     { 7,  0, -1, -1,  0 },
  100.     { 7,  1,  0, -1,  0 },
  101.     { 7,  0,  1,  0, -1 },
  102.     /* first 5 bits: 11011 */
  103.     { 7, -1,  0,  1,  0 },
  104.     { 7,  0,  0,  1,  1 },
  105.     { 7,  1,  0,  1,  0 },
  106.     { 7,  0, -1,  0,  1 },
  107.     /* first 5 bits: 11100 */
  108.     { 7,  0,  1,  1,  0 },
  109.     { 7,  0,  1,  0,  1 },
  110.     { 7, -1,  0, -1,  0 },
  111.     { 7,  1,  0,  0,  1 },
  112.     /* first 5 bits: 11101 */
  113.     { 7, -1,  0,  0, -1 },
  114.     { 7,  1,  0,  0, -1 },
  115.     { 7, -1,  0,  0,  1 },
  116.     { 7,  0, -1,  0, -1 },
  117.     /* 9 bit codeword */
  118.     /* first 5 bits: 11110 */
  119.     { 9,  1,  1, -1,  0 },
  120.     { 9, -1,  1, -1,  0 },
  121.     { 9,  1, -1,  1,  0 },
  122.     { 9,  0,  1,  1, -1 },
  123.     { 9,  0,  1, -1,  1 },
  124.     { 9,  0, -1,  1,  1 },
  125.     { 9,  0, -1,  1, -1 },
  126.     { 9,  1, -1, -1,  0 },
  127.     { 9,  1,  0, -1,  1 },
  128.     { 9,  0,  1, -1, -1 },
  129.     { 9, -1,  1,  1,  0 },
  130.     { 9, -1,  0,  1, -1 },
  131.     { 9, -1, -1,  1,  0 },
  132.     { 9,  0, -1, -1,  1 },
  133.     { 9,  1, -1,  0,  1 },
  134.     { 9,  1, -1,  0, -1 },
  135.     /* 9/10/11 bit codewords */
  136.     /* first 5 bits: 11111 */
  137.     /* 9 bit: reading 11 bits -> 2 too much so 4 entries for each codeword */
  138.     { 9, -1,  1,  0, -1 }, { 9, -1,  1,  0, -1 }, { 9, -1,  1,  0, -1 }, { 9, -1,  1,  0, -1 },
  139.     { 9, -1, -1, -1,  0 }, { 9, -1, -1, -1,  0 }, { 9, -1, -1, -1,  0 }, { 9, -1, -1, -1,  0 },
  140.     { 9,  0, -1, -1, -1 }, { 9,  0, -1, -1, -1 }, { 9,  0, -1, -1, -1 }, { 9,  0, -1, -1, -1 },
  141.     { 9,  0,  1,  1,  1 }, { 9,  0,  1,  1,  1 }, { 9,  0,  1,  1,  1 }, { 9,  0,  1,  1,  1 },
  142.     { 9,  1,  0,  1, -1 }, { 9,  1,  0,  1, -1 }, { 9,  1,  0,  1, -1 }, { 9,  1,  0,  1, -1 },
  143.     { 9,  1,  1,  0,  1 }, { 9,  1,  1,  0,  1 }, { 9,  1,  1,  0,  1 }, { 9,  1,  1,  0,  1 },
  144.     { 9, -1,  1,  0,  1 }, { 9, -1,  1,  0,  1 }, { 9, -1,  1,  0,  1 }, { 9, -1,  1,  0,  1 },
  145.     { 9,  1,  1,  1,  0 }, { 9,  1,  1,  1,  0 }, { 9,  1,  1,  1,  0 }, { 9,  1,  1,  1,  0 },
  146.     /* 10 bit: reading 11 bits -> 1 too much so 2 entries for each codeword */
  147.     { 10, -1, -1,  0,  1 }, { 10, -1, -1,  0,  1 },
  148.     { 10, -1,  0, -1, -1 }, { 10, -1,  0, -1, -1 },
  149.     { 10,  1,  1,  0, -1 }, { 10,  1,  1,  0, -1 },
  150.     { 10,  1,  0, -1, -1 }, { 10,  1,  0, -1, -1 },
  151.     { 10, -1,  0, -1,  1 }, { 10, -1,  0, -1,  1 },
  152.     { 10, -1, -1,  0, -1 }, { 10, -1, -1,  0, -1 },
  153.     { 10, -1,  0,  1,  1 }, { 10, -1,  0,  1,  1 },
  154.     { 10,  1,  0,  1,  1 }, { 10,  1,  0,  1,  1 },
  155.     /* 11 bit */
  156.     { 11,  1, -1,  1, -1 },
  157.     { 11, -1,  1, -1,  1 },
  158.     { 11, -1,  1,  1, -1 },
  159.     { 11,  1, -1, -1,  1 },
  160.     { 11,  1,  1,  1,  1 },
  161.     { 11, -1, -1,  1,  1 },
  162.     { 11,  1,  1, -1, -1 },
  163.     { 11, -1, -1,  1, -1 },
  164.     { 11, -1, -1, -1, -1 },
  165.     { 11,  1,  1, -1,  1 },
  166.     { 11,  1, -1,  1,  1 },
  167.     { 11, -1,  1,  1,  1 },
  168.     { 11, -1,  1, -1, -1 },
  169.     { 11, -1, -1, -1,  1 },
  170.     { 11,  1, -1, -1, -1 },
  171.     { 11,  1,  1,  1, -1 }
  172. };