Merge branch 'master' into 12bit
[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 #include "video_content_scale.h"
26
27 class VideoExaminer;
28 class Ratio;
29
30 class VideoContentProperty
31 {
32 public:
33         static int const VIDEO_SIZE;
34         static int const VIDEO_FRAME_RATE;
35         static int const VIDEO_FRAME_TYPE;
36         static int const VIDEO_CROP;
37         static int const VIDEO_SCALE;
38         static int const COLOUR_CONVERSION;
39 };
40
41 class VideoContent : public virtual Content
42 {
43 public:
44         typedef int Frame;
45
46         VideoContent (boost::shared_ptr<const Film>);
47         VideoContent (boost::shared_ptr<const Film>, Time, VideoContent::Frame);
48         VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path);
49         VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>, int);
50         VideoContent (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
51
52         void as_xml (xmlpp::Node *) const;
53         std::string technical_summary () const;
54         virtual std::string information () const;
55         virtual std::string identifier () const;
56
57         VideoContent::Frame video_length () const {
58                 boost::mutex::scoped_lock lm (_mutex);
59                 return _video_length;
60         }
61
62         VideoContent::Frame video_length_after_3d_combine () const {
63                 boost::mutex::scoped_lock lm (_mutex);
64                 if (_video_frame_type == VIDEO_FRAME_TYPE_3D_ALTERNATE) {
65                         return _video_length / 2;
66                 }
67                 
68                 return _video_length;
69         }
70
71         libdcp::Size video_size () const {
72                 boost::mutex::scoped_lock lm (_mutex);
73                 return _video_size;
74         }
75         
76         float video_frame_rate () const {
77                 boost::mutex::scoped_lock lm (_mutex);
78                 return _video_frame_rate;
79         }
80
81         float original_video_frame_rate () const {
82                 boost::mutex::scoped_lock lm (_mutex);
83                 return _original_video_frame_rate;
84         }
85         
86         void set_video_frame_type (VideoFrameType);
87         void set_video_frame_rate (float);
88
89         void set_left_crop (int);
90         void set_right_crop (int);
91         void set_top_crop (int);
92         void set_bottom_crop (int);
93
94         void set_scale (VideoContentScale);
95         void set_colour_conversion (ColourConversion);
96         
97         VideoFrameType video_frame_type () const {
98                 boost::mutex::scoped_lock lm (_mutex);
99                 return _video_frame_type;
100         }
101
102         Crop crop () const {
103                 boost::mutex::scoped_lock lm (_mutex);
104                 return _crop;
105         }
106
107         int left_crop () const {
108                 boost::mutex::scoped_lock lm (_mutex);
109                 return _crop.left;
110         }
111
112         int right_crop () const {
113                 boost::mutex::scoped_lock lm (_mutex);
114                 return _crop.right;
115         }
116
117         int top_crop () const {
118                 boost::mutex::scoped_lock lm (_mutex);
119                 return _crop.top;
120         }
121
122         int bottom_crop () const {
123                 boost::mutex::scoped_lock lm (_mutex);
124                 return _crop.bottom;
125         }
126
127         /** @return Description of how to scale this content (if indeed it should be scaled) */
128         VideoContentScale scale () const {
129                 boost::mutex::scoped_lock lm (_mutex);
130                 return _scale;
131         }
132
133         ColourConversion colour_conversion () const {
134                 boost::mutex::scoped_lock lm (_mutex);
135                 return _colour_conversion;
136         }
137
138         libdcp::Size video_size_after_3d_split () const;
139         libdcp::Size video_size_after_crop () const;
140
141         VideoContent::Frame time_to_content_video_frames (Time) const;
142
143         void scale_and_crop_to_fit_width ();
144         void scale_and_crop_to_fit_height ();
145
146 protected:
147         void take_from_video_examiner (boost::shared_ptr<VideoExaminer>);
148
149         VideoContent::Frame _video_length;
150         float _original_video_frame_rate;
151         float _video_frame_rate;
152
153 private:
154         friend class ffmpeg_pts_offset_test;
155         friend class best_dcp_frame_rate_test_single;
156         friend class best_dcp_frame_rate_test_double;
157         friend class audio_sampling_rate_test;
158
159         void setup_default_colour_conversion ();
160         
161         libdcp::Size _video_size;
162         VideoFrameType _video_frame_type;
163         Crop _crop;
164         VideoContentScale _scale;
165         ColourConversion _colour_conversion;
166 };
167
168 #endif