mpadecobj.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

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
  37.  * Jon Recker (jrecker@real.com), Ken Cooke (kenc@real.com)
  38.  * June 2003
  39.  *
  40.  * mpadecobj.cpp - C++ wrapper for compatibility with Helix mp3 renderer
  41.  *                 
  42.  * Notes: this sits on top of mp3dec.c, and if this C++ API is not required
  43.  *          then the C-only API in mp3dec.c can also be called directly
  44.  *        right now only layer 3 is enabled, since fixed-pt layer 1, 2 decoding is not
  45.  *          currently supported
  46.  *        see datatype/mp3/renderer for more info
  47.  **************************************************************************************/
  48. #include "mpadecobjfixpt.h"
  49. CMpaDecObj::CMpaDecObj()
  50.  :  m_pDec(0),
  51.     m_pDecL1(0),
  52.     m_pDecL2(0),
  53.     m_pDecL3(0),
  54.     m_bTrustPackets(0),
  55.     m_bUseFrameSize(0)
  56. {
  57. }
  58. CMpaDecObj::~CMpaDecObj()
  59. {
  60.     if (m_pDecL1)
  61.     {
  62. #if defined (HELIX_FEATURE_AUDIO_MPA_LAYER1)
  63. /* not implemented - see comments in mpadecobj.h */
  64.         delete m_pDecL1;
  65. #endif
  66.         m_pDecL1 = 0;
  67.     }
  68.     if (m_pDecL2)
  69.     {
  70. #if defined (HELIX_FEATURE_AUDIO_MPA_LAYER2)
  71. /* not implemented - see comments in mpadecobj.h */
  72.         delete m_pDecL2;
  73. #endif
  74.         m_pDecL2 = 0;
  75.     }
  76.     if (m_pDecL3)
  77.     {
  78. #if defined (HELIX_FEATURE_AUDIO_MPA_LAYER3)
  79.         MP3FreeDecoder(m_pDecL3);
  80. #endif
  81.         m_pDecL3 = 0;
  82.     }
  83. m_pDec = 0;
  84. }
  85. /* returns 1 on success, 0 on failure */
  86. int CMpaDecObj::Init_n(unsigned char *pSync, 
  87.    unsigned long ulSize, 
  88.    unsigned char bUseSize)
  89. {
  90. /* Right now only layer 3 is implemented in fixed-point. 
  91.  * To add layers 1,2 you'll need to parse the MPEG header, 
  92.  *   switch() on the layer number, and init the right codec.
  93.  */
  94. #if defined (HELIX_FEATURE_AUDIO_MPA_LAYER3)
  95. m_pDecL3 = MP3InitDecoder();
  96. if (MP3GetNextFrameInfo((HMP3Decoder)m_pDecL3, &m_lastMP3FrameInfo, pSync)) {
  97. /* returns non-zero if error */
  98.         MP3FreeDecoder(m_pDecL3);
  99.         m_pDecL3 = 0;
  100. } else {
  101. m_pDec = m_pDecL3;
  102. }
  103. #endif
  104.     
  105.     if (!m_pDec)
  106.         return 0;
  107. m_bUseFrameSize = bUseSize;
  108. return 1;
  109. }
  110. /* passthrough for backwards compatibility, disregarding error code (see comments below) */
  111. void CMpaDecObj::DecodeFrame_v(unsigned char *pSource,
  112.                               unsigned long *pulSize,
  113.                                unsigned char *pPCM,
  114.                                unsigned long *pulPCMSize)
  115. {
  116. DecodeFrame_v(pSource, pulSize, pPCM, pulPCMSize, 0);
  117. }
  118. void CMpaDecObj::DecodeFrame_v(unsigned char *pSource,
  119.                               unsigned long *pulSize,
  120.                                unsigned char *pPCM,
  121.                                unsigned long *pulPCMSize,
  122.    int *errCode)
  123. {
  124. int err, bytesLeft;
  125. unsigned char *buf;
  126. buf = pSource;
  127. bytesLeft = (int)(*pulSize);
  128. if (m_pDec)
  129. err = MP3Decode((HMP3Decoder)m_pDec, &buf, &bytesLeft, (short *)pPCM, (int)m_bUseFrameSize);
  130. /* see mpadecobj.h - DecodeFrame_v() overloaded so it will continue to work if
  131.  *   errCode parameter is not included. But if you do include an errCode ptr you'll get
  132.  *   the error result (recommended - see main.c for examples of handling error codes)
  133.  */
  134. if (errCode)
  135. *errCode = err;
  136. if (err) {
  137. *pulSize = (*pulSize - (unsigned long)bytesLeft);
  138. *pulPCMSize = 0;
  139. } else {
  140. MP3GetLastFrameInfo((HMP3Decoder)m_pDec, &m_lastMP3FrameInfo);
  141. *pulSize = (*pulSize - (unsigned long)bytesLeft);
  142. *pulPCMSize = (m_lastMP3FrameInfo.bitsPerSample >> 3) * m_lastMP3FrameInfo.outputSamps;
  143. }
  144. }
  145. void CMpaDecObj::GetPCMInfo_v(unsigned long &ulSampRate,
  146.                               int &nChannels,
  147.                               int &nBitsPerSample)
  148. {
  149. ulSampRate = m_lastMP3FrameInfo.samprate;
  150. nChannels = m_lastMP3FrameInfo.nChans;
  151. nBitsPerSample = m_lastMP3FrameInfo.bitsPerSample;
  152. }
  153. /* return number of samples per frame, per channel, actually (see usage in payload/pktparse.cpp) */
  154. int CMpaDecObj::GetSamplesPerFrame_n()
  155. {
  156. return (m_lastMP3FrameInfo.outputSamps >> (m_lastMP3FrameInfo.nChans - 1)); /* only works for 1 or 2 channels */
  157. }