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