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

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. /* a first feeble attempt to endow the RA codecs with a new interface.
  36.    This might not work yet. */
  37. #include <assert.h>
  38. #include "hxcom.h"
  39. #include "hxtypes.h"
  40. #include "hxresult.h"
  41. #include "cra2ihxadec.h"
  42. #include "racodec.h"
  43. #include "sipr_str.h"
  44. /* heap, memory debugging */
  45. #include "hxheap.h"
  46. #ifdef _DEBUG
  47. #undef HX_THIS_FILE
  48. static const char HX_THIS_FILE[] = __FILE__;
  49. #endif
  50. #ifdef _M_IX86 /* Asm versions */
  51. __inline short
  52. RoundFtoS(float f) {
  53. long l;
  54. __asm fld f
  55. __asm fistp l
  56. if (l < -32768)
  57. l = -32768;
  58. else if (l > 32767)
  59. l = 32767;
  60. return (short)l;
  61. }
  62. #else /* C versions */
  63. __inline short
  64. RoundFtoS(float f) {
  65. long l = (long)(f < 0.0f ? f - 0.5f : f + 0.5f);
  66. if (l < -32768)
  67. l = -32768;
  68. else if (l > 32767)
  69. l = 32767;
  70. return (short)l;
  71. }
  72. #endif /* _M_IX86 */
  73. class HXAudioDecoder : IHXAudioDecoder
  74. {
  75. protected:
  76.     ~HXAudioDecoder() ;
  77. public:
  78.     /*
  79.      * IUnknown methods
  80.      */
  81.     STDMETHOD(QueryInterface) (THIS_
  82. REFIID riid,
  83. void** ppvObj) ;
  84.     STDMETHOD_(ULONG32,AddRef) (THIS) ;
  85.     STDMETHOD_(ULONG32,Release) (THIS) ;
  86.     /*
  87.      * IHXAudioDecoder methods
  88.      */
  89.     STDMETHOD(OpenDecoder)      (THIS_
  90.    const void* params, int sizeOf) ;
  91.     STDMETHOD(SetStreamBegin)   (THIS_
  92.  int& delay) ;
  93.     //    HX_RESULT DecodeData(CDecoderUnit units[], int nDecoderUnits) = 0 ;
  94.     STDMETHOD(Conceal)          (THIS_
  95.  int nSamples) ;
  96.     STDMETHOD(DecodeDataRaw)    (THIS_
  97.  const char *data,
  98.  int nBytes,
  99.  int& nBytesConsumed,
  100.  short *samplesOut,
  101.  int& nSamplesOut,
  102.  int eof) ;
  103.     STDMETHOD(MaxSamplesOut)    (THIS_
  104.  int& nSamples) CONSTMETHOD ;
  105.     STDMETHOD_(void,CloseDecoder)(THIS) ;
  106.     HXAudioDecoder() ;
  107.     HX_RESULT Init() ;
  108. private:
  109.     long m_lRefCount ;
  110.     RACODEC mpCodecRef ;
  111.     int mMaxSamplesOut ;
  112.     int mBytesPerFrame ;
  113.     int mnConceal ;
  114.     bool mIsSiproCodec ;
  115. } ;
  116. HXAudioDecoder::HXAudioDecoder()
  117. : m_lRefCount(0)
  118. , mpCodecRef(0)
  119. , mMaxSamplesOut(0)
  120. , mBytesPerFrame(0)
  121. , mnConceal(0)
  122. , mIsSiproCodec(false)
  123. {
  124. }
  125. HXAudioDecoder::~HXAudioDecoder()
  126. {
  127.     if (mpCodecRef)
  128.     {
  129. ENTRYPOINT(RACloseCodec)(mpCodecRef) ;
  130.     }
  131. }
  132. HX_RESULT HXEXPORT ENTRYPOINT(RACreateDecoderInstance) (const CLSID &clsid, IUnknown** ppUnknown)
  133. {
  134.     HX_RESULT res = HXR_OUTOFMEMORY ;
  135.     HXAudioDecoder* pObj = new HXAudioDecoder() ;
  136.     if (pObj)
  137. res = pObj->Init() ;
  138.     if (SUCCEEDED(res))
  139.         res = pObj->QueryInterface(clsid, (void**)ppUnknown) ;
  140.     return res ;
  141. }
  142. /****************************************************************************
  143.  *  IUnknown methods
  144.  */
  145. /////////////////////////////////////////////////////////////////////////
  146. //  Method:
  147. // IUnknown::QueryInterface
  148. //
  149. STDMETHODIMP HXAudioDecoder::QueryInterface(REFIID riid, void** ppvObj)
  150. {
  151.     if (IsEqualIID(riid, IID_IHXAudioDecoder))
  152.     {
  153.         AddRef();
  154.         *ppvObj = (IHXAudioDecoder*) this;
  155.         return HXR_OK;
  156.     }
  157.     else if (IsEqualIID(riid, IID_IUnknown))
  158.     {
  159.         AddRef();
  160.         *ppvObj = this;
  161.         return HXR_OK;
  162.     }
  163.     
  164.     *ppvObj = NULL;
  165.     
  166.     return HXR_NOINTERFACE;
  167. }
  168. /////////////////////////////////////////////////////////////////////////
  169. //  Method:
  170. // IUnknown::AddRef
  171. //
  172. STDMETHODIMP_(ULONG32) HXAudioDecoder::AddRef()
  173. {
  174.     return InterlockedIncrement(&m_lRefCount);
  175. }
  176. /////////////////////////////////////////////////////////////////////////
  177. //  Method:
  178. // IUnknown::Release
  179. //
  180. STDMETHODIMP_(ULONG32) HXAudioDecoder::Release()
  181. {
  182.     if (InterlockedDecrement(&m_lRefCount) > 0)
  183.     {
  184.         return m_lRefCount;
  185.     }
  186.     delete this;
  187.     return 0;
  188. }
  189. HX_RESULT HXAudioDecoder::Init()
  190. {
  191.     HX_RESULT res ;
  192.     res = ENTRYPOINT(RAOpenCodec2)(&mpCodecRef, 0) ;
  193. //    if (SUCCEEDED(res)) ENTRYPOINT(RASetPwd)(mpCodecRef, CURRENT_PWD) ;
  194. //    if (SUCCEEDED(res)) res = retrieveProperties() ;
  195.     return res ;
  196. }
  197. //    HX_RESULT HXEXPORT ENTRYPOINT(RAInitDecoder) (RACODEC codecRef, void* pParam);
  198. //    HX_RESULT HXEXPORT ENTRYPOINT(RADecode) (RACODEC codecRef, Byte* in, UINT32 inLength, Byte* out, UINT32* pOutLength, UINT32 userData);
  199. //    HX_RESULT HXEXPORT ENTRYPOINT(RAFlush) (RACODEC codecRef, Byte* outBuf, UINT32* pOutLength);
  200. //    void HXEXPORT ENTRYPOINT(RAFreeDecoder) (RACODEC codecRef);
  201. STDMETHODIMP HXAudioDecoder::OpenDecoder(const void* pInitParams, int sizeOf)
  202. {
  203.     HX_RESULT res = HXR_OK ;
  204.     RADECODER_INIT_PARAMS2 *pParams = (RADECODER_INIT_PARAMS2 *)pInitParams ;
  205.     unsigned short pSize ;
  206.     UINT32 *x ;
  207.     int i, n = ENTRYPOINT(RAGetNumberOfFlavors2)(mpCodecRef) ;
  208.     /* find out which decoder we are driving. Some decoders are not created equal... argh. */
  209.     char *s = (char*)ENTRYPOINT(RAGetFlavorProperty)(mpCodecRef, 0, ::FLV_PROP_NAME, &pSize) ;
  210.     mIsSiproCodec = (pSize && (0 == strncmp(SIPR_NAME_FLAVOR0, s, pSize))) ;
  211.     if (SUCCEEDED(res)) res = ENTRYPOINT(RAInitDecoder)(mpCodecRef, (void*)&(pParams->p)) ;
  212.     if (SUCCEEDED(res) && mIsSiproCodec) res = ENTRYPOINT(RASetFlavor)(mpCodecRef, pParams->flvNumber) ;
  213. #if 1
  214.     x = (UINT32*)ENTRYPOINT(RAGetFlavorProperty)(mpCodecRef, pParams->flvNumber, ::FLV_PROP_SAMPLES_IN, &pSize) ;
  215.     if (x && pSize == sizeof(*x) && *x > mMaxSamplesOut)
  216.     {
  217. mMaxSamplesOut = *x ;
  218.     }
  219.     else
  220.     {
  221. return HXR_INVALID_PARAMETER ;
  222.     }
  223. #else
  224.     mMaxSamplesOut = 0 ;
  225.     for (i = 0 ; i < n ; i++)
  226.     {
  227. x = (UINT32*)RAGetFlavorProperty(mpCodecRef, i, ::FLV_PROP_SAMPLES_IN, &pSize) ;
  228. if (x && pSize == sizeof(*x) && *x > mMaxSamplesOut)
  229. {
  230.     mMaxSamplesOut = *x ;
  231. }
  232.     }
  233.     if (!mMaxSamplesOut)
  234.     {
  235. res = HXR_NOTIMPL ;
  236.     }
  237. #endif
  238.     mBytesPerFrame = pParams->p.bitsPerFrame ;
  239.     return res ;
  240. }
  241. STDMETHODIMP HXAudioDecoder::SetStreamBegin(int& delay)
  242. {
  243.     delay = 0 ; // the old decoders ate the startup delay
  244.     return HXR_OK ;
  245. }
  246. STDMETHODIMP HXAudioDecoder::Conceal(int nSamples)
  247. {
  248.     mnConceal = nSamples ;
  249.     return HXR_OK ;
  250. }
  251. STDMETHODIMP HXAudioDecoder::DecodeDataRaw(
  252. const char *data,
  253. int nBytes,
  254. int& nBytesConsumed,
  255. short *samplesOut,
  256. int& nSamplesOut,
  257. int eof)
  258. /* for the old CBR codecs, the length of the input data must be some
  259.    multiple of the "frame size" */
  260. {
  261.     HX_RESULT res = HXR_OK ;
  262.     UINT32 mask ;
  263.     unsigned long nSamples ;
  264.     int maxSamplesOut ;
  265.     int nFrames = nBytes / mBytesPerFrame ;
  266.     if (nBytes - mBytesPerFrame * nFrames != 0)
  267. return HXR_INVALID_PARAMETER ;
  268.     maxSamplesOut = nSamplesOut ;
  269.     nSamplesOut = 0 ;
  270.     nBytesConsumed = 0 ;
  271.     /* now do concealment. We rely on the fact that nSamples is equal to maxSamplesOut in every call.
  272.        This fails for the first couple of frames because decoders currently eat their delay. Oh well. */
  273.     if (mnConceal)
  274.     {
  275. #if 0
  276. int i ;
  277. for (i = 0 ; i < (mnConceal + mMaxSamplesOut/2) / mMaxSamplesOut ; i++)
  278. {
  279.     res = RADecode(mpCodecRef, (unsigned char *)data, mBytesPerFrame, (Byte*)(samplesOut + nSamplesOut), &nSamples, 0) ;
  280.     if (FAILED(res))
  281. break ;
  282.     nSamples /= sizeof(short) ;
  283.     nSamplesOut += nSamples ;
  284. }
  285. mnConceal = 0 ;
  286. #else
  287. nSamples = 0 ;
  288. while (mnConceal > (signed)nSamples / 2 && nSamplesOut + nSamples <= maxSamplesOut)
  289. {
  290.     res = ENTRYPOINT(RADecode)(mpCodecRef, (unsigned char *)data, mBytesPerFrame, (Byte*)(samplesOut + nSamplesOut), &nSamples, 0) ;
  291.     if (FAILED(res))
  292. break ;
  293.     nSamples /= sizeof(short) ;
  294.     mnConceal   -= nSamples ;
  295.     nSamplesOut += nSamples ;
  296. }
  297. if (mnConceal < (signed)nSamples / 2)
  298. {
  299.     mnConceal = 0 ; // we assume we have concealed enough
  300. }
  301. #endif
  302.     }
  303.     while (!FAILED(res) &&
  304.    nSamplesOut + mMaxSamplesOut <= maxSamplesOut &&
  305.    nBytesConsumed < nBytes)
  306.     {
  307.         res = ENTRYPOINT(RADecode)(mpCodecRef, (unsigned char *)data + nBytesConsumed, mBytesPerFrame,
  308.        (Byte*)(samplesOut + nSamplesOut), &nSamples, ~0UL) ;
  309. nSamples /= sizeof(short) ;
  310. nBytesConsumed += mBytesPerFrame ;
  311. nSamplesOut    += nSamples ;
  312.     }
  313.     return res ;
  314. }
  315. STDMETHODIMP HXAudioDecoder::MaxSamplesOut(int& nSamples) const
  316. {
  317.     nSamples = mIsSiproCodec ? 2 * mMaxSamplesOut : mMaxSamplesOut ;
  318.     return HXR_OK ;
  319. }
  320. STDMETHODIMP_(void) HXAudioDecoder::CloseDecoder()
  321. {
  322.     ENTRYPOINT(RAFreeDecoder)(mpCodecRef) ;
  323. }