Merge 1.0 in.
[dcpomatic.git] / src / lib / video_content.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_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_RATIO;
37         static int const COLOUR_CONVERSION;
38 };
39
40 class VideoContent : public virtual Content
41 {
42 public:
43         typedef int Frame;
44
45         VideoContent (boost::shared_ptr<const Film>, Time, VideoContent::Frame);
46         VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path);
47         VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
48
49         void as_xml (xmlpp::Node *) const;
50         std::string technical_summary () const;
51         virtual std::string information () const;
52         virtual std::string identifier () const;
53
54         VideoContent::Frame video_length () const {
55                 boost::mutex::scoped_lock lm (_mutex);
56                 return _video_length;
57         }
58
59         libdcp::Size video_size () const {
60                 boost::mutex::scoped_lock lm (_mutex);
61                 return _video_size;
62         }
63         
64         float video_frame_rate () const {
65                 boost::mutex::scoped_lock lm (_mutex);
66                 return _video_frame_rate;
67         }
68
69         void set_video_frame_type (VideoFrameType);
70
71         void set_left_crop (int);
72         void set_right_crop (int);
73         void set_top_crop (int);
74         void set_bottom_crop (int);
75
76         void set_colour_conversion (ColourConversion);
77
78         VideoFrameType video_frame_type () const {
79                 boost::mutex::scoped_lock lm (_mutex);
80                 return _video_frame_type;
81         }
82
83         Crop crop () const {
84                 boost::mutex::scoped_lock lm (_mutex);
85                 return _crop;
86         }
87
88         void set_ratio (Ratio const *);
89
90         Ratio const * ratio () const {
91                 boost::mutex::scoped_lock lm (_mutex);
92                 return _ratio;
93         }
94
95         ColourConversion colour_conversion () const {
96                 boost::mutex::scoped_lock lm (_mutex);
97                 return _colour_conversion;
98         }
99
100         libdcp::Size video_size_after_3d_split () const;
101
102 protected:
103         void take_from_video_examiner (boost::shared_ptr<VideoExaminer>);
104
105         VideoContent::Frame _video_length;
106
107 private:
108         friend class ffmpeg_pts_offset_test;
109         friend class best_dcp_frame_rate_test_single;
110         friend class best_dcp_frame_rate_test_double;
111         friend class audio_sampling_rate_test;
112         
113         libdcp::Size _video_size;
114         float _video_frame_rate;
115         VideoFrameType _video_frame_type;
116         Crop _crop;
117         Ratio const * _ratio;
118         ColourConversion _colour_conversion;
119 };
120
121 #endif