smpte.cpp
Upload User: zhongxx05
Upload Date: 2007-06-06
Package Size: 33641k
Code Size: 7k
Category:

Symbian

Development Platform:

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. #include "hxtypes.h"
  36. //#include "hlxclib/stdio.h"
  37. #include "safestring.h"
  38. #include "hlxclib/stdlib.h"
  39. #include "hxstring.h"
  40. #include "smpte.h"
  41. #include "hxheap.h"
  42. #ifdef _DEBUG
  43. #undef HX_THIS_FILE
  44. static const char HX_THIS_FILE[] = __FILE__;
  45. #endif
  46. const UINT32 MSEC_PER_HOUR = (UINT32)60 * 60 * 1000;
  47. const UINT32 MSEC_PER_MIN  = (UINT32)60 * 1000;
  48. const UINT32 MSEC_PER_SEC  = 1000;
  49. SMPTETimeCode::SMPTETimeCode():
  50.     m_hour(0),
  51.     m_minute(0),
  52.     m_second(0),
  53.     m_frame(0),
  54.     m_mSecs(0),
  55.     m_dropFrame(DROP_FRAME),
  56.     m_framesPerSec(FPS_30)
  57. {
  58. }
  59. SMPTETimeCode::SMPTETimeCode(UINT32 mSec):
  60.     m_mSecs(mSec),
  61.     m_dropFrame(DROP_FRAME),
  62.     m_framesPerSec(FPS_30)
  63. {
  64.     fromMSec();
  65. }
  66. SMPTETimeCode::SMPTETimeCode(int hour, int minute, int second, int frame):
  67.     m_hour(hour),
  68.     m_minute(minute),
  69.     m_second(second),
  70.     m_frame(frame),
  71.     m_dropFrame(DROP_FRAME),
  72.     m_framesPerSec(FPS_30)
  73. {
  74.     toMSec();
  75. }
  76. SMPTETimeCode::SMPTETimeCode(const char* pTimeCodeStr):
  77.     m_dropFrame(DROP_FRAME),
  78.     m_framesPerSec(FPS_30)
  79. {
  80.     fromString(pTimeCodeStr);
  81. }
  82. SMPTETimeCode::SMPTETimeCode(const SMPTETimeCode& lhs)
  83. {
  84.     m_hour = lhs.m_hour;
  85.     m_minute = lhs.m_minute;
  86.     m_second = lhs.m_second;
  87.     m_frame = lhs.m_frame;
  88.     m_dropFrame = lhs.m_dropFrame;
  89.     m_framesPerSec = lhs.m_framesPerSec;
  90.     m_mSecs = lhs.m_mSecs;
  91. }
  92. SMPTETimeCode&
  93. SMPTETimeCode::operator=(const SMPTETimeCode& lhs)
  94. {
  95.     m_hour = lhs.m_hour;
  96.     m_minute = lhs.m_minute;
  97.     m_second = lhs.m_second;
  98.     m_frame = lhs.m_frame;
  99.     m_dropFrame = lhs.m_dropFrame;
  100.     m_framesPerSec = lhs.m_framesPerSec;
  101.     m_mSecs = lhs.m_mSecs;
  102.     return *this;
  103. }
  104. int
  105. SMPTETimeCode::compare(const SMPTETimeCode& lhs) const
  106. {
  107.     return HX_SAFEINT(m_mSecs - lhs.m_mSecs);
  108. }
  109. void
  110. SMPTETimeCode::toMSec()
  111. {
  112.     m_mSecs =   m_hour * MSEC_PER_HOUR
  113.                 + m_minute * MSEC_PER_MIN
  114. + m_second * MSEC_PER_SEC;
  115.     if(m_framesPerSec == FPS_30)
  116.     {
  117. if(m_frame > 29)
  118. {
  119.     m_frame = 0;
  120. }
  121. else
  122. {
  123.     if(m_dropFrame == DROP_FRAME)
  124.     {
  125. // each frame is 33.367 ms (29.97 Hz)
  126. m_mSecs += (int)(((double)m_frame * 33.367) + 0.5);
  127.     }
  128.     else
  129.     {
  130. // each frame is 33.333 ms
  131. m_mSecs += (int)(((double)m_frame * 33.333) + 0.5);
  132.     }
  133. }
  134.     }
  135.     else if(m_framesPerSec == FPS_25)
  136.     {
  137. // each frame is 40ms
  138. if(m_frame > 24)
  139. {
  140.     m_frame = 0;
  141. }
  142. else
  143. {
  144.     m_mSecs += m_frame * 40;
  145. }
  146.     }
  147. }
  148. void
  149. SMPTETimeCode::fromMSec()
  150. {
  151.     int fps = (m_framesPerSec == FPS_30) ? 30: 25;
  152.     UINT32 ttlFrames = (m_mSecs * fps) / 1000;
  153.     m_hour = HX_SAFEINT(ttlFrames / (fps * 60 * 60));
  154.     UINT32 hourRem = ttlFrames - (m_hour * fps * 60 * 60);
  155.     m_minute = HX_SAFEINT(hourRem / (fps * 60));
  156.     UINT32 minRem = hourRem - (m_minute * fps * 60);
  157.     m_second = HX_SAFEINT(minRem / fps);
  158.     UINT32 secRem = minRem - (m_second * fps);
  159.     m_frame = HX_SAFEINT(ttlFrames % fps);
  160. }
  161. const char*
  162. SMPTETimeCode::toString()
  163. {
  164.     char strBuf[12]; /* Flawfinder: ignore */
  165.     SafeSprintf(strBuf, sizeof(strBuf), "%02d:%02d:%02d",
  166.                 m_hour, m_minute, m_second);
  167.     if(m_frame > 0)
  168.         SafeSprintf(&strBuf[8], sizeof(strBuf)-8, ".%02d", m_frame);
  169.     m_asString = strBuf;
  170.     return m_asString;
  171. }
  172. void
  173. SMPTETimeCode::fromString(const char* pTimeCodeString)
  174. {
  175.     // format is [H]H:[M]M:[S]S[.FF]
  176.     m_hour = m_minute = m_second = m_frame = 0;
  177.     char* token = 0;
  178.     if(pTimeCodeString && strlen(pTimeCodeString) > 0)
  179.     {
  180. char *tmpStr = new char[strlen(pTimeCodeString)+1];
  181. strcpy(tmpStr, pTimeCodeString); /* Flawfinder: ignore */
  182. token = strtok(tmpStr, ":");
  183. if(token)
  184. {
  185.     m_hour = HX_SAFEINT(strtol(token, 0, 10));
  186.     token = strtok(NULL, ":");
  187.     if(token)
  188.     {
  189. m_minute = HX_SAFEINT(strtol(token, 0, 10));
  190. token = strtok(NULL, ".");
  191. if(token)
  192. {
  193.     m_second = HX_SAFEINT(strtol(token, 0, 10));
  194.     token = strtok(NULL, " ");
  195.     if(token)
  196.     {
  197. m_frame = HX_SAFEINT(strtol(token, 0, 10));
  198.     }
  199. }
  200.     }
  201. }
  202.     }
  203.     toMSec();
  204.     fromMSec(); // normalize just in case of a badly formatted string
  205. }
  206. SMPTETimeCode::operator UINT32()
  207. {
  208.     return m_mSecs;
  209. }
  210. SMPTETimeCode::operator const char*()
  211. {
  212.     toString();
  213.     return m_asString;
  214. }
  215. SMPTETimeCode&
  216. SMPTETimeCode::operator+=(const SMPTETimeCode& lhs)
  217. {
  218.     // no checking for overflow
  219.     m_mSecs += lhs.m_mSecs;
  220.     fromMSec();
  221.     return *this;
  222. SMPTETimeCode&
  223. SMPTETimeCode::operator-=(const SMPTETimeCode& lhs)
  224. {
  225.     // don't go negative on me...
  226.     if(m_mSecs > lhs.m_mSecs)
  227.     {
  228. m_mSecs -= lhs.m_mSecs;
  229.     }
  230.     else
  231.     {
  232. m_mSecs = 0;
  233.     }
  234.     fromMSec();
  235.     return *this;
  236. }
  237. SMPTETimeCode
  238. SMPTETimeCode::operator+(const SMPTETimeCode& lhs)
  239. {
  240.     SMPTETimeCode tCode = *this;
  241.     tCode += lhs;
  242.     return tCode;
  243. }
  244. SMPTETimeCode
  245. SMPTETimeCode::operator-(const SMPTETimeCode& lhs)
  246. {
  247.     SMPTETimeCode tCode = *this;
  248.     tCode -= lhs;
  249.     return tCode;
  250. }