Yet more static build fixes.
[libsub.git] / src / frame_time.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 "frame_time.h"
21 #include "compose.hpp"
22 #include <iostream>
23
24 using std::ostream;
25 using std::string;
26 using namespace sub;
27
28 bool
29 sub::operator== (FrameTime const & a, FrameTime const & b)
30 {
31         return a._hours == b._hours && a._minutes == b._minutes && a._seconds == b._seconds && a._frames == b._frames;
32 }
33
34 bool
35 sub::operator< (FrameTime const & a, FrameTime const & b)
36 {
37         if (a._hours != b._hours) {
38                 return a._hours < b._hours;
39         }
40
41         if (a._minutes != b._minutes) {
42                 return a._minutes < b._minutes;
43         }
44
45         if (a._seconds != b._seconds) {
46                 return a._seconds < b._seconds;
47         }
48
49         return a._frames < b._frames;
50 }
51
52 ostream&
53 sub::operator<< (ostream& s, FrameTime const & t)
54 {
55         s << t._hours << ":" << t._minutes << ":" << t._seconds << ":" << t._frames;
56         return s;
57 }
58
59 string
60 FrameTime::timecode () const
61 {
62         return String::compose ("%1:%2:%3:%4", _hours, _minutes, _seconds, _frames);
63 }