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

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. #include "./s60_amr_nb.h"
  36. #include "amr_frame_hdr.h"
  37. const UINT32 MaxSamples = 160;
  38. CS60AMRCodec::CS60AMRCodec() :
  39.     m_lRefCount(0),
  40.     m_pDecoder(0),
  41.     m_nConcealSamples(0)
  42. {}
  43. CS60AMRCodec::~CS60AMRCodec()
  44. {
  45.     if (m_pDecoder)
  46.     {
  47. delete m_pDecoder;
  48. m_pDecoder = 0;
  49.     }
  50. }
  51. /*
  52.  * IUnknown methods
  53.  */
  54. STDMETHODIMP CS60AMRCodec::QueryInterface(REFIID riid, void** ppvObj)
  55. {
  56.     HX_RESULT res = HXR_NOINTERFACE;
  57.     *ppvObj = NULL;
  58.     if (IsEqualIID(riid, IID_IUnknown))
  59.     {
  60. AddRef();
  61. *ppvObj = this;
  62. res = HXR_OK;
  63.     }
  64.     else if (IsEqualIID(riid, IID_IHXAudioDecoder))
  65.     {
  66. AddRef();
  67. *ppvObj = (IHXAudioDecoder*)this;
  68. res = HXR_OK;
  69.     }
  70.     return res;
  71. }
  72. STDMETHODIMP_(ULONG32) CS60AMRCodec::AddRef()
  73. {
  74.     return InterlockedIncrement(&m_lRefCount);
  75. }
  76. STDMETHODIMP_(ULONG32) CS60AMRCodec::Release()
  77. {
  78.     if (InterlockedDecrement(&m_lRefCount) > 0)
  79.     {
  80.         return m_lRefCount;
  81.     }
  82.     delete this;
  83.     return 0;
  84. }
  85. /*
  86.  * IHXAudioDecoder methods
  87.  */
  88. STDMETHODIMP CS60AMRCodec::OpenDecoder(UINT32 cfgType, const void* config,
  89.     UINT32 nBytes)
  90. {
  91.     HX_RESULT res = HXR_FAILED;
  92.     if (m_pDecoder)
  93.     {
  94. delete m_pDecoder;
  95. m_pDecoder = 0;
  96.     }
  97.     TInt exitValue;
  98.     TAmrDecParams conf;
  99.     // Init call for EPOC AMR codec has to be inside a trap to avoid 
  100.     // a kernel panic
  101.     conf.iConcealment = 0;
  102.     TRAP( exitValue, m_pDecoder = CAmrToPcmDecoder::NewL(conf) );
  103.     if (!exitValue && m_pDecoder)
  104.     {
  105. res = HXR_OK;
  106.     }
  107.     return res;
  108. }
  109. STDMETHODIMP CS60AMRCodec::Reset()
  110. {
  111.     HX_RESULT res = HXR_OK;
  112.     if (m_pDecoder)
  113.     {
  114. m_pDecoder->Reset();
  115.     }
  116.     
  117.     m_nConcealSamples = 0;
  118.     return res;
  119. }
  120. STDMETHODIMP CS60AMRCodec::GetMaxSamplesOut(UINT32& nSamples) CONSTMETHOD
  121. {
  122.     nSamples = MaxSamples;
  123.     return HXR_OK;
  124. }
  125. STDMETHODIMP CS60AMRCodec::GetNChannels(UINT32& nChannels) CONSTMETHOD
  126. {
  127.     nChannels = 1;
  128.     return HXR_OK;
  129. }
  130. STDMETHODIMP CS60AMRCodec::GetSampleRate(UINT32& sampleRate) CONSTMETHOD
  131. {
  132.     sampleRate = 8000;
  133.     return HXR_OK;
  134. }
  135. STDMETHODIMP CS60AMRCodec::GetDelay(UINT32& nSamples) CONSTMETHOD
  136. {
  137.     nSamples = 0;
  138.     return HXR_OK;
  139. }
  140. STDMETHODIMP CS60AMRCodec::Decode(const UCHAR* data, UINT32 nBytes, 
  141.        UINT32 &nBytesConsumed, INT16 *samplesOut, 
  142.        UINT32& nSamplesOut, BOOL eof)
  143. {
  144.     HX_RESULT res = HXR_UNEXPECTED;
  145.     nSamplesOut = 0;
  146.     nBytesConsumed = 0;
  147.     if (m_pDecoder)
  148.     {
  149. if (m_nConcealSamples)
  150. {     
  151.     // Currently we do not do anything special for concealment
  152.     // so we will just output silence for the concealment
  153.     // samples.
  154.     if (m_nConcealSamples > MaxSamples)
  155. nSamplesOut = MaxSamples;
  156.     else
  157. nSamplesOut = m_nConcealSamples;
  158.     for (UINT32 i = 0; i < nSamplesOut; i++)
  159. *samplesOut++ = 0;
  160.     m_nConcealSamples -= nSamplesOut;
  161.     res = HXR_OK;
  162. }
  163. else if (nBytes)
  164. {
  165.     TInt consumed = 0;
  166.     TInt outSize = MaxSamples * 2;
  167.     if (m_pDecoder->Decode((UCHAR*)data, consumed,
  168.    (UCHAR*)samplesOut, outSize, FALSE) == 0)
  169.     {
  170. nSamplesOut = outSize / 2;
  171. nBytesConsumed = consumed;
  172. res = HXR_OK;
  173.     }
  174. }
  175. else
  176. {
  177.     res = HXR_OK;
  178. }
  179.     }
  180.     
  181.     return res;
  182. }
  183. STDMETHODIMP CS60AMRCodec::Conceal(UINT32 nSamples)
  184. {
  185.     // We want to conceal only in MaxSamples size blocks.
  186.     UINT32 nFrameCount = (nSamples + MaxSamples - 1) / MaxSamples;
  187.     UINT32 nConcealSamples = nFrameCount * MaxSamples;
  188.     m_nConcealSamples += nConcealSamples;
  189.     return HXR_OK;
  190. }