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

多媒体编程

开发平台:

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