Merge master.
[dcpomatic.git] / src / lib / video_content.h
1 /*
2     Copyright (C) 2013-2014 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_VIDEO_CONTENT_H
21 #define DCPOMATIC_VIDEO_CONTENT_H
22
23 #include "content.h"
24 #include "colour_conversion.h"
25
26 class VideoExaminer;
27 class Ratio;
28
29 class VideoContentProperty
30 {
31 public:
32         static int const VIDEO_SIZE;
33         static int const VIDEO_FRAME_RATE;
34         static int const VIDEO_FRAME_TYPE;
35         static int const VIDEO_CROP;
36         static int const VIDEO_SCALE;
37         static int const COLOUR_CONVERSION;
38 };
39
40 class VideoContentScale
41 {
42 public:
43         VideoContentScale ();
44         VideoContentScale (Ratio const *);
45         VideoContentScale (bool);
46         VideoContentScale (boost::shared_ptr<cxml::Node>);
47
48         dcp::Size size (boost::shared_ptr<const VideoContent>, dcp::Size, dcp::Size) const;
49         std::string id () const;
50         std::string name () const;
51         void as_xml (xmlpp::Node *) const;
52
53         Ratio const * ratio () const {
54                 return _ratio;
55         }
56
57         bool scale () const {
58                 return _scale;
59         }
60
61         static void setup_scales ();
62         static std::vector<VideoContentScale> all () {
63                 return _scales;
64         }
65
66 private:
67         /** a ratio to stretch the content to, or 0 for no stretch */
68         Ratio const * _ratio;
69         /** true if we want to scale the content */
70         bool _scale;
71
72         static std::vector<VideoContentScale> _scales;
73 };
74
75 bool operator== (VideoContentScale const & a, VideoContentScale const & b);
76 bool operator!= (VideoContentScale const & a, VideoContentScale const & b);
77
78 class VideoContent : public virtual Content
79 {
80 public:
81         typedef int Frame;
82
83         VideoContent (boost::shared_ptr<const Film>);
84         VideoContent (boost::shared_ptr<const Film>, DCPTime, ContentTime);
85         VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path);
86         VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>, int);
87         VideoContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
88
89         void as_xml (xmlpp::Node *) const;
90         std::string technical_summary () const;
91         virtual std::string information () const;
92         virtual std::string identifier () const;
93
94         ContentTime video_length () const {
95                 boost::mutex::scoped_lock lm (_mutex);
96                 return _video_length;
97         }
98
99         ContentTime video_length_after_3d_combine () const {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 if (_video_frame_type == VIDEO_FRAME_TYPE_3D_ALTERNATE) {
102                         return ContentTime (_video_length.get() / 2);
103                 }
104                 
105                 return _video_length;
106         }
107
108         dcp::Size video_size () const {
109                 boost::mutex::scoped_lock lm (_mutex);
110                 return _video_size;
111         }
112         
113         float video_frame_rate () const {
114                 boost::mutex::scoped_lock lm (_mutex);
115                 return _video_frame_rate;
116         }
117
118         void set_video_frame_type (VideoFrameType);
119
120         void set_left_crop (int);
121         void set_right_crop (int);
122         void set_top_crop (int);
123         void set_bottom_crop (int);
124
125         void set_scale (VideoContentScale);
126         void set_colour_conversion (ColourConversion);
127         
128         VideoFrameType video_frame_type () const {
129                 boost::mutex::scoped_lock lm (_mutex);
130                 return _video_frame_type;
131         }
132
133         Crop crop () const {
134                 boost::mutex::scoped_lock lm (_mutex);
135                 return _crop;
136         }
137
138         int left_crop () const {
139                 boost::mutex::scoped_lock lm (_mutex);
140                 return _crop.left;
141         }
142
143         int right_crop () const {
144                 boost::mutex::scoped_lock lm (_mutex);
145                 return _crop.right;
146         }
147
148         int top_crop () const {
149                 boost::mutex::scoped_lock lm (_mutex);
150                 return _crop.top;
151         }
152
153         int bottom_crop () const {
154                 boost::mutex::scoped_lock lm (_mutex);
155                 return _crop.bottom;
156         }
157
158         /** @return Description of how to scale this content (if indeed it should be scaled) */
159         VideoContentScale scale () const {
160                 boost::mutex::scoped_lock lm (_mutex);
161                 return _scale;
162         }
163
164         ColourConversion colour_conversion () const {
165                 boost::mutex::scoped_lock lm (_mutex);
166                 return _colour_conversion;
167         }
168
169         dcp::Size video_size_after_3d_split () const;
170         dcp::Size video_size_after_crop () const;
171
172         ContentTime dcp_time_to_content_time (DCPTime) const;
173
174 protected:
175         void take_from_video_examiner (boost::shared_ptr<VideoExaminer>);
176
177         ContentTime _video_length;
178         float _video_frame_rate;
179
180 private:
181         friend class ffmpeg_pts_offset_test;
182         friend class best_dcp_frame_rate_test_single;
183         friend class best_dcp_frame_rate_test_double;
184         friend class audio_sampling_rate_test;
185
186         void setup_default_colour_conversion ();
187         
188         dcp::Size _video_size;
189         VideoFrameType _video_frame_type;
190         Crop _crop;
191         VideoContentScale _scale;
192         ColourConversion _colour_conversion;
193 };
194
195 #endif