summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-06-20 11:55:46 +0100
committerCarl Hetherington <cth@carlh.net>2014-06-20 11:55:46 +0100
commit194615b5f673214b1e4fc4211364f95eeb96af15 (patch)
treeebdeee342e6a428dbe4657307c9e1ca39bf95895 /src/lib
parent2cdecbe2b56233b009f6edfa13033c6ec9d198bf (diff)
Add timecode methods to Time
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcpomatic_time.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/lib/dcpomatic_time.h b/src/lib/dcpomatic_time.h
index 142104073..4afc9ab40 100644
--- a/src/lib/dcpomatic_time.h
+++ b/src/lib/dcpomatic_time.h
@@ -22,6 +22,8 @@
#include <cmath>
#include <ostream>
+#include <sstream>
+#include <iomanip>
#include <stdint.h>
#include "frame_rate_change.h"
@@ -56,6 +58,42 @@ public:
return rint (_t * r / HZ);
}
+ template <typename T>
+ void split (T r, int& h, int& m, int& s, int& f) const
+ {
+ /* Do this calculation with frames so that we can round
+ to a frame boundary at the start rather than the end.
+ */
+ int64_t ff = frames (r);
+
+ h = ff / (3600 * r);
+ ff -= h * 3600 * r;
+ m = ff / (60 * r);
+ ff -= m * 60 * r;
+ s = ff / r;
+ ff -= s * r;
+
+ f = static_cast<int> (ff);
+ }
+
+ template <typename T>
+ std::string timecode (T r) const {
+ int h;
+ int m;
+ int s;
+ int f;
+ split (r, h, m, s, f);
+
+ std::ostringstream o;
+ o.width (2);
+ o.fill ('0');
+ o << std::setw(2) << std::setfill('0') << h << ":"
+ << std::setw(2) << std::setfill('0') << m << ":"
+ << std::setw(2) << std::setfill('0') << s << ":"
+ << std::setw(2) << std::setfill('0') << f;
+ return o.str ();
+ }
+
protected:
friend class dcptime_round_up_test;