decdata.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3. "This software module was originally developed by
  4. AT&T, Dolby Laboratories, Fraunhofer Gesellschaft IIS and edited by
  5. Yoshiaki Oikawa (Sony Corporation)
  6. ,Mitsuyuki Hatanaka (Sony Corporation),
  7. in the course of development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7,
  8. 14496-1,2 and 3. This software module is an implementation of a part of one or more
  9. MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4
  10. Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio
  11. standards free license to this software module or modifications thereof for use in
  12. hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  13. Audio  standards. Those intending to use this software module in hardware or
  14. software products are advised that this use may infringe existing patents.
  15. The original developer of this software module and his/her company, the subsequent
  16. editors and their companies, and ISO/IEC have no liability for use of this software
  17. module or modifications thereof in an implementation. Copyright is not released for
  18. non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  19. retains full right to use the code for his/her  own purpose, assign or donate the
  20. code to a third party and to inhibit third party from using the code for non
  21. MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  22. be included in all copies or derivative works."
  23. Copyright(c)1996.
  24.  *                                                                           *
  25.  ****************************************************************************/
  26. #include "all.h"
  27. Hcb book[NSPECBOOKS+2];
  28. int sfbwidth128[(1<<LEN_MAX_SFBS)];
  29. const int SampleRates[] = {
  30.     96000,88200,64000,48000,44100,32000,24000,22050,16000,12000,11025,8000,7350,0,0,0
  31. };
  32. /* Returns the sample rate index */
  33. int get_sr_index(unsigned int sampleRate)
  34. {
  35.     if (92017 <= sampleRate) return 0;
  36.     if (75132 <= sampleRate) return 1;
  37.     if (55426 <= sampleRate) return 2;
  38.     if (46009 <= sampleRate) return 3;
  39.     if (37566 <= sampleRate) return 4;
  40.     if (27713 <= sampleRate) return 5;
  41.     if (23004 <= sampleRate) return 6;
  42.     if (18783 <= sampleRate) return 7;
  43.     if (13856 <= sampleRate) return 8;
  44.     if (11502 <= sampleRate) return 9;
  45.     if (9391 <= sampleRate) return 10;
  46.     return 11;
  47. }
  48. static int sfb_96_1024[] =
  49. {
  50.   4, 8, 12, 16, 20, 24, 28,
  51.   32, 36, 40, 44, 48, 52, 56,
  52.   64, 72, 80, 88, 96, 108, 120,
  53.   132, 144, 156, 172, 188, 212, 240,
  54.   276, 320, 384, 448, 512, 576, 640,
  55.   704, 768, 832, 896, 960, 1024
  56. };   /* 41 scfbands */
  57. static int sfb_96_128[] =
  58. {
  59.   4, 8, 12, 16, 20, 24, 32,
  60.   40, 48, 64, 92, 128
  61. };   /* 12 scfbands */
  62. static int sfb_64_1024[] =
  63. {
  64.   4, 8, 12, 16, 20, 24, 28,
  65.   32, 36, 40, 44, 48, 52, 56,
  66.   64, 72, 80, 88, 100, 112, 124,
  67.   140, 156, 172, 192, 216, 240, 268,
  68.   304, 344, 384, 424, 464, 504, 544,
  69.   584, 624, 664, 704, 744, 784, 824,
  70.   864, 904, 944, 984, 1024
  71. };   /* 41 scfbands 47 */
  72. static int sfb_64_128[] =
  73. {
  74.   4, 8, 12, 16, 20, 24, 32,
  75.   40, 48, 64, 92, 128
  76. };   /* 12 scfbands */
  77. static int sfb_48_1024[] =
  78. {
  79.   4, 8, 12, 16, 20, 24, 28,
  80.   32,   36, 40, 48, 56, 64, 72,
  81.   80,   88, 96, 108,    120,    132,    144,
  82.   160,  176,    196,    216,    240,    264,    292,
  83.   320,  352,    384,    416,    448,    480,    512,
  84.   544,  576,    608,    640,    672,    704,    736,
  85.   768,  800,    832,    864,    896,    928,    1024
  86. };
  87. static int sfb_48_128[] =
  88. {
  89.           4,    8,  12, 16, 20, 28, 36,
  90.           44,   56, 68, 80, 96, 112,    128
  91. };
  92. static int sfb_32_1024[] =
  93. {
  94.         4,  8,  12, 16, 20, 24, 28,
  95.         32, 36, 40, 48, 56, 64, 72,
  96.         80, 88, 96, 108,    120,    132,    144,
  97.         160,    176,    196,    216,    240,    264,    292,
  98.         320,    352,    384,    416,    448,    480,    512,
  99.         544,    576,    608,    640,    672,    704,    736,
  100.         768,    800,    832,    864,    896,    928,    960,
  101.         992,    1024
  102. };
  103. static int sfb_24_1024[] =
  104. {
  105.   4, 8, 12, 16, 20, 24, 28,
  106.   32, 36, 40, 44, 52, 60, 68,
  107.   76, 84, 92, 100, 108, 116, 124,
  108.   136, 148, 160, 172, 188, 204, 220,
  109.   240, 260, 284, 308, 336, 364, 396,
  110.   432, 468, 508, 552, 600, 652, 704,
  111.   768, 832, 896, 960, 1024
  112. };   /* 47 scfbands */
  113. static int sfb_24_128[] =
  114. {
  115.   4, 8, 12, 16, 20, 24, 28,
  116.   36, 44, 52, 64, 76, 92, 108,
  117.   128
  118. };   /* 15 scfbands */
  119. static int sfb_16_1024[] =
  120. {
  121.   8, 16, 24, 32, 40, 48, 56,
  122.   64, 72, 80, 88, 100, 112, 124,
  123.   136, 148, 160, 172, 184, 196, 212,
  124.   228, 244, 260, 280, 300, 320, 344,
  125.   368, 396, 424, 456, 492, 532, 572,
  126.   616, 664, 716, 772, 832, 896, 960,
  127.   1024
  128. };   /* 43 scfbands */
  129. static int sfb_16_128[] =
  130. {
  131.   4, 8, 12, 16, 20, 24, 28,
  132.   32, 40, 48, 60, 72, 88, 108,
  133.   128
  134. };   /* 15 scfbands */
  135. static int sfb_8_1024[] =
  136. {
  137.   12, 24, 36, 48, 60, 72, 84,
  138.   96, 108, 120, 132, 144, 156, 172,
  139.   188, 204, 220, 236, 252, 268, 288,
  140.   308, 328, 348, 372, 396, 420, 448,
  141.   476, 508, 544, 580, 620, 664, 712,
  142.   764, 820, 880, 944, 1024
  143. };   /* 40 scfbands */
  144. static int sfb_8_128[] =
  145. {
  146.   4, 8, 12, 16, 20, 24, 28,
  147.   36, 44, 52, 60, 72, 88, 108,
  148.   128
  149. };   /* 15 scfbands */
  150. SR_Info samp_rate_info[(1<<LEN_SAMP_IDX)] =
  151. {
  152.     /* sampling_frequency, #long sfb, long sfb, #short sfb, short sfb */
  153.     /* samp_rate, nsfb1024, SFbands1024, nsfb128, SFbands128 */
  154.     {96000, 41, sfb_96_1024, 12, sfb_96_128},       /* 96000 */
  155.     {88200, 41, sfb_96_1024, 12, sfb_96_128},       /* 88200 */
  156.     {64000, 47, sfb_64_1024, 12, sfb_64_128},       /* 64000 */
  157.     {48000, 49, sfb_48_1024, 14, sfb_48_128},       /* 48000 */
  158.     {44100, 49, sfb_48_1024, 14, sfb_48_128},       /* 44100 */
  159.     {32000, 51, sfb_32_1024, 14, sfb_48_128},       /* 32000 */
  160.     {24000, 47, sfb_24_1024, 15, sfb_24_128},       /* 24000 */
  161.     {22050, 47, sfb_24_1024, 15, sfb_24_128},       /* 22050 */
  162.     {16000, 43, sfb_16_1024, 15, sfb_16_128},       /* 16000 */
  163.     {12000, 43, sfb_16_1024, 15, sfb_16_128},       /* 12000 */
  164.     {11025, 43, sfb_16_1024, 15, sfb_16_128},       /* 11025 */
  165.     {8000,  40, sfb_8_1024,  15, sfb_8_128 },       /* 8000  */
  166.     {0,0,0,0,0},
  167.     {0,0,0,0,0},
  168.     {0,0,0,0,0},
  169.     {0,0,0,0,0}
  170. };
  171. int tns_max_bands_tbl[(1<<LEN_SAMP_IDX)][4] =
  172. {
  173.     /* entry for each sampling rate
  174.      * 1    Main/LC long window
  175.      * 2    Main/LC short window
  176.      * 3    SSR long window
  177.      * 4    SSR short window
  178.      */
  179.     {31,  9, 28,  7},       /* 96000 */
  180.     {31,  9, 28,  7},       /* 88200 */
  181.     {34, 10, 27,  7},       /* 64000 */
  182.     {40, 14, 26,  6},       /* 48000 */
  183.     {42, 14, 26,  6},       /* 44100 */
  184.     {51, 14, 26,  6},       /* 32000 */
  185.     {46, 14, 29,  7},       /* 24000 */
  186.     {46, 14, 29,  7},       /* 22050 */
  187.     {42, 14, 23,  8},       /* 16000 */
  188.     {42, 14, 23,  8},       /* 12000 */
  189.     {42, 14, 23,  8},       /* 11025 */
  190.     {39, 14, 19,  7},       /* 8000  */
  191.     {0,0,0,0},
  192.     {0,0,0,0},
  193.     {0,0,0,0},
  194.     {0,0,0,0}
  195. };
  196. int pred_max_bands_tbl[(1<<LEN_SAMP_IDX)] = {
  197.   33,     /* 96000 */
  198.   33,     /* 88200 */
  199.   38,     /* 64000 */
  200.   40,     /* 48000 */
  201.   40,     /* 44100 */
  202.   40,     /* 32000 */
  203.   41,     /* 24000 */
  204.   41,     /* 22050 */
  205.   37,     /* 16000 */
  206.   37,     /* 12000 */
  207.   37,     /* 11025 */
  208.   34,     /* 8000  */
  209.   0,
  210.   0,
  211.   0,
  212.   0
  213. };