robpktparse.h
上传用户: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. #ifndef _ROBPKTPARSE_H_
  36. #define _ROBPKTPARSE_H_
  37. // Forward declarations
  38. class CHXTimestampConverter;
  39. const int MAX_FRAMES = 0x100; //max frames per cycle
  40. struct SFrameData
  41. {
  42.     IHXBuffer* pPacketBuf;
  43.     UINT32      ulOffset;    
  44.     BOOL        bCont;
  45.     SFrameData* pNext;
  46.     ~SFrameData() { HX_DELETE(pNext); HX_RELEASE(pPacketBuf); }
  47. };
  48. struct SFrameInfo
  49. {    
  50.     int         nIndex;
  51.     UINT32      ulADUSize;
  52.     SFrameData* pFrameData;   
  53.     double      dTime;
  54.     BOOL        bComplete;
  55.     ~SFrameInfo() { HX_DELETE(pFrameData); }
  56. };
  57. struct SCycle
  58. {   
  59.     SFrameInfo* pFrames[MAX_FRAMES];
  60.     int         nCycleIndex;
  61.     int         nMaxIndex;
  62.     double      dStartTime;
  63.     SCycle*     pNext;
  64.     SCycle*     pLast;
  65.     SCycle(int nCycle) : nCycleIndex(nCycle), nMaxIndex(0),
  66.                                  dStartTime(-1), pNext(NULL), pLast(NULL)
  67.     {
  68.         memset(pFrames, 0, sizeof(SFrameInfo*)*MAX_FRAMES); 
  69.     }
  70.     ~SCycle() { for(int i=0;i<=nMaxIndex;i++) { HX_DELETE(pFrames[i]); }}
  71. };
  72. /*******************************************************
  73.  * CCycleList: A simple doubly linked list of SCycle *s
  74.  * Only defines the methods we need.
  75.  */
  76. class CCycleList
  77. {
  78. public:
  79.     CCycleList() : m_pHead(NULL), m_pTail(NULL), m_nCount(0) {}
  80.     ~CCycleList() { DeleteAll(); }
  81.     inline SCycle*  GetHead()               { return m_pHead; }
  82.     inline SCycle*  GetTail()               { return m_pTail; }
  83.     inline SCycle*  RemoveHead();
  84.     inline void     AddTail(SCycle* pCycle);
  85.     
  86.     inline void     DeleteAll();    
  87.     
  88.     inline BOOL     IsEmpty()               { return m_pHead == NULL; }
  89.     inline int      GetCount()              { return m_nCount; }
  90.     
  91.     inline SCycle*  GetNext(SCycle* pCycle) { return pCycle->pNext; }
  92. private:
  93.     SCycle* m_pHead;
  94.     SCycle* m_pTail;
  95.     int     m_nCount;
  96. };
  97. /*
  98.  * CRobustPacketParser: RFC 3119 (audio/mpa-robust)
  99.  */
  100. class CRobustPacketParser : public CPacketParser
  101. {
  102. public:
  103.     CRobustPacketParser();
  104.     virtual ~CRobustPacketParser();
  105.     HX_RESULT   AddPacket   (IHXPacket* pPacket, INT32 streamOffsetTime);
  106.     HX_RESULT   RenderAll   (void);
  107.     void PreSeek            (void);
  108.     void PostSeek     (UINT32 time);
  109.     
  110.     void EndOfPackets       (void);
  111. protected:    
  112.     UINT32 GetFrameInfo(IHXBuffer* pPacket, UINT32 ulOffset, 
  113.                         double dTime = -1);
  114.     UINT32 GetFrame(UCHAR*& pFrameBuffer, double& dTime, BOOL& bLost);  
  115.     
  116.     CHXTimestampConverter* m_pTsConvert;
  117. private:    
  118.     CCycleList      m_Cycles;           // List of cycles.
  119.     UINT32          m_ulIndex;          // Index of next outgoing frame
  120.     BOOL            m_bFirstFrame;      // Waiting for first frame
  121. };
  122. inline SCycle* 
  123. CCycleList::RemoveHead() 
  124.     if(m_pHead == NULL)
  125.     {
  126.         return NULL;
  127.     }
  128.     if(m_pTail == m_pHead)
  129.     {
  130.         m_pTail = NULL;
  131.     }
  132.     
  133.     SCycle* pHead = m_pHead; 
  134.     m_pHead = m_pHead->pNext;
  135.     if(m_pHead != NULL)
  136.     {
  137.         m_pHead->pLast = NULL;
  138.     }
  139.     m_nCount--;
  140.     return pHead;
  141. }
  142. inline void 
  143. CCycleList::AddTail(SCycle* pCycle) 
  144.     pCycle->pNext = NULL;
  145.     pCycle->pLast = m_pTail;
  146.     if(m_pTail)
  147.     {
  148.         m_pTail->pNext = pCycle;
  149.     }
  150.     else
  151.     {
  152.         m_pHead = pCycle;
  153.     }
  154.     m_pTail = pCycle;
  155.     m_nCount++;
  156. }
  157. inline void 
  158. CCycleList::DeleteAll() 
  159.     if(m_pHead == NULL)
  160.     {
  161.         m_nCount = 0;
  162.         m_pTail = NULL;
  163.     }
  164.     else
  165.     { 
  166.         SCycle* pCycle = m_pHead;
  167.         m_pHead = pCycle->pNext;
  168.         delete pCycle;
  169.         DeleteAll();
  170.     }
  171. }
  172. #endif //_ROBPKTPARSE_H_