hxamrpyld.cpp
上传用户: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. #include "hxtypes.h"
  36. #include "hxcom.h"
  37. #include "hxccf.h"
  38. #include "hxslist.h"
  39. #include "hxamrpyld.h"
  40. #include "amr_frame_hdr.h"
  41. #include "amr_mime_info.h"
  42. #include "debug.h"
  43. #define D_HXAMR 0
  44. CHXAMRPayloadFormat::CHXAMRPayloadFormat() :
  45.     m_lRefCount(0),
  46.     m_ulSampleRate(0),
  47.     m_ulAUDuration(0),
  48.     m_pCurrentPkt(0),
  49.     m_pCurBufPos(0),
  50.     m_ulBytesLeft(0),
  51.     m_bNeedTimestamp(FALSE),
  52.     m_ulTimestamp(0),
  53.     m_bLoss(FALSE),
  54.     m_flavor(NarrowBand)
  55. {
  56. #ifdef DEBUG
  57.     debug_level() |= D_HXAMR;
  58. #endif
  59. }
  60. CHXAMRPayloadFormat::~CHXAMRPayloadFormat()
  61. {
  62.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::~CHXAMRPayloadFormat()n"));
  63.     HX_RELEASE(m_pCurrentPkt);
  64. }
  65. HX_RESULT CHXAMRPayloadFormat::Build(REF(IMP4APayloadFormat*) pFmt)
  66. {
  67.     pFmt = new CHXAMRPayloadFormat();
  68.     
  69.     HX_RESULT res = HXR_OUTOFMEMORY;
  70.     if (pFmt)
  71.     {
  72. pFmt->AddRef();
  73. res = HXR_OK;
  74.     }
  75.     return res;
  76. }
  77. // *** IUnknown methods ***
  78. STDMETHODIMP CHXAMRPayloadFormat::QueryInterface (THIS_
  79.        REFIID riid,
  80.        void** ppvObj)
  81. {
  82.     if (IsEqualIID(riid, IID_IUnknown))
  83.     {
  84. AddRef();
  85. *ppvObj = this;
  86. return HXR_OK;
  87.     }
  88.     else if (IsEqualIID(riid, IID_IHXPayloadFormatObject))
  89.     {
  90. AddRef();
  91. *ppvObj = (IHXPayloadFormatObject*)this;
  92. return HXR_OK;
  93.     }
  94.     *ppvObj = NULL;
  95.     return HXR_NOINTERFACE;
  96. }
  97. STDMETHODIMP_(ULONG32) CHXAMRPayloadFormat::AddRef()
  98. {
  99.     return InterlockedIncrement(&m_lRefCount);
  100. }
  101. STDMETHODIMP_(ULONG32) CHXAMRPayloadFormat::Release()
  102. {
  103.     if (InterlockedDecrement(&m_lRefCount) > 0)
  104.     {
  105.         return m_lRefCount;
  106.     }
  107.     delete this;
  108.     return 0;
  109. }
  110. /*
  111.  * IHXPayloadFormatObject methods
  112.  */
  113. STDMETHODIMP CHXAMRPayloadFormat::Init(IUnknown* pContext, BOOL bPacketize)
  114. {
  115.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::Init()n"));
  116.     HX_RESULT res = HXR_UNEXPECTED;
  117.     if (!bPacketize)
  118.     {
  119. HX_RELEASE(m_pCurrentPkt);
  120. m_pCurBufPos = 0;
  121. m_ulBytesLeft = 0;
  122. m_bNeedTimestamp = TRUE;
  123. m_bLoss = FALSE;
  124. res = HXR_OK;
  125.     }
  126.     return res; 
  127. }
  128. STDMETHODIMP CHXAMRPayloadFormat::Close()
  129.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::Close()n"));
  130.     return HXR_OK;
  131. }
  132. STDMETHODIMP CHXAMRPayloadFormat::Reset()
  133. {
  134.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::Reset()n"));
  135.     HX_RELEASE(m_pCurrentPkt);
  136.     m_pCurBufPos = 0;
  137.     m_ulBytesLeft = 0;
  138.     m_bNeedTimestamp = TRUE;
  139.     m_bLoss = FALSE;
  140.     return HXR_OK; 
  141. }
  142. STDMETHODIMP CHXAMRPayloadFormat::SetStreamHeader(IHXValues* pHeader)
  143. {
  144.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::SetStreamHeader()n"));
  145.     HX_RESULT res = HXR_UNEXPECTED;
  146.     
  147.     IHXBuffer* pBuf = 0;
  148.     if (SUCCEEDED(pHeader->GetPropertyCString("MimeType", pBuf)))
  149.     {
  150. if (CAMRMimeInfo::IsHXAMR((const char*)pBuf->GetBuffer()))
  151. {
  152.     m_flavor = NarrowBand;
  153.     res = HXR_OK;
  154. }
  155. else if (CAMRMimeInfo::IsHXWideBandAMR((const char*)pBuf->GetBuffer()))
  156. {
  157.     m_flavor = WideBand;
  158.     res = HXR_OK;
  159. }
  160.     }
  161.     HX_RELEASE(pBuf);
  162.     
  163.     return res; 
  164. }
  165. STDMETHODIMP CHXAMRPayloadFormat::GetStreamHeader(REF(IHXValues*) pHeader)
  166. {
  167.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::GetStreamHeader()n"));
  168.     return HXR_NOTIMPL;
  169. }
  170. STDMETHODIMP CHXAMRPayloadFormat::SetPacket(IHXPacket* pPacket)
  171. {
  172.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::SetPacket()n"));
  173.     HX_RESULT res = HXR_UNEXPECTED;
  174.     if (!m_pCurrentPkt)
  175.     {
  176. if (!pPacket->IsLost())
  177. {
  178.     if (m_bNeedTimestamp)
  179.     {
  180. m_ulTimestamp = m_TSConverter.Convert(pPacket->GetTime());
  181. m_bNeedTimestamp = FALSE;
  182.     }
  183.     m_pCurrentPkt = pPacket;
  184.     m_pCurrentPkt->AddRef();
  185.     m_pCurBufPos = 0;
  186.     m_ulBytesLeft = 0;
  187. }
  188. else
  189. {
  190.     m_bLoss = TRUE;
  191.     m_bNeedTimestamp = TRUE;
  192. }
  193.         res = HXR_OK;
  194.     }
  195.     return res; 
  196. }
  197. STDMETHODIMP CHXAMRPayloadFormat::GetPacket(REF(IHXPacket*) pOutPacket)
  198. {
  199.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::GetPacket()n"));
  200.     return HXR_OK;
  201. }
  202. STDMETHODIMP CHXAMRPayloadFormat::Flush()
  203. {
  204.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::Flush()n"));
  205.     return HXR_OK;
  206. }
  207. /*
  208.  * IMP4APayloadFormat methods
  209.  */
  210. ULONG32 CHXAMRPayloadFormat::GetBitstreamHeaderSize(void)
  211. {
  212.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::GetBitstreamHeaderSize()n"));
  213.     return 1;
  214. }
  215. const UINT8* CHXAMRPayloadFormat::GetBitstreamHeader(void)
  216. {
  217.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::GetBitstreamHeader()n"));
  218.     return m_bitstreamHdr;
  219. }
  220. HX_RESULT CHXAMRPayloadFormat::CreateMediaPacket(CMediaPacket* &pOutMediaPacket)
  221. {
  222.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::CreateMediaPacket()n"));
  223.     HX_RESULT res = HXR_NO_DATA;
  224.     if (m_pCurrentPkt)
  225.     {
  226. IHXBuffer* pBuf = m_pCurrentPkt->GetBuffer();
  227. if (!m_pCurBufPos)
  228. {
  229.     m_pCurBufPos = pBuf->GetBuffer();
  230.     m_ulBytesLeft = pBuf->GetSize();
  231. }
  232. if (m_ulBytesLeft)
  233. {
  234.     ULONG32 ulFlags = MDPCKT_USES_IHXBUFFER_FLAG;
  235.     if (m_bLoss)
  236. ulFlags |= MDPCKT_FOLLOWS_LOSS_FLAG;
  237.     CAMRFrameHdr hdr(m_flavor);
  238.     UINT8* pTmp = m_pCurBufPos;
  239.     hdr.Unpack(pTmp);
  240.     ULONG32 ulFrameSize = hdr.DataBytes() + CAMRFrameHdr::HdrBytes();
  241.             // per PR 109022, it's possible for a badly encoded clip to cause
  242.             // things to go nuts because the frame sizes appear to be messed up.
  243.             // The code below allows us to survive these and still play to
  244.             // completion. xxxjhhb
  245.             if( ulFrameSize > m_ulBytesLeft )
  246.             {
  247. m_pCurBufPos = 0;
  248. HX_RELEASE(m_pCurrentPkt);
  249.         HX_RELEASE(pBuf);
  250.                 return HXR_FAIL;
  251.             }
  252.     pOutMediaPacket = new CMediaPacket(pBuf,
  253.        m_pCurBufPos,
  254.        pBuf->GetSize(),
  255.        ulFrameSize,
  256.        m_ulTimestamp,
  257.        ulFlags,
  258.        0);
  259.     m_pCurBufPos += ulFrameSize;
  260.     m_ulBytesLeft -= ulFrameSize;
  261.     m_ulTimestamp += m_ulAUDuration;
  262.     if (pOutMediaPacket)
  263.     {
  264. if (m_bLoss)
  265.     m_bLoss = FALSE;
  266. res = HXR_OK;
  267.     }
  268.     else
  269. res = HXR_OUTOFMEMORY;
  270.     if (!m_ulBytesLeft)
  271.     {
  272. m_pCurBufPos = 0;
  273. HX_RELEASE(m_pCurrentPkt);
  274.     }
  275. }
  276. HX_RELEASE(pBuf);
  277.     }
  278.     return res; 
  279. }
  280. HX_RESULT CHXAMRPayloadFormat::SetSamplingRate(ULONG32 ulSamplesPerSecond)
  281. {
  282.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::SetSamplingRate(%lu)n",
  283.     ulSamplesPerSecond));
  284.     m_ulSampleRate = ulSamplesPerSecond;
  285.     m_TSConverter.SetBase(1000, m_ulSampleRate);
  286.     return HXR_OK;
  287. }
  288. ULONG32 CHXAMRPayloadFormat::GetTimeBase(void)
  289. {
  290.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::GetTimeBase() = %uln",
  291.      m_ulSampleRate));
  292.     return m_ulSampleRate;
  293. }
  294. HX_RESULT CHXAMRPayloadFormat::SetAUDuration(ULONG32 ulAUDuration)
  295. {
  296.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::SetAUDuration(%lu)n",
  297.     ulAUDuration));
  298.     m_ulAUDuration = ulAUDuration;
  299.     return HXR_OK; 
  300. }
  301. HX_RESULT CHXAMRPayloadFormat::SetTimeAnchor(ULONG32 ulTimeMs)
  302. {
  303.     DPRINTF(D_HXAMR,("CHXAMRPayloadFormat::SetTimeAnchor(%lu)n",
  304.     ulTimeMs));
  305.     m_TSConverter.SetOffset(ulTimeMs, TSCONVRT_INPUT);
  306.     return HXR_OK; 
  307. }