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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rtpclsnc.h,v 1.2.36.1 2004/07/09 02:04:29 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. #ifndef _RTPCLSNC_H_
  50. #define _RTPCLSNC_H_
  51. /****************************************************************************
  52.  *  Defines
  53.  */
  54. #define RTPCL_ACCEPTABLE_SYNC_NOISE 3   // in ms
  55. /****************************************************************************
  56.  *  Includes
  57.  */
  58. #include "hxtypes.h"
  59. #include "hxassert.h"
  60. #include "ntptime.h"
  61. #include "tconverter.h"
  62. typedef _INTERFACE IHXTransportSyncServer  IHXTransportSyncServer;
  63. /****************************************************************************
  64.  *  CRTPClientStreamSync
  65.  */
  66. class CRTPClientStreamSync
  67. {
  68. public:
  69.     /*
  70.      * Costructor/Destructor
  71.      */
  72.     CRTPClientStreamSync(void);
  73.     ~CRTPClientStreamSync(); 
  74.     /*
  75.      * Main Methods
  76.      */
  77.     HX_RESULT Init(ULONG32 ulHXAFactor,
  78.    ULONG32 ulRTPFactor,
  79.    IHXTransportSyncServer* pSyncServer = NULL,
  80.    BOOL bIsSyncMaster = FALSE,
  81.    ULONG32 ulAcceptableSyncNoise = 
  82. RTPCL_ACCEPTABLE_SYNC_NOISE);
  83.     HX_RESULT Init(CHXTimestampConverter* pTSConverter,
  84.    IHXTransportSyncServer* pSyncServer = NULL,
  85.    BOOL bIsSyncMaster = FALSE,
  86.    ULONG32 ulAcceptableSyncNoise = 
  87. RTPCL_ACCEPTABLE_SYNC_NOISE);
  88.     
  89.     void Reset(void);
  90.     void Close(void);
  91.     HX_RESULT SetStartTime(ULONG32 ulRefHXStartTime,
  92.    BOOL bAsSecondaryRecipient = FALSE);
  93.     HX_RESULT SetStartSync(ULONG32 ulRTPTime,
  94.    ULONG32 ulHXTime,
  95.    BOOL bIsNominalHXTime = FALSE,
  96.    ULONG32 ulRefHXStartTime = 0);
  97.     HX_RESULT HandleMasterSync(ULONG32 ulHXTime, LONG32 lHXOffsetToMaster);
  98.     HX_RESULT AnchorSync(ULONG32 ulHXTime, ULONG32 ulNTPHXTime);
  99.     HX_RESULT HandleRTCPSync(NTPTime ntpTime, ULONG32 ulRTPTime);
  100.     ULONG32 RTP2SyncRTP(ULONG32 ulRTPTime)
  101.     {
  102. return (ulRTPTime +
  103. m_lSyncOffsetRTP +
  104. m_lOffsetToMasterRTP - 
  105. m_lTimeOffsetRTP);
  106.     }
  107.     ULONG32 RTP2SyncHX(ULONG32 ulRTPTime)
  108.     {
  109. ULONG32 ulHXTime = ulRTPTime;
  110. if (m_pTSConverter)
  111. {
  112.     ulHXTime = m_pTSConverter->rtp2hxa(ulRTPTime);
  113. }
  114. ulHXTime += (m_lSyncOffsetHX + 
  115.       m_lOffsetToMasterHX - 
  116.       m_lTimeOffsetHX);
  117. return ulHXTime;
  118.     }
  119.     BOOL IsSyncMaster(void) { return m_bIsSyncMaster; }
  120.     BOOL IsStartSyncSet(void)   { return m_bStartSyncSet; }
  121.     BOOL IsStronglySynced(void) { return m_bIsStronglySynced; }
  122.     LONG32 GetSyncOffsetRTP(void)   { return m_lSyncOffsetRTP; }
  123.     LONG32 GetSyncOffsetHX(void)   { return m_lSyncOffsetHX; }
  124. private:
  125.     void ReleaseTSConverter(void);
  126.     CHXTimestampConverter* m_pTSConverter;
  127.     BOOL m_bIsImportedTSConverter;
  128.     BOOL m_bIsSyncMaster;
  129.     BOOL m_bStartSyncSet;
  130.     BOOL m_bIsStronglySynced;
  131.     BOOL m_bNTPtoHXOffsetSet;
  132.     LONG32 m_lNTPtoHXOffset;
  133.     LONG32 m_lTimeOffsetRTP;
  134.     LONG32 m_lTimeOffsetHX;
  135.     LONG32 m_lSyncOffsetRTP;
  136.     LONG32 m_lSyncOffsetHX;
  137.     LONG32 m_lOffsetToMasterRTP;
  138.     LONG32 m_lOffsetToMasterHX;
  139.     BOOL m_bStartTimeSet;
  140.     ULONG32 m_ulStartTime;
  141.     ULONG32 m_ulAcceptableSyncNoise;
  142.     IHXTransportSyncServer* m_pSyncServer;
  143. };
  144. #endif // _CPACEMKR_H_