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

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. #include "hxtypes.h"
  36. #include "hxcom.h"
  37. #include "hxacodec.h"
  38. #include "mpadecobj.h"
  39. #include "mp3decoder.h"
  40. CMP3AudioDecoder::CMP3AudioDecoder()
  41. {
  42.     m_lRefCount       = 0;
  43.     m_pMpaDecObj      = NULL;
  44.     m_bInitialized    = FALSE;
  45.     m_ulMaxSamplesOut = DEFAULT_MP3_MAXSAMPLESOUT;
  46.     m_ulNumChannels   = DEFAULT_MP3_NUMCHANNELS;
  47.     m_ulSampleRate    = DEFAULT_MP3_SAMPLERATE;
  48.     m_ulDelay         = DEFAULT_MP3_DELAY;
  49.     m_bUseSize        = FALSE;
  50. }
  51. CMP3AudioDecoder::~CMP3AudioDecoder()
  52. {
  53.     HX_DELETE(m_pMpaDecObj);
  54. }
  55. STDMETHODIMP CMP3AudioDecoder::QueryInterface(REFIID riid, void** ppvObj)
  56. {
  57.     HX_RESULT retVal = HXR_NOINTERFACE;
  58.     if (ppvObj)
  59.     {
  60.         // Set default
  61.         *ppvObj = NULL;
  62.         // Switch based on IID
  63.         if (IsEqualIID(riid, IID_IUnknown))
  64.         {
  65.             AddRef();
  66.             *ppvObj = this;
  67.             retVal  = HXR_OK;
  68.         }
  69.         else if (IsEqualIID(riid, IID_IHXAudioDecoder))
  70.         {
  71.             AddRef();
  72.             *ppvObj = (IHXAudioDecoder*) this;
  73.             retVal  = HXR_OK;
  74.         }
  75.     }
  76.     return retVal;
  77. }
  78. STDMETHODIMP_(ULONG32) CMP3AudioDecoder::AddRef()
  79. {
  80.     return InterlockedIncrement(&m_lRefCount);
  81. }
  82. STDMETHODIMP_(ULONG32) CMP3AudioDecoder::Release()
  83. {
  84.     if (InterlockedDecrement(&m_lRefCount) > 0)
  85.     {
  86.         return m_lRefCount;
  87.     }
  88.     delete this;
  89.     return 0;
  90. }
  91. STDMETHODIMP CMP3AudioDecoder::OpenDecoder(UINT32 cfgType, const void* config, UINT32 nBytes)
  92. {
  93.     HX_RESULT retVal = HXR_FAIL;
  94.     HX_DELETE(m_pMpaDecObj);
  95.     m_pMpaDecObj = new CMpaDecObj();
  96.     if (m_pMpaDecObj)
  97.     {
  98.         // See if we have config data
  99.         if (config && nBytes)
  100.         {
  101.             if (nBytes >= 4)
  102.             {
  103.                 // Get the version
  104.                 BYTE* pBuf = (BYTE*) config;
  105.                 UINT32 ulVersion = (pBuf[0] << 24) | (pBuf[1] << 16) | (pBuf[2] << 8) | pBuf[3];
  106.                 // Can we support this version?
  107.                 if (ulVersion <= MAX_BITSTREAM_VERSION)
  108.                 {
  109.                     // Parse version 0
  110.                     if (ulVersion == 0 && nBytes >= 16)
  111.                     {
  112.                         // Parse the values
  113.                         UINT32 ulNumChannels = (pBuf[4]  << 24) | (pBuf[5]  << 16) | (pBuf[6]  << 8) | pBuf[7];
  114.                         UINT32 ulSampleRate  = (pBuf[8]  << 24) | (pBuf[9]  << 16) | (pBuf[10] << 8) | pBuf[11];
  115.                         UINT32 ulDelay       = (pBuf[12] << 24) | (pBuf[13] << 16) | (pBuf[14] << 8) | pBuf[15];
  116. UINT32 ulUseSize      = (pBuf[16] << 24) | (pBuf[17] << 16) | (pBuf[18] << 8) | pBuf[19];
  117.                         // Assign the number of channels if non-NULL
  118.                         if (ulNumChannels) m_ulNumChannels = ulNumChannels;
  119.                         // Assign the sample rate if non-NULL
  120.                         if (ulSampleRate)  m_ulSampleRate  = ulSampleRate;
  121.                         // Assign the delay
  122.                         m_ulDelay = ulDelay;
  123. m_bUseSize = ulUseSize;
  124.                     }
  125.                 }
  126.             }
  127.         }
  128.         // Clear the return value
  129.         retVal = HXR_OK;
  130.     }
  131.     return retVal;
  132. }
  133. STDMETHODIMP CMP3AudioDecoder::Reset()
  134. {
  135.     HX_RESULT retVal = HXR_OK;
  136.     return retVal;
  137. }
  138. STDMETHODIMP CMP3AudioDecoder::Conceal(UINT32 nSamples)
  139. {
  140.     return HXR_OK;
  141. }
  142. STDMETHODIMP CMP3AudioDecoder::Decode(const UCHAR* data, UINT32 nBytes,
  143.                                       UINT32 &nBytesConsumed, INT16 *samplesOut, 
  144.                                       UINT32& nSamplesOut, BOOL eof)
  145. {
  146.     HX_RESULT retVal = HXR_FAIL;
  147.     // Set defaults
  148.     nBytesConsumed = 0;
  149.     // Do we have a decoder
  150.     if (m_pMpaDecObj)
  151.     {
  152.         if (!m_bInitialized)
  153.         {
  154.             INT32 lRet = m_pMpaDecObj->Init_n((unsigned char*) data, nBytes, 
  155.       m_bUseSize);
  156.             if (lRet)
  157.             {
  158.                 int lNumChannels   = 0;
  159.                 int lBitsPerSample = 0;
  160.                 m_pMpaDecObj->GetPCMInfo_v(m_ulSampleRate, lNumChannels, lBitsPerSample);
  161.                 m_ulNumChannels   = (UINT32) lNumChannels;
  162.                 UINT32 ulMaxSamplesPerChannel = (UINT32) m_pMpaDecObj->GetSamplesPerFrame_n();
  163.                 m_ulMaxSamplesOut             = ulMaxSamplesPerChannel * m_ulNumChannels;
  164.                 m_bInitialized                = TRUE;
  165.             }
  166.         }
  167.         if (m_bInitialized)
  168.         {
  169.             UINT32 ulSizeIn  = nBytes;
  170.             UINT32 ulSizeOut = nSamplesOut << 1; // want bytes not samples
  171.             m_pMpaDecObj->DecodeFrame_v((unsigned char*) data,
  172.                                         &ulSizeIn,
  173.                                         (unsigned char*) samplesOut,
  174.                                         &ulSizeOut);
  175.             nBytesConsumed = (ulSizeIn <= nBytes) ? ulSizeIn : nBytes;
  176.             nSamplesOut    = ulSizeOut >> 1; // want samples not bytes
  177.             retVal         = (nSamplesOut) ? HXR_OK : HXR_NO_DATA;
  178.         }
  179.     }
  180.     return retVal;
  181. }
  182. STDMETHODIMP CMP3AudioDecoder::GetMaxSamplesOut(UINT32& nSamples) CONSTMETHOD
  183. {
  184.     nSamples = m_ulMaxSamplesOut;
  185.     return HXR_OK;
  186. }
  187. STDMETHODIMP CMP3AudioDecoder::GetNChannels(UINT32& nChannels) CONSTMETHOD
  188. {
  189.     nChannels = m_ulNumChannels;
  190.     return HXR_OK;
  191. }
  192. STDMETHODIMP CMP3AudioDecoder::GetSampleRate(UINT32& sampleRate) CONSTMETHOD
  193. {
  194.     sampleRate = m_ulSampleRate;
  195.     return HXR_OK;
  196. }
  197. STDMETHODIMP CMP3AudioDecoder::GetDelay(UINT32& nSamples) CONSTMETHOD
  198. {
  199.     nSamples = m_ulDelay;
  200.     return HXR_OK;
  201. }