tconverter.h
上传用户: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. #ifndef _TCONVERTER_H_
  36. #define _TCONVERTER_H_
  37. #ifdef HELIX_FEATURE_FLP_T_CONVERTER
  38. #include "../tconverter/flpoint/tconverter_flp.h"
  39. #define CHXTimestampConverter_IMPLEMENTER_CLASS CHXTimestampConverterFLP
  40. #else // TCONVERTER_FIXEDPOINT
  41. #include "../tconverter/fxpoint/tconverter_fxp.h"
  42. #define CHXTimestampConverter_IMPLEMENTER_CLASS CHXTimestampConverterFXP
  43. #endif // TCONVERTER_FIXEDPOINT
  44. class CHXTimestampConverter
  45. {
  46. public:
  47.     /* will use only one of conversion types */
  48.     typedef enum
  49.     {
  50. FACTORS = CHXTimestampConverter_IMPLEMENTER_CLASS::FACTORS,
  51. SAMPLES = CHXTimestampConverter_IMPLEMENTER_CLASS::SAMPLES
  52.     } ConversionType;
  53.     typedef CHXTimestampConverter_IMPLEMENTER_CLASS::ConversionFactors
  54.     ConversionFactors;
  55.     /*
  56.      * if CvtType == FACTORS, ulVal1 is HXA Factor, ulVal2 is RTP Factor
  57.      * if CvtType == SAMPLES, ulVal1 is Sample Rate
  58.      */
  59.     void ReInit(ConversionType cvtType,
  60. UINT32 ulVal1,
  61. UINT32 ulVal2 = 0)
  62.     {
  63. m_Impl.ReInit((CHXTimestampConverter_IMPLEMENTER_CLASS::ConversionType) cvtType, 
  64.       ulVal1, 
  65.       ulVal2);
  66.     }
  67.     void ReInit(ConversionFactors cvtFactors)
  68.     {
  69. m_Impl.ReInit(cvtFactors);
  70.     }
  71.     /* default constructor */
  72.     CHXTimestampConverter()
  73.     {
  74. ;  // nothing to do
  75.     }
  76.     
  77.     /*
  78.      * if CvtType == FACTORS, ulVal1 is RMA Factor, ulVal2 is RTP Factor
  79.      * if CvtType == SAMPLES, ulVal1 is Sample Rate
  80.      */
  81.     CHXTimestampConverter(ConversionType cvtType,
  82.   UINT32 ulVal1, 
  83.   UINT32 ulVal2 = 0)
  84. : m_Impl((CHXTimestampConverter_IMPLEMENTER_CLASS::ConversionType) cvtType, 
  85.  ulVal1, 
  86.  ulVal2)
  87.     {
  88. ;
  89.     }
  90.     CHXTimestampConverter(ConversionFactors cvtFactors)
  91. : m_Impl(cvtFactors)
  92.     {
  93. ;
  94.     }
  95.     /*
  96.      * assignment
  97.      */
  98.     CHXTimestampConverter& operator=(const CHXTimestampConverter& lhs)
  99.     {
  100. m_Impl = lhs.m_Impl;
  101. return *this;
  102.     }
  103.     
  104.     /*
  105.      * conversions
  106.      */
  107.     UINT32 hxa2rtp(UINT32 ulHxaTS)
  108.     {
  109. return m_Impl.hxa2rtp(ulHxaTS);
  110.     }
  111.     UINT32 rtp2hxa(UINT32 ulRtpTS)
  112.     {
  113. return m_Impl.rtp2hxa(ulRtpTS);
  114.     }
  115.     UINT32 hxa2rtp_raw(UINT32 ulHxaTS)
  116.     {
  117. return m_Impl.hxa2rtp_raw(ulHxaTS);
  118.     }
  119.     UINT32 rtp2hxa_raw(UINT32 ulRtpTS)
  120.     {
  121. return m_Impl.rtp2hxa_raw(ulRtpTS);
  122.     }
  123.     
  124.     /*
  125.      * anchors
  126.      */
  127.     void setHXAnchor(UINT32 ulHXAnchor)
  128.     {
  129. m_Impl.setHXAnchor(ulHXAnchor);
  130.     }
  131.     void setRTPAnchor(UINT32 ulRTPAnchor)
  132.     {
  133. m_Impl.setRTPAnchor(ulRTPAnchor);
  134.     }
  135.     void setAnchor(UINT32 ulHXAnchor, UINT32 ulRTPAnchor)
  136.     {
  137. m_Impl.setAnchor(ulHXAnchor, ulRTPAnchor);
  138.     }
  139.     ULONG32 GetRTPAnchor(void)
  140.     {
  141. return m_Impl.GetRTPAnchor();
  142.     }
  143.     ULONG32 GetHXAnchor(void)
  144.     {
  145. return m_Impl.GetHXAnchor();
  146.     }
  147.     /*
  148.      * factors
  149.      */
  150.     ConversionFactors GetConversionFactors(void)
  151.     {
  152. return m_Impl.GetConversionFactors();
  153.     }
  154. private:
  155.     CHXTimestampConverter_IMPLEMENTER_CLASS m_Impl;
  156. };
  157. #endif /* _TCONVERTER_H_ */