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

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 "hlxclib/stdio.h"
  37. #include "hxcom.h"              // IUnknown
  38. #include "hxcomm.h"            // IHXCommonClassFactory
  39. #include "ihxpckts.h"           // IHXBuffer, IHXPacket, IHXValues
  40. #include "hxplugn.h"           // IHXPlugin
  41. #include "hxrendr.h"           // IHXRenderer
  42. #include "hxengin.h"           // IHXInterruptSafe
  43. #include "hxcore.h"            // IHXStream
  44. #include "hxausvc.h"           // Audio Services
  45. #include "hxmon.h"             // IHXStatistics
  46. #include "hxupgrd.h"           // IHXUpgradeCollection
  47. #include "hxslist.h"            // CHXSimpleList
  48. #include "carray.h"             // CHXPtrArray
  49. #include "mpadecobj.h"          // MPEG Audio Decoder (selects fixed-pt or floating-pt based on HELIX_CONFIG_FIXEDPOINT)
  50. #include "mp3format.h"          // MP3 formatter
  51. #include "mp3rend.h"            // CRnMp3Ren
  52. #include "pktparse.h"           // CPacketParser
  53. #include "fmtpktparse.h"        // CFmtPacketParser
  54. CFmtPacketParser::CFmtPacketParser() :
  55.     CPacketParser(),
  56.     m_pPacket(NULL)
  57. {
  58.     m_bReformatted = TRUE;
  59. }
  60. CFmtPacketParser::~CFmtPacketParser()
  61. {    
  62.     HX_RELEASE(m_pPacket);
  63. }
  64. HX_RESULT
  65. CFmtPacketParser::AddPacket(IHXPacket* pPacket, INT32 streamOffsetTime)
  66. {
  67.     if(pPacket == NULL)
  68.     {
  69.         return HXR_INVALID_PARAMETER;
  70.     }
  71.     HX_RELEASE(m_pPacket);
  72.     m_pPacket = pPacket;
  73.     m_pPacket->AddRef();
  74.     return HXR_OK;
  75. }
  76. HX_RESULT
  77. CFmtPacketParser::RenderAll()
  78. {
  79.     if(!m_pRenderer || !m_pFmt || !m_pPacket)
  80.     {
  81.         return HXR_FAIL;
  82.     }
  83.     
  84.     BOOL bPacketLoss = m_pPacket->IsLost();
  85.     double dTime;
  86.     if(!bPacketLoss)
  87.     {
  88.         IHXBuffer* pBufObj = m_pPacket->GetBuffer();
  89.         if(!pBufObj)
  90.         {
  91.             return HXR_FAIL;
  92.         }
  93.         UCHAR* pFrame;
  94.         UINT32 ulSize;
  95.         pBufObj->Get(pFrame, ulSize);
  96.         if(!pFrame || !ulSize)
  97.         {
  98.             pBufObj->Release();
  99.             return HXR_FAIL;
  100.         }
  101.         
  102.         // Copy the data into the decode buffer
  103.         m_ulDecBufBytes = min(ulSize, DEC_BUFFER_SIZE);
  104.         memcpy(m_pDecBuffer, pFrame, m_ulDecBufBytes); /* Flawfinder: ignore */
  105.         pBufObj->Release();
  106.         if(!m_pDecoder && !InitDecoder(m_pDecBuffer, m_ulDecBufBytes, FALSE))
  107.         {
  108.             return HXR_FAIL;
  109.         }
  110.         // ClearMainDataBegin() after 
  111.         // the call to InitDecoder(), because the layer needs
  112.         // to be set before we call ClearMainDataBegin().
  113.         m_pFmt->ClearMainDataBegin(m_pDecBuffer);
  114.         
  115.         dTime = m_pPacket->GetTime();
  116.     }
  117.     else
  118.     {
  119.         dTime = m_dNextPts;
  120.     }
  121.     
  122.     if(!m_ulDecBufBytes)
  123.     {
  124.         return HXR_FAIL;
  125.     }
  126.     // If the packet is lost we use the last packet, still in the buffer
  127.     // NOTE: We should probably check the value returned by D&R!
  128.     DecodeAndRender(m_pDecBuffer, m_ulDecBufBytes, dTime, bPacketLoss);
  129.     
  130.     m_dNextPts = dTime + m_dFrameTime;
  131.     return HXR_OK;
  132. }
  133. void
  134. CFmtPacketParser::RestartStream(void)
  135. {
  136.     HX_RELEASE(m_pPacket);    
  137.     m_ulDecBufBytes = 0;
  138. }