summaryrefslogtreecommitdiff
path: root/src/wx/timecode.cc
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/wx/timecode.cc
parent2cdecbe2b56233b009f6edfa13033c6ec9d198bf (diff)
Add timecode methods to Time
Diffstat (limited to 'src/wx/timecode.cc')
-rw-r--r--src/wx/timecode.cc18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index 1ab4b590b..86e1997e9 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -85,24 +85,18 @@ Timecode::Timecode (wxWindow* parent)
void
Timecode::set (DCPTime t, int fps)
{
- /* Do this calculation with frames so that we can round
- to a frame boundary at the start rather than the end.
- */
- int64_t f = rint (t.seconds() * fps);
-
- int const h = f / (3600 * fps);
- f -= h * 3600 * fps;
- int const m = f / (60 * fps);
- f -= m * 60 * fps;
- int const s = f / fps;
- f -= s * fps;
+ int h;
+ int m;
+ int s;
+ int f;
+ t.split (fps, h, m, s, f);
checked_set (_hours, lexical_cast<string> (h));
checked_set (_minutes, lexical_cast<string> (m));
checked_set (_seconds, lexical_cast<string> (s));
checked_set (_frames, lexical_cast<string> (f));
- _fixed->SetLabel (wxString::Format ("%02d:%02d:%02d.%02" wxLongLongFmtSpec "d", h, m, s, f));
+ _fixed->SetLabel (std_to_wx (t.timecode (fps)));
}
DCPTime