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

多媒体编程

开发平台:

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_2.h,v 1.2 2005/11/01 21:41:43 gabest Exp $
  26. **/
  27. /* 2-step huffman table HCB_2 */
  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 hcb2_1[] = {
  34.     { /* 00000 */ 0, 0 },
  35.     { /*       */ 0, 0 },
  36.     { /*       */ 0, 0 },
  37.     { /*       */ 0, 0 },
  38.     { /* 00100 */ 1, 0 },
  39.     { /*       */ 1, 0 },
  40.     { /* 00110 */ 2, 0 },
  41.     { /* 00111 */ 3, 0 },
  42.     { /* 01000 */ 4, 0 },
  43.     { /* 01001 */ 5, 0 },
  44.     { /* 01010 */ 6, 0 },
  45.     { /* 01011 */ 7, 0 },
  46.     { /* 01100 */ 8, 0 },
  47.     /* 6 bit codewords */
  48.     { /* 01101 */ 9,  1 },
  49.     { /* 01110 */ 11, 1 },
  50.     { /* 01111 */ 13, 1 },
  51.     { /* 10000 */ 15, 1 },
  52.     { /* 10001 */ 17, 1 },
  53.     { /* 10010 */ 19, 1 },
  54.     { /* 10011 */ 21, 1 },
  55.     { /* 10100 */ 23, 1 },
  56.     { /* 10101 */ 25, 1 },
  57.     { /* 10110 */ 27, 1 },
  58.     { /* 10111 */ 29, 1 },
  59.     { /* 11000 */ 31, 1 },
  60.     /* 7 bit codewords */
  61.     { /* 11001 */ 33, 2 },
  62.     { /* 11010 */ 37, 2 },
  63.     { /* 11011 */ 41, 2 },
  64.     /* 7/8 bit codewords */
  65.     { /* 11100 */ 45, 3 },
  66.     /* 8 bit codewords */
  67.     { /* 11101 */ 53, 3 },
  68.     { /* 11110 */ 61, 3 },
  69.     /* 8/9 bit codewords */
  70.     { /* 11111 */ 69, 4 }
  71. };
  72. /* 2nd step table
  73.  *
  74.  * Gives size of codeword and actual data (x,y,v,w)
  75.  */
  76. static hcb_2_quad hcb2_2[] = {
  77.     /* 3 bit codeword */
  78.     { 3,  0,  0,  0,  0 },
  79.     /* 4 bit codeword */
  80.     { 4,  1,  0,  0,  0 },
  81.     /* 5 bit codewords */
  82.     { 5, -1,  0,  0,  0 },
  83.     { 5,  0,  0,  0,  1 },
  84.     { 5,  0,  0, -1,  0 },
  85.     { 5,  0,  0,  0, -1 },
  86.     { 5,  0, -1,  0,  0 },
  87.     { 5,  0,  0,  1,  0 },
  88.     { 5,  0,  1,  0,  0 },
  89.     /* 6 bit codewords */
  90.     { 6,  0, -1,  1,  0 },
  91.     { 6, -1,  1,  0,  0 },
  92.     { 6,  0,  1, -1,  0 },
  93.     { 6,  0,  0,  1, -1 },
  94.     { 6,  0,  1,  0, -1 },
  95.     { 6,  0,  0, -1,  1 },
  96.     { 6, -1,  0,  0, -1 },
  97.     { 6,  1, -1,  0,  0 },
  98.     { 6,  1,  0, -1,  0 },
  99.     { 6, -1, -1,  0,  0 },
  100.     { 6,  0,  0, -1, -1 },
  101.     { 6,  1,  0,  1,  0 },
  102.     { 6,  1,  0,  0,  1 },
  103.     { 6,  0, -1,  0,  1 },
  104.     { 6, -1,  0,  1,  0 },
  105.     { 6,  0,  1,  0,  1 },
  106.     { 6,  0, -1, -1,  0 },
  107.     { 6, -1,  0,  0,  1 },
  108.     { 6,  0, -1,  0, -1 },
  109.     { 6, -1,  0, -1,  0 },
  110.     { 6,  1,  1,  0,  0 },
  111.     { 6,  0,  1,  1,  0 },
  112.     { 6,  0,  0,  1,  1 },
  113.     { 6,  1,  0,  0, -1 },
  114.     /* 7 bit codewords */
  115.     { 7,  0,  1, -1,  1 },
  116.     { 7,  1,  0, -1,  1 },
  117.     { 7, -1,  1, -1,  0 },
  118.     { 7,  0, -1,  1, -1 },
  119.     { 7,  1, -1,  1,  0 },
  120.     { 7,  1,  1,  0, -1 },
  121.     { 7,  1,  0,  1,  1 },
  122.     { 7, -1,  1,  1,  0 },
  123.     { 7,  0, -1, -1,  1 },
  124.     { 7,  1,  1,  1,  0 },
  125.     { 7, -1,  0,  1, -1 },
  126.     { 7, -1, -1, -1,  0 },
  127.     /* 7/8 bit codewords */
  128.     { 7, -1,  0, -1,  1 }, { 7, -1,  0, -1,  1 },
  129.     { 7,  1, -1, -1,  0 }, { 7,  1, -1, -1,  0 },
  130.     { 7,  1,  1, -1,  0 }, { 7,  1,  1, -1,  0 },
  131.     { 8,  1, -1,  0,  1 },
  132.     { 8, -1,  1,  0, -1 },
  133.     /* 8 bit codewords */
  134.     { 8, -1, -1,  1,  0 },
  135.     { 8, -1,  0,  1,  1 },
  136.     { 8, -1, -1,  0,  1 },
  137.     { 8, -1, -1,  0, -1 },
  138.     { 8,  0, -1, -1, -1 },
  139.     { 8,  1,  0,  1, -1 },
  140.     { 8,  1,  0, -1, -1 },
  141.     { 8,  0,  1, -1, -1 },
  142.     { 8,  0,  1,  1,  1 },
  143.     { 8, -1,  1,  0,  1 },
  144.     { 8, -1,  0, -1, -1 },
  145.     { 8,  0,  1,  1, -1 },
  146.     { 8,  1, -1,  0, -1 },
  147.     { 8,  0, -1,  1,  1 },
  148.     { 8,  1,  1,  0,  1 },
  149.     { 8,  1, -1,  1, -1 },
  150.     /* 8/9 bit codewords */
  151.     { 8, -1,  1, -1,  1 }, { 8, -1,  1, -1,  1 },
  152.     { 9,  1, -1, -1,  1 },
  153.     { 9, -1, -1, -1, -1 },
  154.     { 9, -1,  1,  1, -1 },
  155.     { 9, -1,  1,  1,  1 },
  156.     { 9,  1,  1,  1,  1 },
  157.     { 9, -1, -1,  1, -1 },
  158.     { 9,  1, -1,  1,  1 },
  159.     { 9, -1,  1, -1, -1 },
  160.     { 9, -1, -1,  1,  1 },
  161.     { 9,  1,  1, -1, -1 },
  162.     { 9,  1, -1, -1, -1 },
  163.     { 9, -1, -1, -1,  1 },
  164.     { 9,  1,  1, -1,  1 },
  165.     { 9,  1,  1,  1, -1 }
  166. };