Yet more static build fixes.
[libsub.git] / src / time_pair.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "time_pair.h"
21
22 using std::ostream;
23 using namespace sub;
24
25 FrameTime
26 TimePair::frame (float frames_per_second) const
27 {
28         if (_frame) {
29                 return _frame.get ();
30         }
31
32         MetricTime const m = _metric.get ();
33         return FrameTime (m.hours(), m.minutes(), m.seconds(), m.milliseconds() * frames_per_second / 1000);
34 }
35
36 MetricTime
37 TimePair::metric (float frames_per_second) const
38 {
39         if (_metric) {
40                 return _metric.get ();
41         }
42
43         FrameTime const f = _frame.get ();
44         return MetricTime (f.hours(), f.minutes(), f.seconds(), f.frames() * 1000 / frames_per_second);
45 }
46
47 bool
48 TimePair::operator== (TimePair const & other) const
49 {
50         if (_metric && other._metric) {
51                 return _metric.get() == other._metric.get();
52         } else if (_frame && other._frame) {
53                 return _frame.get() == other._frame.get();
54         }
55
56         return false;
57 }
58
59 ostream &
60 sub::operator<< (ostream& s, TimePair const & t)
61 {
62         if (t.frame ()) {
63                 s << "[FRAME] " << t.frame().get();
64         } else {
65                 s << "[METRIC]" << t.metric().get();
66         }
67
68         return s;
69 }