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

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 "hxcom.h"
  36. #include "hlxclib/stdio.h"
  37. #include "hxresult.h"
  38. #include "ihxpckts.h"
  39. #include "chxeven.h"
  40. #include "chxelst.h"
  41. #include "strminfo.h"
  42. #include "hxsmbw.h"
  43. #include "hxcomm.h"
  44. #include "hxcore.h"
  45. #include "hxstrm.h"
  46. #include "hxheap.h"
  47. #ifdef _DEBUG
  48. #undef HX_THIS_FILE
  49. static const char HX_THIS_FILE[] = __FILE__;
  50. #endif
  51. /*
  52.  * STREAM_INFO
  53.  */
  54. STREAM_INFO::STREAM_INFO()
  55. {
  56.     m_pHeader = NULL;
  57.     m_bSrcStreamDone = FALSE;
  58.     m_bSrcInfoStreamDone = FALSE;
  59.     m_bSrcStreamFillingDone = FALSE;
  60.     m_bSrcInfoStreamFillingDone = FALSE;
  61.     m_bPacketRequested = FALSE;
  62.     m_bCustomEndTime = FALSE;
  63.     m_unNeeded = 0;
  64.     m_unAvailable = 0;
  65.     m_ulReceived = 0;
  66.     m_ulLost = 0;
  67.     m_pPostEndTimeEventList = NULL;    
  68. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)    
  69.     m_pStats = NULL;
  70. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  71.     m_ulDelay = 0;
  72.     m_pStreamProps = NULL;
  73.     m_uStreamNumber = 0;
  74.     m_ulDuration = 0;
  75.     m_ulTimeBeforeSeek = 0;
  76.     m_ulTimeAfterSeek = 0;
  77.     m_pStream     = NULL;
  78.     m_bCanBeStoppedAnyTime     = FALSE;
  79.     // reconnect stuff
  80.     m_pPreReconnectEventList = NULL;
  81.     m_pPosReconnectEventList = NULL;
  82.     m_bReconnectToBeDone = FALSE;
  83.     m_ulReconnectOverlappedPackets = 0;
  84. };
  85. STREAM_INFO::~STREAM_INFO()
  86. {
  87.     ResetPostEndTimeEventList();
  88.     ResetPreReconnectEventList();
  89.     ResetPosReconnectEventList();
  90.     if (m_pStreamProps)
  91.     {
  92. m_pStreamProps->Release();
  93. m_pStreamProps = 0;
  94.     }
  95.     if (m_pHeader)
  96.     {
  97. m_pHeader->Release();
  98. m_pHeader = 0;
  99.     }
  100.     HX_RELEASE(m_pStream);
  101.     /* Reason we do not delete m_pStats here is because
  102.      * in FileSource we create/delete it while in NetSource
  103.      * case, Protocol creates/deletes it
  104.      */
  105.     /*
  106.     if (m_pStats)
  107.     {
  108. delete m_pStats;
  109. m_pStats = 0;
  110.     }
  111.     */
  112.     while (m_EventList.GetNumEvents() > 0)
  113.     {
  114. CHXEvent* pEvent = m_EventList.RemoveHead();
  115. HX_DELETE (pEvent);
  116.     }   
  117. };
  118. void
  119. STREAM_INFO::ResetPostEndTimeEventList()
  120. {
  121.     if (m_pPostEndTimeEventList)
  122.     {
  123. while (m_pPostEndTimeEventList->GetNumEvents() != 0)
  124. {
  125.     CHXEvent*  pEvent = (CHXEvent*)m_pPostEndTimeEventList->RemoveHead();
  126.     HX_DELETE(pEvent);
  127. }
  128. m_pPostEndTimeEventList->RemoveAll();
  129. HX_DELETE(m_pPostEndTimeEventList);
  130.     }
  131.     return;
  132. }
  133. void 
  134. STREAM_INFO::ResetPreReconnectEventList()
  135. {
  136.     if (m_pPreReconnectEventList)
  137.     {
  138. while (m_pPreReconnectEventList->GetCount() > 0)
  139. {
  140.     UINT32* pPacketTime = (UINT32*)m_pPreReconnectEventList->RemoveHead();
  141.     HX_DELETE (pPacketTime);
  142. }
  143. HX_DELETE(m_pPreReconnectEventList);
  144.     }
  145.     return;
  146. }
  147. void 
  148. STREAM_INFO::ResetPosReconnectEventList()
  149. {
  150.     if (m_pPosReconnectEventList)
  151.     {
  152. while (m_pPosReconnectEventList->GetNumEvents() > 0)
  153. {
  154.     CHXEvent* pEvent = m_pPosReconnectEventList->RemoveHead();
  155.     HX_DELETE (pEvent);
  156. }
  157. HX_DELETE(m_pPosReconnectEventList);
  158.     }
  159.     return;
  160. }
  161. void STREAM_INFO::UpdateStartTimes(UINT32 ulStartTime)
  162. {
  163.     LISTPOSITION position = m_EventList.GetHeadPosition();
  164.     ULONG32 ulMinPrerollInMs = m_bufferingState.GetMinPrerollInMs();
  165.     while (position != NULL)
  166.     {
  167. CHXEvent* theEvent      = m_EventList.GetNext(position);
  168. IHXPacket* pPacket      = theEvent->GetPacket();
  169. UINT32 ulPacketTime = pPacket->GetTime();
  170. UINT32 ulEventStartTime = 0;
  171. if (ulStartTime < ulPacketTime) 
  172. {
  173.     ulPacketTime -= ulStartTime; 
  174. }
  175. else
  176. {
  177.     ulPacketTime = 0;
  178. }
  179. if (ulPacketTime > ulMinPrerollInMs)
  180. {
  181.     ulEventStartTime = ulPacketTime - ulMinPrerollInMs;
  182. }
  183. theEvent->SetTimeStartPos(ulEventStartTime);
  184.     }
  185. }
  186. /*
  187.  * RTSP_STREAM_INFO
  188.  */
  189. RTSP_STREAM_INFO::RTSP_STREAM_INFO()
  190. {
  191.     m_ulClipBandwidth  = 0;
  192.     m_uStreamNumber = 0;
  193. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)
  194.     m_pStreamStats = 0;
  195. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  196. }
  197. RTSP_STREAM_INFO::~RTSP_STREAM_INFO()
  198. {
  199. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)
  200.     HX_DELETE(m_pStreamStats);
  201. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  202. }