No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / lib / dcpomatic_time.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "dcpomatic_time.h"
22
23 using std::ostream;
24
25 template <>
26 Time<ContentTimeDifferentiator, DCPTimeDifferentiator>::Time (DCPTime d, FrameRateChange f)
27         : _t (llrint (d.get() * f.speed_up))
28 {
29
30 }
31
32 template <>
33 Time<DCPTimeDifferentiator, ContentTimeDifferentiator>::Time (ContentTime d, FrameRateChange f)
34         : _t (llrint (d.get() / f.speed_up))
35 {
36
37 }
38
39 DCPTime
40 min (DCPTime a, DCPTime b)
41 {
42         if (a < b) {
43                 return a;
44         }
45
46         return b;
47 }
48
49 DCPTime
50 max (DCPTime a, DCPTime b)
51 {
52         if (a > b) {
53                 return a;
54         }
55
56         return b;
57 }
58
59 ContentTime
60 min (ContentTime a, ContentTime b)
61 {
62         if (a < b) {
63                 return a;
64         }
65
66         return b;
67 }
68
69 ContentTime
70 max (ContentTime a, ContentTime b)
71 {
72         if (a > b) {
73                 return a;
74         }
75
76         return b;
77 }
78
79 ostream &
80 operator<< (ostream& s, ContentTime t)
81 {
82         s << "[CONT " << t.get() << " " << t.seconds() << "s]";
83         return s;
84 }
85
86 ostream &
87 operator<< (ostream& s, DCPTime t)
88 {
89         s << "[DCP " << t.get() << " " << t.seconds() << "s]";
90         return s;
91 }
92
93 ostream &
94 operator<< (ostream& s, DCPTimePeriod p)
95 {
96         s << "[DCP " << p.from.get() << " " << p.from.seconds() << "s -> " << p.to.get() << " " << p.to.seconds() << "s]";
97         return s;
98 }