Rename TYPE_DEBUG_PLAYER to TYPE_DEBUG_VIDEO_VIEW.
[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 TextContent;
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  *  64 - first version used
50  *  65 - v2.16.0 - checksums added to communication
51  */
52 #define SERVER_LINK_VERSION (64+1)
53
54 /** A film of F seconds at f FPS will be Ff frames;
55     Consider some delta FPS d, so if we run the same
56     film at (f + d) FPS it will last F(f + d) seconds.
57
58     Hence the difference in length over the length of the film will
59     be F(f + d) - Ff frames
60     = Ff + Fd - Ff frames
61     = Fd frames
62     = Fd/f seconds
63
64     So if we accept a difference of 1 frame, ie 1/f seconds, we can
65     say that
66
67     1/f = Fd/f
68     ie 1 = Fd
69     ie d = 1/F
70
71     So for a 3hr film, ie F = 3 * 60 * 60 = 10800, the acceptable
72     FPS error is 1/F ~= 0.0001 ~= 1e-4
73 */
74 #define VIDEO_FRAME_RATE_EPSILON (1e-4)
75
76 /** Port on which EncodeServer listens for frame encoding requests */
77 #define ENCODE_FRAME_PORT (Config::instance()->server_port_base())
78 /** Port on which EncodeServer listens for DCPOMATIC_HELLO from masters */
79 #define HELLO_PORT (Config::instance()->server_port_base()+1)
80 /** Port on which EncodeServerFinder in the main DCP-o-matic listens for replies to DCPOMATIC_HELLO from servers */
81 #define MAIN_SERVER_PRESENCE_PORT (Config::instance()->server_port_base()+2)
82 /** Port on which EncodeServerFinder in the batch converter listens for replies to DCPOMATIC_HELLO from servers */
83 #define BATCH_SERVER_PRESENCE_PORT (Config::instance()->server_port_base()+3)
84 /** Port on which batch converter listens for job requests */
85 #define BATCH_JOB_PORT (Config::instance()->server_port_base()+4)
86 /** Port on which player listens for play requests */
87 #define PLAYER_PLAY_PORT (Config::instance()->server_port_base()+5)
88
89 typedef std::vector<boost::shared_ptr<Content> > ContentList;
90 typedef std::vector<boost::shared_ptr<FFmpegContent> > FFmpegContentList;
91
92 typedef int64_t Frame;
93
94 enum VideoFrameType
95 {
96         VIDEO_FRAME_TYPE_2D,
97         /** `True' 3D content, e.g. 3D DCPs */
98         VIDEO_FRAME_TYPE_3D,
99         VIDEO_FRAME_TYPE_3D_LEFT_RIGHT,
100         VIDEO_FRAME_TYPE_3D_TOP_BOTTOM,
101         VIDEO_FRAME_TYPE_3D_ALTERNATE,
102         /** This content is all the left frames of some 3D */
103         VIDEO_FRAME_TYPE_3D_LEFT,
104         /** This content is all the right frames of some 3D */
105         VIDEO_FRAME_TYPE_3D_RIGHT
106 };
107
108 std::string video_frame_type_to_string (VideoFrameType);
109 VideoFrameType string_to_video_frame_type (std::string);
110
111 enum Eyes
112 {
113         EYES_BOTH,
114         EYES_LEFT,
115         EYES_RIGHT,
116         EYES_COUNT
117 };
118
119 enum Part
120 {
121         PART_LEFT_HALF,
122         PART_RIGHT_HALF,
123         PART_TOP_HALF,
124         PART_BOTTOM_HALF,
125         PART_WHOLE
126 };
127
128 enum ReelType
129 {
130         REELTYPE_SINGLE,
131         REELTYPE_BY_VIDEO_CONTENT,
132         REELTYPE_BY_LENGTH
133 };
134
135 enum ChangeType
136 {
137         CHANGE_TYPE_PENDING,
138         CHANGE_TYPE_DONE,
139         CHANGE_TYPE_CANCELLED
140 };
141
142 enum VideoRange
143 {
144         VIDEO_RANGE_FULL, ///< full,  or "JPEG" (0-255 for 8-bit)
145         VIDEO_RANGE_VIDEO ///< video, or "MPEG" (16-235 for 8-bit)
146 };
147
148 /** Type of captions.
149  *
150  *  The generally accepted definitions seem to be:
151  *  - subtitles: text for an audience who doesn't speak the film's language
152  *  - captions:  text for a hearing-impaired audience
153  *  - open:      on-screen
154  *  - closed:    only visible by some audience members
155  *
156  *  At the moment DoM supports open subtitles and closed captions.
157  *
158  *  There is some use of the word `subtitle' in the code which may mean
159  *  caption in some contexts.
160  */
161 enum TextType
162 {
163         TEXT_UNKNOWN,
164         TEXT_OPEN_SUBTITLE,
165         TEXT_CLOSED_CAPTION,
166         TEXT_COUNT
167 };
168
169 extern std::string text_type_to_string (TextType t);
170 extern std::string text_type_to_name (TextType t);
171 extern TextType string_to_text_type (std::string s);
172
173 enum ExportFormat
174 {
175         EXPORT_FORMAT_PRORES,
176         EXPORT_FORMAT_H264_AAC,
177         EXPORT_FORMAT_H264_PCM,
178         EXPORT_FORMAT_SUBTITLES_DCP
179 };
180
181 /** @struct Crop
182  *  @brief A description of the crop of an image or video.
183  */
184 struct Crop
185 {
186         Crop () : left (0), right (0), top (0), bottom (0) {}
187         Crop (int l, int r, int t, int b) : left (l), right (r), top (t), bottom (b) {}
188         explicit Crop (boost::shared_ptr<cxml::Node>);
189
190         /** Number of pixels to remove from the left-hand side */
191         int left;
192         /** Number of pixels to remove from the right-hand side */
193         int right;
194         /** Number of pixels to remove from the top */
195         int top;
196         /** Number of pixels to remove from the bottom */
197         int bottom;
198
199         dcp::Size apply (dcp::Size s, int minimum = 4) const {
200                 s.width -= left + right;
201                 s.height -= top + bottom;
202
203                 if (s.width < minimum) {
204                         s.width = minimum;
205                 }
206
207                 if (s.height < minimum) {
208                         s.height = minimum;
209                 }
210
211                 return s;
212         }
213
214         void as_xml (xmlpp::Node *) const;
215 };
216
217 extern bool operator== (Crop const & a, Crop const & b);
218 extern bool operator!= (Crop const & a, Crop const & b);
219
220 struct CPLSummary
221 {
222         CPLSummary (boost::filesystem::path p);
223
224         CPLSummary (std::string d, std::string i, std::string a, boost::filesystem::path f, bool e, time_t t)
225                 : dcp_directory (d)
226                 , cpl_id (i)
227                 , cpl_annotation_text (a)
228                 , cpl_file (f)
229                 , encrypted (e)
230                 , last_write_time (t)
231         {}
232
233         std::string dcp_directory;
234         std::string cpl_id;
235         std::string cpl_annotation_text;
236         boost::filesystem::path cpl_file;
237         /** true if this CPL has any encrypted assets */
238         bool encrypted;
239         time_t last_write_time;
240 };
241
242 enum Resolution {
243         RESOLUTION_2K,
244         RESOLUTION_4K
245 };
246
247 std::string resolution_to_string (Resolution);
248 Resolution string_to_resolution (std::string);
249
250 enum FileTransferProtocol {
251         FILE_TRANSFER_PROTOCOL_SCP,
252         FILE_TRANSFER_PROTOCOL_FTP
253 };
254
255 enum EmailProtocol {
256         EMAIL_PROTOCOL_AUTO,
257         EMAIL_PROTOCOL_PLAIN,
258         EMAIL_PROTOCOL_STARTTLS,
259         EMAIL_PROTOCOL_SSL
260 };
261
262 #endif