hcb_10.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_10.h,v 1.2 2005/11/01 21:41:43 gabest Exp $
  26. **/
  27. /* 2-step huffman table HCB_10 */
  28. /* 1st step: 6 bits
  29.  *           2^6 = 64 entries
  30.  *
  31.  * Used to find offset into 2nd step table and number of extra bits to get
  32.  */
  33. static hcb hcb10_1[] = {
  34.     /* 4 bit codewords */
  35.     { /* 000000 */ 0, 0 },
  36.     { /*        */ 0, 0 },
  37.     { /*        */ 0, 0 },
  38.     { /*        */ 0, 0 },
  39.     { /* 000100 */ 1, 0 },
  40.     { /*        */ 1, 0 },
  41.     { /*        */ 1, 0 },
  42.     { /*        */ 1, 0 },
  43.     { /* 001000 */ 2, 0 },
  44.     { /*        */ 2, 0 },
  45.     { /*        */ 2, 0 },
  46.     { /*        */ 2, 0 },
  47.     /* 5 bit codewords */
  48.     { /* 001100 */ 3, 0 },
  49.     { /*        */ 3, 0 },
  50.     { /* 001110 */ 4, 0 },
  51.     { /*        */ 4, 0 },
  52.     { /* 010000 */ 5, 0 },
  53.     { /*        */ 5, 0 },
  54.     { /* 010010 */ 6, 0 },
  55.     { /*        */ 6, 0 },
  56.     { /* 010100 */ 7, 0 },
  57.     { /*        */ 7, 0 },
  58.     { /* 010110 */ 8, 0 },
  59.     { /*        */ 8, 0 },
  60.     { /* 011000 */ 9, 0 },
  61.     { /*        */ 9, 0 },
  62.     { /* 011010 */ 10, 0 },
  63.     { /*        */ 10, 0 },
  64.     /* 6 bit codewords */
  65.     { /* 011100 */ 11, 0 },
  66.     { /* 011101 */ 12, 0 },
  67.     { /* 011110 */ 13, 0 },
  68.     { /* 011111 */ 14, 0 },
  69.     { /* 100000 */ 15, 0 },
  70.     { /* 100001 */ 16, 0 },
  71.     { /* 100010 */ 17, 0 },
  72.     { /* 100011 */ 18, 0 },
  73.     { /* 100100 */ 19, 0 },
  74.     { /* 100101 */ 20, 0 },
  75.     { /* 100110 */ 21, 0 },
  76.     { /* 100111 */ 22, 0 },
  77.     { /* 101000 */ 23, 0 },
  78.     { /* 101001 */ 24, 0 },
  79.     /* 7 bit codewords */
  80.     { /* 101010 */ 25, 1 },
  81.     { /* 101011 */ 27, 1 },
  82.     { /* 101100 */ 29, 1 },
  83.     { /* 101101 */ 31, 1 },
  84.     { /* 101110 */ 33, 1 },
  85.     { /* 101111 */ 35, 1 },
  86.     { /* 110000 */ 37, 1 },
  87.     { /* 110001 */ 39, 1 },
  88.     /* 7/8 bit codewords */
  89.     { /* 110010 */ 41, 2 },
  90.     /* 8 bit codewords */
  91.     { /* 110011 */ 45, 2 },
  92.     { /* 110100 */ 49, 2 },
  93.     { /* 110101 */ 53, 2 },
  94.     { /* 110110 */ 57, 2 },
  95.     { /* 110111 */ 61, 2 },
  96.     /* 8/9 bit codewords */
  97.     { /* 111000 */ 65, 3 },
  98.     /* 9 bit codewords */
  99.     { /* 111001 */ 73, 3 },
  100.     { /* 111010 */ 81, 3 },
  101.     { /* 111011 */ 89, 3 },
  102.     /* 9/10 bit codewords */
  103.     { /* 111100 */ 97, 4 },
  104.     /* 10 bit codewords */
  105.     { /* 111101 */ 113, 4 },
  106.     { /* 111110 */ 129, 4 },
  107.     /* 10/11/12 bit codewords */
  108.     { /* 111111 */ 145, 6 }
  109. };
  110. /* 2nd step table
  111.  *
  112.  * Gives size of codeword and actual data (x,y,v,w)
  113.  */
  114. static hcb_2_pair hcb10_2[] = {
  115.     /* 4 bit codewords */
  116.     { 4,  1,  1 },
  117.     { 4,  1,  2 },
  118.     { 4,  2,  1 },
  119.     /* 5 bit codewords */
  120.     { 5,  2,  2 },
  121.     { 5,  1,  0 },
  122.     { 5,  0,  1 },
  123.     { 5,  1,  3 },
  124.     { 5,  3,  2 },
  125.     { 5,  3,  1 },
  126.     { 5,  2,  3 },
  127.     { 5,  3,  3 },
  128.     /* 6 bit codewords */
  129.     { 6,  2,  0 },
  130.     { 6,  0,  2 },
  131.     { 6,  2,  4 },
  132.     { 6,  4,  2 },
  133.     { 6,  1,  4 },
  134.     { 6,  4,  1 },
  135.     { 6,  0,  0 },
  136.     { 6,  4,  3 },
  137.     { 6,  3,  4 },
  138.     { 6,  3,  0 },
  139.     { 6,  0,  3 },
  140.     { 6,  4,  4 },
  141.     { 6,  2,  5 },
  142.     { 6,  5,  2 },
  143.     /* 7 bit codewords */
  144.     { 7,  1,  5 },
  145.     { 7,  5,  1 },
  146.     { 7,  5,  3 },
  147.     { 7,  3,  5 },
  148.     { 7,  5,  4 },
  149.     { 7,  4,  5 },
  150.     { 7,  6,  2 },
  151.     { 7,  2,  6 },
  152.     { 7,  6,  3 },
  153.     { 7,  4,  0 },
  154.     { 7,  6,  1 },
  155.     { 7,  0,  4 },
  156.     { 7,  1,  6 },
  157.     { 7,  3,  6 },
  158.     { 7,  5,  5 },
  159.     { 7,  6,  4 },
  160.     /* 7/8 bit codewords */
  161.     { 7,  4,  6 }, { 7,  4,  6 },
  162.     { 8,  6,  5 },
  163.     { 8,  7,  2 },
  164.     /* 8 bit codewords */
  165.     { 8,  3,  7 },
  166.     { 8,  2,  7 },
  167.     { 8,  5,  6 },
  168.     { 8,  8,  2 },
  169.     { 8,  7,  3 },
  170.     { 8,  5,  0 },
  171.     { 8,  7,  1 },
  172.     { 8,  0,  5 },
  173.     { 8,  8,  1 },
  174.     { 8,  1,  7 },
  175.     { 8,  8,  3 },
  176.     { 8,  7,  4 },
  177.     { 8,  4,  7 },
  178.     { 8,  2,  8 },
  179.     { 8,  6,  6 },
  180.     { 8,  7,  5 },
  181.     { 8,  1,  8 },
  182.     { 8,  3,  8 },
  183.     { 8,  8,  4 },
  184.     { 8,  4,  8 },
  185.     /* 8/9 bit codewords */
  186.     { 8,  5,  7 }, { 8,  5,  7 },
  187.     { 8,  8,  5 }, { 8,  8,  5 },
  188.     { 8,  5,  8 }, { 8,  5,  8 },
  189.     { 9,  7,  6 },
  190.     { 9,  6,  7 },
  191.     /* 9 bit codewords */
  192.     { 9,  9,  2 },
  193.     { 9,  6,  0 },
  194.     { 9,  6,  8 },
  195.     { 9,  9,  3 },
  196.     { 9,  3,  9 },
  197.     { 9,  9,  1 },
  198.     { 9,  2,  9 },
  199.     { 9,  0,  6 },
  200.     { 9,  8,  6 },
  201.     { 9,  9,  4 },
  202.     { 9,  4,  9 },
  203.     { 9, 10,  2 },
  204.     { 9,  1,  9 },
  205.     { 9,  7,  7 },
  206.     { 9,  8,  7 },
  207.     { 9,  9,  5 },
  208.     { 9,  7,  8 },
  209.     { 9, 10,  3 },
  210.     { 9,  5,  9 },
  211.     { 9, 10,  4 },
  212.     { 9,  2, 10 },
  213.     { 9, 10,  1 },
  214.     { 9,  3, 10 },
  215.     { 9,  9,  6 },
  216.     /* 9/10 bit codewords */
  217.     { 9,  6,  9 }, { 9,  6,  9 },
  218.     { 9,  8,  0 }, { 9,  8,  0 },
  219.     { 9,  4, 10 }, { 9,  4, 10 },
  220.     { 9,  7,  0 }, { 9,  7,  0 },
  221.     { 9, 11,  2 }, { 9, 11,  2 },
  222.     { 10,  7,  9 },
  223.     { 10, 11,  3 },
  224.     { 10, 10,  6 },
  225.     { 10,  1, 10 },
  226.     { 10, 11,  1 },
  227.     { 10,  9,  7 },
  228.     /* 10 bit codewords */
  229.     { 10,  0,  7 },
  230.     { 10,  8,  8 },
  231.     { 10, 10,  5 },
  232.     { 10,  3, 11 },
  233.     { 10,  5, 10 },
  234.     { 10,  8,  9 },
  235.     { 10, 11,  5 },
  236.     { 10,  0,  8 },
  237.     { 10, 11,  4 },
  238.     { 10,  2, 11 },
  239.     { 10,  7, 10 },
  240.     { 10,  6, 10 },
  241.     { 10, 10,  7 },
  242.     { 10,  4, 11 },
  243.     { 10,  1, 11 },
  244.     { 10, 12,  2 },
  245.     { 10,  9,  8 },
  246.     { 10, 12,  3 },
  247.     { 10, 11,  6 },
  248.     { 10,  5, 11 },
  249.     { 10, 12,  4 },
  250.     { 10, 11,  7 },
  251.     { 10, 12,  5 },
  252.     { 10,  3, 12 },
  253.     { 10,  6, 11 },
  254.     { 10,  9,  0 },
  255.     { 10, 10,  8 },
  256.     { 10, 10,  0 },
  257.     { 10, 12,  1 },
  258.     { 10,  0,  9 },
  259.     { 10,  4, 12 },
  260.     { 10,  9,  9 },
  261.     /* 10/11/12 bit codewords */
  262.     { 10, 12,  6 }, { 10, 12,  6 }, { 10, 12,  6 }, { 10, 12,  6 },
  263.     { 10,  2, 12 }, { 10,  2, 12 }, { 10,  2, 12 }, { 10,  2, 12 },
  264.     { 10,  8, 10 }, { 10,  8, 10 }, { 10,  8, 10 }, { 10,  8, 10 },
  265.     { 11,  9, 10 }, { 11,  9, 10 },
  266.     { 11,  1, 12 }, { 11,  1, 12 },
  267.     { 11, 11,  8 }, { 11, 11,  8 },
  268.     { 11, 12,  7 }, { 11, 12,  7 },
  269.     { 11,  7, 11 }, { 11,  7, 11 },
  270.     { 11,  5, 12 }, { 11,  5, 12 },
  271.     { 11,  6, 12 }, { 11,  6, 12 },
  272.     { 11, 10,  9 }, { 11, 10,  9 },
  273.     { 11,  8, 11 }, { 11,  8, 11 },
  274.     { 11, 12,  8 }, { 11, 12,  8 },
  275.     { 11,  0, 10 }, { 11,  0, 10 },
  276.     { 11,  7, 12 }, { 11,  7, 12 },
  277.     { 11, 11,  0 }, { 11, 11,  0 },
  278.     { 11, 10, 10 }, { 11, 10, 10 },
  279.     { 11, 11,  9 }, { 11, 11,  9 },
  280.     { 11, 11, 10 }, { 11, 11, 10 },
  281.     { 11,  0, 11 }, { 11,  0, 11 },
  282.     { 11, 11, 11 }, { 11, 11, 11 },
  283.     { 11,  9, 11 }, { 11,  9, 11 },
  284.     { 11, 10, 11 }, { 11, 10, 11 },
  285.     { 11, 12,  0 }, { 11, 12,  0 },
  286.     { 11,  8, 12 }, { 11,  8, 12 },
  287.     { 12, 12,  9 },
  288.     { 12, 10, 12 },
  289.     { 12,  9, 12 },
  290.     { 12, 11, 12 },
  291.     { 12, 12, 11 },
  292.     { 12,  0, 12 },
  293.     { 12, 12, 10 },
  294.     { 12, 12, 12 }
  295. };