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

多媒体编程

开发平台:

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