tconverter_fxp.cpp
上传用户: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. /*****************************************************************************
  36.  *  Includes
  37.  */
  38. #include "tconverter_fxp.h"
  39. /*****************************************************************************
  40.  *  CHXTimestampConverterFXP Class
  41.  */
  42. /*****************************************************************************
  43.  *  ReInit
  44.  * if CvtType == FACTORS, ulVal1 is HXA Factor, ulVal2 is RTP Factor
  45.  * if CvtType == SAMPLES, ulVal1 is Sample Rate
  46.  */
  47. void CHXTimestampConverterFXP::ReInit(ConversionType cvtType,
  48.      UINT32 ulVal1, 
  49.      UINT32 ulVal2)
  50. {
  51.     if (cvtType == FACTORS)
  52.     {
  53. m_hxaTime.ulBase = ulVal1; // HXFactor
  54. m_rtpTime.ulBase = ulVal2; // RTPFactor  
  55.     }
  56.     else
  57.     {
  58. m_hxaTime.ulBase = 1000; // HXFactor = 1000 samples/sec
  59. m_rtpTime.ulBase = ulVal1; // RTPFactor
  60.     }
  61.     
  62.     m_hxaTime.lQ = 0;
  63.     m_hxaTime.lR = 0;
  64.     m_hxaTime.ulRef = 0;
  65.     m_hxaTime.ulAnchor = 0;
  66.     m_hxaTime.ulHalfBase = m_hxaTime.ulBase / 2;
  67.     
  68.     m_rtpTime.lQ = 0;
  69.     m_rtpTime.lR = 0;
  70.     m_rtpTime.ulRef = 0;
  71.     m_rtpTime.ulAnchor = 0;
  72.     m_rtpTime.ulHalfBase = m_rtpTime.ulBase / 2;
  73. }
  74. /*****************************************************************************
  75.  *  timeConvert
  76.  */
  77. ULONG32 CHXTimestampConverterFXP::timeConvert(ULONG32 ulT1, 
  78.       TimeCoordinate& T1, 
  79.       TimeCoordinate& T2)
  80. {
  81.     LONG32 lSamples;
  82.     LONG32 ldQ;
  83.     LONG32 ldR;
  84.     // Compute the change in samples (+ or -)
  85.     lSamples = ulT1 - T1.ulRef;
  86.     T1.ulRef = ulT1;
  87.     // Compute the Quant in Common Base (+ or -) 
  88.     // and remainder in samples (always +)
  89.     T1.lR += lSamples; // Could become - at this moment
  90.     
  91.     ldQ = ((LONG32) (T1.lR - T1.ulBase)) / ((LONG32) T1.ulBase);
  92.     ldR = ldQ * ((LONG32) T1.ulBase);
  93.     T1.lR -= ldR; // Always yields +
  94.     T1.lQ += ldQ; // + or -
  95.     // Convert the number of samples accumulate from anchor point to 
  96.     // other timebase
  97.     return ((ULONG32) (T2.ulAnchor +
  98.        (T1.lQ * T2.ulBase) + 
  99.        (T1.lR * T2.ulBase + T1.ulHalfBase) / T1.ulBase));
  100. }
  101. /*****************************************************************************
  102.  *  setAnchor
  103.  */
  104. void CHXTimestampConverterFXP::setHXAnchor(UINT32 ulHXAnchor)
  105. {
  106.     m_hxaTime.ulRef = m_hxaTime.ulAnchor = ulHXAnchor;
  107.     m_rtpTime.ulRef = m_rtpTime.ulAnchor = timeConvertRaw(ulHXAnchor, m_hxaTime, m_rtpTime);
  108.     m_rtpTime.lQ = m_rtpTime.lR = 0;
  109.     m_hxaTime.lQ = m_hxaTime.lR = 0;
  110. }
  111. void CHXTimestampConverterFXP::setRTPAnchor(UINT32 ulRTPAnchor)
  112. {
  113.     m_rtpTime.ulRef = m_rtpTime.ulAnchor = ulRTPAnchor;
  114.     m_hxaTime.ulRef = m_hxaTime.ulAnchor = timeConvertRaw(ulRTPAnchor, m_rtpTime, m_hxaTime);
  115.     m_rtpTime.lQ = m_rtpTime.lR = 0;
  116.     m_hxaTime.lQ = m_hxaTime.lR = 0;
  117. }
  118. void CHXTimestampConverterFXP::setAnchor(UINT32 ulHXAnchor, UINT32 ulRTPAnchor)
  119. {
  120.     m_hxaTime.ulRef = m_hxaTime.ulAnchor = ulHXAnchor;
  121.     m_rtpTime.ulRef = m_rtpTime.ulAnchor = ulRTPAnchor;
  122.     m_rtpTime.lQ = m_rtpTime.lR = 0;
  123.     m_hxaTime.lQ = m_hxaTime.lR = 0;
  124. }
  125. /*****************************************************************************
  126.  *  assignment
  127.  */
  128. CHXTimestampConverterFXP& CHXTimestampConverterFXP::operator=(const CHXTimestampConverterFXP& lhs)
  129. {
  130.     m_hxaTime = lhs.m_hxaTime;
  131.     m_rtpTime = lhs.m_rtpTime;
  132.     
  133.     return *this;
  134. }