bitstream.c
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:9k
源码类别:

Symbian

开发平台:

C/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 using Intel IPP libraries
  37.  * June 2003
  38.  *
  39.  * bitstream.c - wrapper functions for IPP primitives which unpack frame header, 
  40.  *                 side info, and scale factors
  41.  **************************************************************************************/
  42. #include "coder.h"
  43. /**************************************************************************************
  44.  * Function:    UnpackFrameHeader
  45.  *
  46.  * Description: parse the fields of the MP3 frame header
  47.  *
  48.  * Inputs:      buffer pointing to a complete MP3 frame header (4 bytes, plus 2 if CRC)
  49.  *
  50.  * Outputs:     filled frame header info in the MP3DecInfo structure
  51.  *              updated platform-specific FrameHeader struct
  52.  *
  53.  * Return:      length (in bytes) of frame header (for caller to calculate offset to
  54.  *                first byte following frame header)
  55.  *              -1 if null frameHeader or invalid syncword
  56.  *
  57.  * TODO:        check for valid fields, depending on capabilities of decoder
  58.  *              test CRC on actual stream (verify no endian problems)
  59.  **************************************************************************************/
  60. int UnpackFrameHeader(MP3DecInfo *mp3DecInfo, unsigned char *buf)
  61. {
  62. int verTabIdx, mpeg25Flag;
  63. Ipp8u *pBitStream;
  64. FrameHeader *fh;
  65. IppMP3FrameHeader *fhIPP;
  66. /* validate pointers and sync word */
  67. if (!mp3DecInfo || !mp3DecInfo->FrameHeaderPS || (buf[0] & SYNCWORDH) != SYNCWORDH || (buf[1] & SYNCWORDL) != SYNCWORDL)
  68. return -1;
  69. /* IPP primitive #1 - unpack frame header */
  70. pBitStream = (Ipp8u *)buf;
  71. fh = ((FrameHeader *)(mp3DecInfo->FrameHeaderPS));
  72. fhIPP = &(fh->fhIPP);
  73. ippsUnpackFrameHeader_MP3(&pBitStream, fhIPP);
  74. /* init user-accessible data */
  75. mpeg25Flag = 1 - ((buf[1] >> 4) & 0x01); /* bit 20: 0 = MPEG25, 1 = MPEG1 or MPEG2 (dep. on bit 19) */
  76. if (fhIPP->id == 0x01 && !mpeg25Flag)
  77. verTabIdx = 0; /* MPEG 1 */
  78. else if (fhIPP->id == 0x00 && !mpeg25Flag)
  79. verTabIdx = 1; /* MPEG 2 */
  80. else
  81. verTabIdx = 2; /* MPEG 2.5 */
  82. /* currently MPEG2.5 is not supported with IPP
  83.  * should be possible using "*Sfb" versions of Huffman decoder and dequantizer primitives
  84.  *   (pass in user-defined scalefactor band tables for MPEG2.5 critical bands)
  85.  * possible problem is that Huffman decoder only lets user override long-block table
  86.  * see IPP docs for more info
  87.  */
  88. if (verTabIdx == 2)
  89. return -1;
  90. /* fhIPP->layer: 3 for layer1, 2 for layer2, 1 for layer3 */
  91. mp3DecInfo->bitrate = ((int)bitrateTab[verTabIdx][4 - fhIPP->layer - 1][fhIPP->bitRate]) * 1000;
  92. mp3DecInfo->nChans = (fhIPP->mode == 0x03 ? 1 : 2);
  93. mp3DecInfo->samprate = samplerateTab[verTabIdx][fhIPP->samplingFreq];
  94. mp3DecInfo->nGrans = (fhIPP->id == 1 ? NGRANS_MPEG1 : NGRANS_MPEG2);
  95. mp3DecInfo->nGranSamps = ((int)samplesPerFrameTab[verTabIdx][4 - fhIPP->layer - 1]) / mp3DecInfo->nGrans;
  96. mp3DecInfo->layer = (4 - fhIPP->layer);
  97. mp3DecInfo->version = (MPEGVersion)verTabIdx;
  98. /* nSlots = total frame bytes (from table) - sideInfo bytes - header - CRC (if present) + pad (if present) */
  99. mp3DecInfo->nSlots = (int)slotTab[verTabIdx][fhIPP->samplingFreq][fhIPP->bitRate] - 
  100. (int)sideBytesTab[verTabIdx][(fhIPP->mode == 0x03 ? 0 : 1)] - 
  101. 4 - (fhIPP->protectionBit ? 0 : 2) + (fhIPP->paddingBit ? 1 : 0);
  102. /* IPP primitive updated pBitStream to point to the byte immediately following the 
  103.  *   frame header, so we use the difference to determine length of frame header
  104.  */
  105. return (pBitStream - buf);
  106. }
  107. /**************************************************************************************
  108.  * Function:    UnpackSideInfo
  109.  *
  110.  * Description: parse the fields of the MP3 side info header
  111.  *
  112.  * Inputs:      MP3DecInfo structure filled by UnpackFrameHeader()
  113.  *              buffer pointing to the MP3 side info data
  114.  *
  115.  * Outputs:     updated mainDataBegin in MP3DecInfo struct
  116.  *              updated private (platform-specific) SideInfo struct
  117.  *
  118.  * Return:      length (in bytes) of side info data
  119.  *              -1 if null input pointers
  120.  **************************************************************************************/
  121. int UnpackSideInfo(MP3DecInfo *mp3DecInfo, unsigned char *buf)
  122. {
  123. Ipp8u *pBitStream;
  124. FrameHeader *fh;
  125. IppMP3FrameHeader *fhIPP;
  126. SideInfo *si;
  127. IppMP3SideInfo *siIPP;
  128. /* validate pointers */
  129. if (!mp3DecInfo || !mp3DecInfo->FrameHeaderPS || !mp3DecInfo->SideInfoPS)
  130. return -1;
  131. pBitStream = (Ipp8u *)buf;
  132. fh = (FrameHeader *)(mp3DecInfo->FrameHeaderPS);
  133. fhIPP = &(fh->fhIPP);
  134. si = (SideInfo *)(mp3DecInfo->SideInfoPS);
  135. siIPP = &(si->siIPP[0]);
  136. /* IPP primitive #2 - unpack side info */
  137. ippsUnpackSideInfo_MP3(&pBitStream, siIPP, &(mp3DecInfo->mainDataBegin), &(si->privateBits), 
  138. &(si->scfsi[0][0]), fhIPP);
  139. /* IPP primitive updated pBitStream, return the offset to start of next block in bitstream */
  140. return (pBitStream - buf);
  141. }
  142. /**************************************************************************************
  143.  * Function:    UnpackScaleFactors
  144.  *
  145.  * Description: parse the fields of the MP3 scale factor data section
  146.  *
  147.  * Inputs:      MP3DecInfo structure filled by UnpackFrameHeader() and UnpackSideInfo()
  148.  *              buffer pointing to the MP3 scale factor data
  149.  *              bit offset (0-7)
  150.  *              number of bits available in buf
  151.  *              index of current granule and channel
  152.  *
  153.  * Outputs:     updated platform-specific ScaleFactorInfo struct
  154.  *
  155.  * Return:      length (in bytes) of scale factor data
  156.  *              bitOffset also returned in parameter (0 = MSB, 7 = LSB of 
  157.  *                byte located at buf + offset)
  158.  *              -1 if null input pointers
  159.  **************************************************************************************/
  160. int UnpackScaleFactors(MP3DecInfo *mp3DecInfo, unsigned char *buf, int *bitOffset, int bitsAvail, int gr, int ch)
  161. {
  162. Ipp8u *pBitStream;
  163. FrameHeader *fh;
  164. IppMP3FrameHeader *fhIPP;
  165. SideInfo *si;
  166. IppMP3SideInfo *siIPP;
  167. ScaleFactorInfo *sfi;
  168. /* validate pointers */
  169. if (!mp3DecInfo || !mp3DecInfo->FrameHeaderPS || !mp3DecInfo->SideInfoPS || !mp3DecInfo->ScaleFactorInfoPS)
  170. return -1;
  171. pBitStream = (Ipp8u *)buf;
  172. fh = (FrameHeader *)(mp3DecInfo->FrameHeaderPS);
  173. fhIPP = &(fh->fhIPP);
  174. /* si is an array of up to 4 structs, stored as gr0ch0, gr0ch1, gr1ch0, gr1ch1 */
  175. si = (SideInfo *)(mp3DecInfo->SideInfoPS);
  176. siIPP = &(si->siIPP[0]);
  177. siIPP += (gr*mp3DecInfo->nChans + ch);
  178. sfi = (ScaleFactorInfo *)mp3DecInfo->ScaleFactorInfoPS;
  179. /* IPP primitive #3 - unpack scale factors */
  180. ippsUnpackScaleFactors_MP3_1u8s(&pBitStream, bitOffset, sfi->scaleFactor[ch],
  181. siIPP, si->scfsi[ch], fhIPP, gr, ch);
  182. mp3DecInfo->part23Length[gr][ch] = siIPP->part23Len;
  183. /* IPP primitive updated pBitStream, return the offset to start of next block in bitstream */
  184. return (pBitStream - buf);
  185. }
  186. /**************************************************************************************
  187.  * Function:    CheckPadBit
  188.  *
  189.  * Description: indicate whether or not padding bit is set in frame header
  190.  *
  191.  * Inputs:      MP3DecInfo structure filled by UnpackFrameHeader()
  192.  *
  193.  * Outputs:     none
  194.  *
  195.  * Return:      1 if pad bit is set, 0 if not, -1 if null input pointer
  196.  **************************************************************************************/
  197. int CheckPadBit(MP3DecInfo *mp3DecInfo)
  198. {
  199. FrameHeader *fh;
  200. IppMP3FrameHeader *fhIPP;
  201. /* validate pointers */
  202. if (!mp3DecInfo || !mp3DecInfo->FrameHeaderPS)
  203. return -1;
  204. fh = ((FrameHeader *)(mp3DecInfo->FrameHeaderPS));
  205. fhIPP = &(fh->fhIPP);
  206. return (fhIPP->paddingBit ? 1 : 0);
  207. }