mp3tabs.c
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. /**************************************************************************************
  36.  * Fixed-point MP3 decoder
  37.  * Jon Recker (jrecker@real.com), Ken Cooke (kenc@real.com)
  38.  * June 2003
  39.  *
  40.  * mp3tabs.c - platform-independent tables for MP3 decoder (global, read-only)
  41.  **************************************************************************************/
  42. #include "mp3common.h"
  43. /* indexing = [version][samplerate index]
  44.  * sample rate of frame (Hz)
  45.  */
  46. const int samplerateTab[3][3] = {
  47.   {44100, 48000, 32000}, /* MPEG-1 */
  48.   {22050, 24000, 16000}, /* MPEG-2 */
  49.   {11025, 12000,  8000}, /* MPEG-2.5 */
  50. };
  51. /* indexing = [version][layer][bitrate index]
  52.  * bitrate (kbps) of frame
  53.  *   - bitrate index == 0 is "free" mode (bitrate determined on the fly by
  54.  *       counting bits between successive sync words)
  55.  */
  56. const short bitrateTab[3][3][15] = {
  57. {
  58. /* MPEG-1 */
  59. {  0, 32, 64, 96,128,160,192,224,256,288,320,352,384,416,448}, /* Layer 1 */
  60. {  0, 32, 48, 56, 64, 80, 96,112,128,160,192,224,256,320,384}, /* Layer 2 */
  61. {  0, 32, 40, 48, 56, 64, 80, 96,112,128,160,192,224,256,320}, /* Layer 3 */
  62. },
  63. {
  64. /* MPEG-2 */
  65. {  0, 32, 48, 56, 64, 80, 96,112,128,144,160,176,192,224,256}, /* Layer 1 */
  66. {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}, /* Layer 2 */
  67. {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}, /* Layer 3 */
  68. },
  69. {
  70. /* MPEG-2.5 */
  71. {  0, 32, 48, 56, 64, 80, 96,112,128,144,160,176,192,224,256}, /* Layer 1 */
  72. {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}, /* Layer 2 */
  73. {  0,  8, 16, 24, 32, 40, 48, 56, 64, 80, 96,112,128,144,160}, /* Layer 3 */
  74. },
  75. };
  76. /* indexing = [version][layer]
  77.  * number of samples in one frame (per channel)
  78.  */
  79. const short samplesPerFrameTab[3][3] = {
  80. {384, 1152, 1152 }, /* MPEG1 */
  81. {384, 1152,  576 }, /* MPEG2 */
  82. {384, 1152,  576 }, /* MPEG2.5 */
  83. };
  84. /* layers 1, 2, 3 */
  85. const short bitsPerSlotTab[3] = {32, 8, 8};
  86. /* indexing = [version][mono/stereo]
  87.  * number of bytes in side info section of bitstream 
  88.  */
  89. const short sideBytesTab[3][2] = {
  90. {17, 32}, /* MPEG-1:   mono, stereo */
  91. { 9, 17}, /* MPEG-2:   mono, stereo */
  92. { 9, 17}, /* MPEG-2.5: mono, stereo */
  93. };
  94. /* indexing = [version][sampleRate][bitRate] 
  95.  * for layer3, nSlots = floor(samps/frame * bitRate / sampleRate / 8)
  96.  *   - add one pad slot if necessary
  97.  */
  98. const short slotTab[3][3][15] = {
  99. {
  100. /* MPEG-1 */
  101. { 0, 104, 130, 156, 182, 208, 261, 313, 365, 417, 522, 626, 731, 835,1044 }, /* 44 kHz */
  102. { 0,  96, 120, 144, 168, 192, 240, 288, 336, 384, 480, 576, 672, 768, 960 }, /* 48 kHz */
  103. { 0, 144, 180, 216, 252, 288, 360, 432, 504, 576, 720, 864,1008,1152,1440 }, /* 32 kHz */
  104. },
  105. {
  106. /* MPEG-2 */
  107. { 0,  26,  52,  78, 104, 130, 156, 182, 208, 261, 313, 365, 417, 470, 522 }, /* 22 kHz */
  108. { 0,  24,  48,  72,  96, 120, 144, 168, 192, 240, 288, 336, 384, 432, 480 }, /* 24 kHz */
  109. { 0,  36,  72, 108, 144, 180, 216, 252, 288, 360, 432, 504, 576, 648, 720 }, /* 16 kHz */
  110. },
  111. {
  112. /* MPEG-2.5 */
  113. { 0,  52, 104, 156, 208, 261, 313, 365, 417, 522, 626, 731, 835, 940,1044 }, /* 11 kHz */
  114. { 0,  48,  96, 144, 192, 240, 288, 336, 384, 480, 576, 672, 768, 864, 960 }, /* 12 kHz */
  115. { 0,  72, 144, 216, 288, 360, 432, 504, 576, 720, 864,1008,1152,1296,1440 }, /*  8 kHz */
  116. },
  117. };
  118. /* indexing = [version][sampleRate][long (.l) or short (.s) block] 
  119.  *   sfBandTable[v][s].l[cb] = index of first bin in critical band cb (long blocks)
  120.  *   sfBandTable[v][s].s[cb] = index of first bin in critical band cb (short blocks)
  121.  */
  122. const SFBandTable sfBandTable[3][3] = {
  123. {
  124. /* MPEG-1 (44, 48, 32 kHz) */
  125. {
  126. { 0,  4,  8, 12, 16, 20, 24, 30, 36, 44, 52, 62, 74, 90,110,134,162,196,238,288,342,418,576 },
  127. { 0,  4,  8, 12, 16, 22, 30, 40, 52, 66, 84,106,136,192 }
  128. },
  129. {
  130. { 0,  4,  8, 12, 16, 20, 24, 30, 36, 42, 50, 60, 72, 88,106,128,156,190,230,276,330,384,576 },
  131. { 0,  4,  8, 12, 16, 22, 28, 38, 50, 64, 80,100,126,192 }
  132. },
  133. {
  134. { 0,  4,  8, 12, 16, 20, 24, 30, 36, 44, 54, 66, 82,102,126,156,194,240,296,364,448,550,576 },
  135. { 0,  4,  8, 12, 16, 22, 30, 42, 58, 78,104,138,180,192 }
  136. }
  137. },
  138. {
  139. /* MPEG-2 (22, 24, 16 kHz) */
  140. {
  141. { 0,  6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96,116,140,168,200,238,284,336,396,464,522,576 },
  142. { 0,  4,  8, 12, 18, 24, 32, 42, 56, 74,100,132,174,192 }
  143. },
  144. {
  145. { 0,  6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96,114,136,162,194,232,278,332,394,464,540,576 },
  146. { 0,  4,  8, 12, 18, 26, 36, 48, 62, 80,104,136,180,192 }
  147. },
  148. {
  149. { 0,  6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96,116,140,168,200,238,284,336,396,464,522,576 }, 
  150. { 0,  4,  8, 12, 18, 26, 36, 48, 62, 80,104,134,174,192 }
  151. },
  152. },
  153. {
  154. /* MPEG-2.5 (11, 12, 8 kHz) */
  155. {
  156. { 0,  6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96,116,140,168,200,238,284,336,396,464,522,576 },
  157. { 0,  4,  8, 12, 18, 26, 36, 48, 62, 80,104,134,174,192 }
  158. },
  159. {
  160. { 0,  6, 12, 18, 24, 30, 36, 44, 54, 66, 80, 96,116,140,168,200,238,284,336,396,464,522,576 },
  161. { 0,  4,  8, 12, 18, 26, 36, 48, 62, 80,104,134,174,192 }
  162. },
  163. {
  164. { 0, 12, 24, 36, 48, 60, 72, 88,108,132,160,192,232,280,336,400,476,566,568,570,572,574,576 },
  165. { 0,  8, 16, 24, 36, 52, 72, 96,124,160,162,164,166,192 }
  166. },
  167. },
  168. };