Mostly-merge master.
[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
29 class Content;
30 class VideoContent;
31 class AudioContent;
32 class SubtitleContent;
33 class FFmpegContent;
34 class AudioBuffers;
35
36 /** The version number of the protocol used to communicate
37  *  with servers.  Intended to be bumped when incompatibilities
38  *  are introduced.
39  */
40 #define SERVER_LINK_VERSION 1
41
42 typedef std::vector<boost::shared_ptr<Content> > ContentList;
43 typedef std::vector<boost::shared_ptr<VideoContent> > VideoContentList;
44 typedef std::vector<boost::shared_ptr<AudioContent> > AudioContentList;
45 typedef std::vector<boost::shared_ptr<SubtitleContent> > SubtitleContentList;
46 typedef std::vector<boost::shared_ptr<FFmpegContent> > FFmpegContentList;
47
48 struct TimedAudioBuffers
49 {
50         TimedAudioBuffers ()
51                 : time (0)
52         {}
53         
54         TimedAudioBuffers (boost::shared_ptr<AudioBuffers> a, DCPTime t)
55                 : audio (a)
56                 , time (t)
57         {}
58         
59         boost::shared_ptr<AudioBuffers> audio;
60         DCPTime time;
61 };
62
63 enum VideoFrameType
64 {
65         VIDEO_FRAME_TYPE_2D,
66         VIDEO_FRAME_TYPE_3D_LEFT_RIGHT,
67         VIDEO_FRAME_TYPE_3D_TOP_BOTTOM,
68         VIDEO_FRAME_TYPE_3D_ALTERNATE
69 };
70
71 enum Eyes
72 {
73         EYES_BOTH,
74         EYES_LEFT,
75         EYES_RIGHT,
76         EYES_COUNT
77 };
78
79 /** @struct Crop
80  *  @brief A description of the crop of an image or video.
81  */
82 struct Crop
83 {
84         Crop () : left (0), right (0), top (0), bottom (0) {}
85         Crop (int l, int r, int t, int b) : left (l), right (r), top (t), bottom (b) {}
86
87         /** Number of pixels to remove from the left-hand side */
88         int left;
89         /** Number of pixels to remove from the right-hand side */
90         int right;
91         /** Number of pixels to remove from the top */
92         int top;
93         /** Number of pixels to remove from the bottom */
94         int bottom;
95
96         dcp::Size apply (dcp::Size s, int minimum = 4) const {
97                 s.width -= left + right;
98                 s.height -= top + bottom;
99
100                 if (s.width < minimum) {
101                         s.width = minimum;
102                 }
103
104                 if (s.height < minimum) {
105                         s.height = minimum;
106                 }
107                 
108                 return s;
109         }
110 };
111
112 extern bool operator== (Crop const & a, Crop const & b);
113 extern bool operator!= (Crop const & a, Crop const & b);
114
115 enum Resolution {
116         RESOLUTION_2K,
117         RESOLUTION_4K
118 };
119
120 std::string resolution_to_string (Resolution);
121 Resolution string_to_resolution (std::string);
122
123 #endif