Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / dcpomatic_time.cc
1 /*
2     Copyright (C) 2014-2016 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 #include <inttypes.h>
23
24 using std::string;
25 using namespace dcpomatic;
26
27 template <>
28 Time<ContentTimeDifferentiator, DCPTimeDifferentiator>::Time (DCPTime d, FrameRateChange f)
29         : _t (llrint (d.get() * f.speed_up))
30 {
31
32 }
33
34 template <>
35 Time<DCPTimeDifferentiator, ContentTimeDifferentiator>::Time (ContentTime d, FrameRateChange f)
36         : _t (llrint (d.get() / f.speed_up))
37 {
38
39 }
40
41 DCPTime
42 dcpomatic::min (DCPTime a, DCPTime b)
43 {
44         if (a < b) {
45                 return a;
46         }
47
48         return b;
49 }
50
51 DCPTime
52 dcpomatic::max (DCPTime a, DCPTime b)
53 {
54         if (a > b) {
55                 return a;
56         }
57
58         return b;
59 }
60
61 ContentTime
62 dcpomatic::min (ContentTime a, ContentTime b)
63 {
64         if (a < b) {
65                 return a;
66         }
67
68         return b;
69 }
70
71 ContentTime
72 dcpomatic::max (ContentTime a, ContentTime b)
73 {
74         if (a > b) {
75                 return a;
76         }
77
78         return b;
79 }
80
81 string
82 dcpomatic::to_string (ContentTime t)
83 {
84         char buffer[64];
85 #ifdef DCPOMATIC_WINDOWS
86         __mingw_snprintf (buffer, sizeof(buffer), "[CONT %" PRId64 " %fs]", t.get(), t.seconds());
87 #else
88         snprintf (buffer, sizeof(buffer), "[CONT %" PRId64 " %fs]", t.get(), t.seconds());
89 #endif
90         return buffer;
91 }
92
93 string
94 dcpomatic::to_string (DCPTime t)
95 {
96         char buffer[64];
97 #ifdef DCPOMATIC_WINDOWS
98         __mingw_snprintf (buffer, sizeof(buffer), "[DCP %" PRId64 " %fs]", t.get(), t.seconds());
99 #else
100         snprintf (buffer, sizeof(buffer), "[DCP %" PRId64 " %fs]", t.get(), t.seconds());
101 #endif
102         return buffer;
103 }
104
105 string
106 dcpomatic::to_string (DCPTimePeriod p)
107 {
108         char buffer[64];
109 #ifdef DCPOMATIC_WINDOWS
110         __mingw_snprintf (buffer, sizeof(buffer), "[DCP %" PRId64 " %fs -> %" PRId64 " %fs]", p.from.get(), p.from.seconds(), p.to.get(), p.to.seconds());
111 #else
112         snprintf (buffer, sizeof(buffer), "[DCP %" PRId64 " %fs -> %" PRId64 " %fs]", p.from.get(), p.from.seconds(), p.to.get(), p.to.seconds());
113 #endif
114         return buffer;
115 }