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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: tconverter_fxp.h,v 1.2.36.3 2004/07/09 01:48:09 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 _TCONVERT_FXP_H_
  50. #define _TCONVERT_FXP_H_
  51. /*****************************************************************************
  52.  *  Includes
  53.  */
  54. #include "hxtypes.h"
  55. /*****************************************************************************
  56.  *  CHXTimestampConverterFXP
  57.  */
  58. class CHXTimestampConverterFXP
  59. {
  60. public:
  61.     /* will use only one of conversion types */
  62.     typedef enum
  63.     {
  64. FACTORS,
  65. SAMPLES
  66.     } ConversionType;
  67.     typedef struct
  68.     {
  69. ULONG32 ulBaseHXA;
  70. ULONG32 ulBaseRTP;
  71.     } ConversionFactors;
  72.     
  73.     /*
  74.      * constructors/destructor
  75.      */
  76.     CHXTimestampConverterFXP()
  77.     {
  78. ReInit(FACTORS, 1, 1);
  79.     }
  80.     
  81.     /*
  82.      * if CvtType == FACTORS, ulVal1 is HXA Factor, ulVal2 is RTP Factor
  83.      * if CvtType == SAMPLES, ulVal1 is Sample Rate
  84.      */
  85.     CHXTimestampConverterFXP(ConversionType cvtType,
  86.      UINT32 ulVal1, 
  87.      UINT32 ulVal2 = 0)
  88.     {
  89. ReInit(cvtType, ulVal1, ulVal2);
  90.     }
  91.     CHXTimestampConverterFXP(ConversionFactors convFactors)
  92.     {
  93. ReInit(FACTORS, convFactors.ulBaseHXA, convFactors.ulBaseRTP);
  94.     }
  95.     ~CHXTimestampConverterFXP()
  96.     {
  97. ;
  98.     }
  99.     /*
  100.      * reinit
  101.      */
  102.     /*
  103.      * if CvtType == FACTORS, ulVal1 is HXA Factor, ulVal2 is RTP Factor
  104.      * if CvtType == SAMPLES, ulVal1 is Sample Rate
  105.      */
  106.     void ReInit(ConversionType cvtType, UINT32 ulVal1, UINT32 ulVal2 = 0);
  107.     void ReInit(ConversionFactors cvtFactors)
  108.     {
  109. ReInit(FACTORS, cvtFactors.ulBaseHXA, cvtFactors.ulBaseRTP);
  110.     }
  111.     /*
  112.      * assignment
  113.      */
  114.     CHXTimestampConverterFXP& operator=(const CHXTimestampConverterFXP& lhs);
  115.    
  116.     /*
  117.      * conversions
  118.      */
  119.     UINT32 hxa2rtp(UINT32 ulHxaTS)
  120.     {
  121. return timeConvert(ulHxaTS, m_hxaTime, m_rtpTime);
  122.     }
  123.     UINT32 rtp2hxa(UINT32 ulRtpTS)
  124.     {
  125. return timeConvert(ulRtpTS, m_rtpTime, m_hxaTime);
  126.     }
  127.     UINT32 hxa2rtp_raw(UINT32 ulHxaTS)
  128.     {
  129. return timeConvertRaw(ulHxaTS, m_hxaTime, m_rtpTime);
  130.     }
  131.     UINT32 rtp2hxa_raw(UINT32 ulRtpTS)
  132.     {
  133. return timeConvertRaw(ulRtpTS, m_rtpTime, m_hxaTime);
  134.     }
  135.     
  136.     /*
  137.      * anchors
  138.      */
  139.     void setHXAnchor(UINT32 ulHXAnchor);
  140.     void setRTPAnchor(UINT32 ulRTPAnchor);
  141.     void setAnchor(UINT32 ulHXAnchor, UINT32 ulRTPAnchor);
  142.     ULONG32 GetRTPAnchor(void)
  143.     {
  144. return m_hxaTime.ulAnchor;
  145.     }
  146.     ULONG32 GetHXAnchor(void)
  147.     {
  148. return m_hxaTime.ulAnchor;
  149.     }
  150.     /*
  151.      * factors
  152.      */
  153.     ConversionFactors GetConversionFactors(void)
  154.     {
  155. ConversionFactors convFactors = {m_hxaTime.ulBase, m_rtpTime.ulBase};
  156. return convFactors;
  157.     }
  158. private:
  159.     typedef struct
  160.     {
  161. LONG32 lQ;     // Quant    - In Common Base
  162. LONG32 lR;     // Remainder    - In Native Base
  163. ULONG32 ulRef;     // Reference (Last Time Stamp) - In Native Base
  164. ULONG32 ulAnchor;   // Anchor (Origin value)    - In Native Base
  165. ULONG32 ulBase;     // Native Base    - In Ticks per Common Base
  166. ULONG32 ulHalfBase; // Native Base/2 (for rounding)- In Ticks per Common Base
  167.     } TimeCoordinate;
  168.     ULONG32 timeConvertRaw(ULONG32 ulT1, TimeCoordinate& T1, TimeCoordinate& T2)
  169.     {
  170. return (ulT1 / T1.ulBase) * T2.ulBase + 
  171.         ((ulT1 % T1.ulBase) * T2.ulBase + T1.ulHalfBase) / T1.ulBase;
  172.     }
  173.     ULONG32 timeConvert(ULONG32 ulT1, TimeCoordinate& T1, TimeCoordinate& T2);
  174.     TimeCoordinate m_hxaTime;
  175.     TimeCoordinate m_rtpTime;
  176. };
  177. #endif /* _TCONVERT_FXP_H_ */