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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: strminfo.cpp,v 1.5.22.1 2004/07/09 02:05:58 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "hxcom.h"
  50. #include "hlxclib/stdio.h"
  51. #include "hxresult.h"
  52. #include "ihxpckts.h"
  53. #include "chxeven.h"
  54. #include "chxelst.h"
  55. #include "strminfo.h"
  56. #include "hxsmbw.h"
  57. #include "hxcomm.h"
  58. #include "hxcore.h"
  59. #include "hxstrm.h"
  60. #include "hxheap.h"
  61. #ifdef _DEBUG
  62. #undef HX_THIS_FILE
  63. static const char HX_THIS_FILE[] = __FILE__;
  64. #endif
  65. /*
  66.  * STREAM_INFO
  67.  */
  68. STREAM_INFO::STREAM_INFO()
  69. {
  70.     m_pHeader = NULL;
  71.     m_bSrcStreamDone = FALSE;
  72.     m_bSrcInfoStreamDone = FALSE;
  73.     m_bSrcStreamFillingDone = FALSE;
  74.     m_bSrcInfoStreamFillingDone = FALSE;
  75.     m_bPacketRequested = FALSE;
  76.     m_bCustomEndTime = FALSE;
  77.     m_unNeeded = 0;
  78.     m_unAvailable = 0;
  79.     m_ulReceived = 0;
  80.     m_ulLost = 0;
  81.     m_pPostEndTimeEventList = NULL;    
  82. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)    
  83.     m_pStats = NULL;
  84. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  85.     m_ulDelay = 0;
  86.     m_pStreamProps = NULL;
  87.     m_uStreamNumber = 0;
  88.     m_ulDuration = 0;
  89.     m_ulTimeBeforeSeek = 0;
  90.     m_ulTimeAfterSeek = 0;
  91.     m_pStream     = NULL;
  92.     m_bCanBeStoppedAnyTime     = FALSE;
  93.     // reconnect stuff
  94.     m_pPreReconnectEventList = NULL;
  95.     m_pPosReconnectEventList = NULL;
  96.     m_bReconnectToBeDone = FALSE;
  97.     m_ulReconnectOverlappedPackets = 0;
  98. };
  99. STREAM_INFO::~STREAM_INFO()
  100. {
  101.     ResetPostEndTimeEventList();
  102.     ResetPreReconnectEventList();
  103.     ResetPosReconnectEventList();
  104.     if (m_pStreamProps)
  105.     {
  106. m_pStreamProps->Release();
  107. m_pStreamProps = 0;
  108.     }
  109.     if (m_pHeader)
  110.     {
  111. m_pHeader->Release();
  112. m_pHeader = 0;
  113.     }
  114.     HX_RELEASE(m_pStream);
  115.     /* Reason we do not delete m_pStats here is because
  116.      * in FileSource we create/delete it while in NetSource
  117.      * case, Protocol creates/deletes it
  118.      */
  119.     /*
  120.     if (m_pStats)
  121.     {
  122. delete m_pStats;
  123. m_pStats = 0;
  124.     }
  125.     */
  126.     while (m_EventList.GetNumEvents() > 0)
  127.     {
  128. CHXEvent* pEvent = m_EventList.RemoveHead();
  129. HX_DELETE (pEvent);
  130.     }   
  131. };
  132. void
  133. STREAM_INFO::ResetPostEndTimeEventList()
  134. {
  135.     if (m_pPostEndTimeEventList)
  136.     {
  137. while (m_pPostEndTimeEventList->GetNumEvents() != 0)
  138. {
  139.     CHXEvent*  pEvent = (CHXEvent*)m_pPostEndTimeEventList->RemoveHead();
  140.     HX_DELETE(pEvent);
  141. }
  142. m_pPostEndTimeEventList->RemoveAll();
  143. HX_DELETE(m_pPostEndTimeEventList);
  144.     }
  145.     return;
  146. }
  147. void 
  148. STREAM_INFO::ResetPreReconnectEventList()
  149. {
  150.     if (m_pPreReconnectEventList)
  151.     {
  152. while (m_pPreReconnectEventList->GetCount() > 0)
  153. {
  154.     UINT32* pPacketTime = (UINT32*)m_pPreReconnectEventList->RemoveHead();
  155.     HX_DELETE (pPacketTime);
  156. }
  157. HX_DELETE(m_pPreReconnectEventList);
  158.     }
  159.     return;
  160. }
  161. void 
  162. STREAM_INFO::ResetPosReconnectEventList()
  163. {
  164.     if (m_pPosReconnectEventList)
  165.     {
  166. while (m_pPosReconnectEventList->GetNumEvents() > 0)
  167. {
  168.     CHXEvent* pEvent = m_pPosReconnectEventList->RemoveHead();
  169.     HX_DELETE (pEvent);
  170. }
  171. HX_DELETE(m_pPosReconnectEventList);
  172.     }
  173.     return;
  174. }
  175. void STREAM_INFO::UpdateStartTimes(UINT32 ulStartTime)
  176. {
  177.     LISTPOSITION position = m_EventList.GetHeadPosition();
  178.     ULONG32 ulMinPrerollInMs = m_bufferingState.GetMinPrerollInMs();
  179.     while (position != NULL)
  180.     {
  181. CHXEvent* theEvent      = m_EventList.GetNext(position);
  182. IHXPacket* pPacket      = theEvent->GetPacket();
  183. UINT32 ulPacketTime = pPacket->GetTime();
  184. UINT32 ulEventStartTime = 0;
  185. if (ulStartTime < ulPacketTime) 
  186. {
  187.     ulPacketTime -= ulStartTime; 
  188. }
  189. else
  190. {
  191.     ulPacketTime = 0;
  192. }
  193. if (ulPacketTime > ulMinPrerollInMs)
  194. {
  195.     ulEventStartTime = ulPacketTime - ulMinPrerollInMs;
  196. }
  197. theEvent->SetTimeStartPos(ulEventStartTime);
  198.     }
  199. }
  200. /*
  201.  * RTSP_STREAM_INFO
  202.  */
  203. RTSP_STREAM_INFO::RTSP_STREAM_INFO()
  204. {
  205.     m_ulClipBandwidth  = 0;
  206.     m_uStreamNumber = 0;
  207. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)
  208.     m_pStreamStats = 0;
  209. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  210. }
  211. RTSP_STREAM_INFO::~RTSP_STREAM_INFO()
  212. {
  213. #if defined(HELIX_FEATURE_STATS) && defined(HELIX_FEATURE_REGISTRY)
  214.     HX_DELETE(m_pStreamStats);
  215. #endif /* HELIX_FEATURE_STATS && HELIX_FEATURE_REGISTRY */
  216. }