Use cxml::ConstNodePtr.
[dcpomatic.git] / src / lib / types.h
1 /*
2     Copyright (C) 2013 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 #ifndef DCPOMATIC_TYPES_H
21 #define DCPOMATIC_TYPES_H
22
23 #include <vector>
24 #include <stdint.h>
25 #include <boost/shared_ptr.hpp>
26 #include <dcp/util.h>
27 #include "dcpomatic_time.h"
28 #include "position.h"
29
30 class Content;
31 class VideoContent;
32 class AudioContent;
33 class SubtitleContent;
34 class FFmpegContent;
35 class AudioBuffers;
36
37 /** The version number of the protocol used to communicate
38  *  with servers.  Intended to be bumped when incompatibilities
39  *  are introduced.
40  */
41 #define SERVER_LINK_VERSION 1
42
43 typedef std::vector<boost::shared_ptr<Content> > ContentList;
44 typedef std::vector<boost::shared_ptr<VideoContent> > VideoContentList;
45 typedef std::vector<boost::shared_ptr<AudioContent> > AudioContentList;
46 typedef std::vector<boost::shared_ptr<SubtitleContent> > SubtitleContentList;
47 typedef std::vector<boost::shared_ptr<FFmpegContent> > FFmpegContentList;
48
49 typedef int64_t VideoFrame;
50 typedef int64_t AudioFrame;
51
52 /* XXX -> DCPAudio */
53 struct TimedAudioBuffers
54 {
55         TimedAudioBuffers ()
56                 : time (0)
57         {}
58         
59         TimedAudioBuffers (boost::shared_ptr<AudioBuffers> a, DCPTime t)
60                 : audio (a)
61                 , time (t)
62         {}
63         
64         boost::shared_ptr<AudioBuffers> audio;
65         DCPTime time;
66 };
67
68 enum VideoFrameType
69 {
70         VIDEO_FRAME_TYPE_2D,
71         VIDEO_FRAME_TYPE_3D_LEFT_RIGHT,
72         VIDEO_FRAME_TYPE_3D_TOP_BOTTOM,
73         VIDEO_FRAME_TYPE_3D_ALTERNATE,
74         /** This content is all the left frames of some 3D */
75         VIDEO_FRAME_TYPE_3D_LEFT,
76         /** This content is all the right frames of some 3D */
77         VIDEO_FRAME_TYPE_3D_RIGHT
78 };
79
80 enum Eyes
81 {
82         EYES_BOTH,
83         EYES_LEFT,
84         EYES_RIGHT,
85         EYES_COUNT
86 };
87
88 /** @struct Crop
89  *  @brief A description of the crop of an image or video.
90  */
91 struct Crop
92 {
93         Crop () : left (0), right (0), top (0), bottom (0) {}
94         Crop (int l, int r, int t, int b) : left (l), right (r), top (t), bottom (b) {}
95
96         /** Number of pixels to remove from the left-hand side */
97         int left;
98         /** Number of pixels to remove from the right-hand side */
99         int right;
100         /** Number of pixels to remove from the top */
101         int top;
102         /** Number of pixels to remove from the bottom */
103         int bottom;
104
105         dcp::Size apply (dcp::Size s, int minimum = 4) const {
106                 s.width -= left + right;
107                 s.height -= top + bottom;
108
109                 if (s.width < minimum) {
110                         s.width = minimum;
111                 }
112
113                 if (s.height < minimum) {
114                         s.height = minimum;
115                 }
116                 
117                 return s;
118         }
119 };
120
121 extern bool operator== (Crop const & a, Crop const & b);
122 extern bool operator!= (Crop const & a, Crop const & b);
123
124 enum Resolution {
125         RESOLUTION_2K,
126         RESOLUTION_4K
127 };
128
129 std::string resolution_to_string (Resolution);
130 Resolution string_to_resolution (std::string);
131
132 #endif