Store video frame rate in XML (#883).
[dcpomatic.git] / src / lib / types.h
1 /*
2     Copyright (C) 2013-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 #ifndef DCPOMATIC_TYPES_H
22 #define DCPOMATIC_TYPES_H
23
24 #include "position.h"
25 #include "rect.h"
26 #include <dcp/util.h>
27 #include <boost/shared_ptr.hpp>
28 #include <vector>
29 #include <stdint.h>
30
31 class Content;
32 class VideoContent;
33 class AudioContent;
34 class SubtitleContent;
35 class FFmpegContent;
36
37 namespace cxml {
38         class Node;
39 }
40
41 namespace xmlpp {
42         class Node;
43 }
44
45 /** The version number of the protocol used to communicate
46  *  with servers.  Intended to be bumped when incompatibilities
47  *  are introduced.  v2 uses 64+n
48  */
49 #define SERVER_LINK_VERSION (64+0)
50
51 /** A film of F seconds at f FPS will be Ff frames;
52     Consider some delta FPS d, so if we run the same
53     film at (f + d) FPS it will last F(f + d) seconds.
54
55     Hence the difference in length over the length of the film will
56     be F(f + d) - Ff frames
57     = Ff + Fd - Ff frames
58     = Fd frames
59     = Fd/f seconds
60
61     So if we accept a difference of 1 frame, ie 1/f seconds, we can
62     say that
63
64     1/f = Fd/f
65     ie 1 = Fd
66     ie d = 1/F
67
68     So for a 3hr film, ie F = 3 * 60 * 60 = 10800, the acceptable
69     FPS error is 1/F ~= 0.0001 ~= 1e-4
70 */
71 #define VIDEO_FRAME_RATE_EPSILON (1e-4)
72
73 typedef std::vector<boost::shared_ptr<Content> > ContentList;
74 typedef std::vector<boost::shared_ptr<FFmpegContent> > FFmpegContentList;
75
76 typedef int64_t Frame;
77
78 enum VideoFrameType
79 {
80         VIDEO_FRAME_TYPE_2D,
81         VIDEO_FRAME_TYPE_3D_LEFT_RIGHT,
82         VIDEO_FRAME_TYPE_3D_TOP_BOTTOM,
83         VIDEO_FRAME_TYPE_3D_ALTERNATE,
84         /** This content is all the left frames of some 3D */
85         VIDEO_FRAME_TYPE_3D_LEFT,
86         /** This content is all the right frames of some 3D */
87         VIDEO_FRAME_TYPE_3D_RIGHT
88 };
89
90 enum Eyes
91 {
92         EYES_BOTH,
93         EYES_LEFT,
94         EYES_RIGHT,
95         EYES_COUNT
96 };
97
98 enum Part
99 {
100         PART_LEFT_HALF,
101         PART_RIGHT_HALF,
102         PART_TOP_HALF,
103         PART_BOTTOM_HALF,
104         PART_WHOLE
105 };
106
107 enum ReelType
108 {
109         REELTYPE_SINGLE,
110         REELTYPE_BY_VIDEO_CONTENT,
111         REELTYPE_BY_LENGTH
112 };
113
114 /** @struct Crop
115  *  @brief A description of the crop of an image or video.
116  */
117 struct Crop
118 {
119         Crop () : left (0), right (0), top (0), bottom (0) {}
120         Crop (int l, int r, int t, int b) : left (l), right (r), top (t), bottom (b) {}
121         Crop (boost::shared_ptr<cxml::Node>);
122
123         /** Number of pixels to remove from the left-hand side */
124         int left;
125         /** Number of pixels to remove from the right-hand side */
126         int right;
127         /** Number of pixels to remove from the top */
128         int top;
129         /** Number of pixels to remove from the bottom */
130         int bottom;
131
132         dcp::Size apply (dcp::Size s, int minimum = 4) const {
133                 s.width -= left + right;
134                 s.height -= top + bottom;
135
136                 if (s.width < minimum) {
137                         s.width = minimum;
138                 }
139
140                 if (s.height < minimum) {
141                         s.height = minimum;
142                 }
143
144                 return s;
145         }
146
147         void as_xml (xmlpp::Node *) const;
148 };
149
150 struct CPLSummary
151 {
152         CPLSummary (std::string d, std::string i, std::string a, boost::filesystem::path f)
153                 : dcp_directory (d)
154                 , cpl_id (i)
155                 , cpl_annotation_text (a)
156                 , cpl_file (f)
157         {}
158
159         std::string dcp_directory;
160         std::string cpl_id;
161         std::string cpl_annotation_text;
162         boost::filesystem::path cpl_file;
163 };
164
165 extern bool operator== (Crop const & a, Crop const & b);
166 extern bool operator!= (Crop const & a, Crop const & b);
167
168 enum Resolution {
169         RESOLUTION_2K,
170         RESOLUTION_4K
171 };
172
173 std::string resolution_to_string (Resolution);
174 Resolution string_to_resolution (std::string);
175
176 enum Protocol {
177         PROTOCOL_SCP,
178         PROTOCOL_FTP
179 };
180
181 #endif