Merge.
[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 "util.h"
25
26 class VideoDecoder;
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_CROP;
35         static int const VIDEO_RATIO;
36 };
37
38 class VideoContent : public virtual Content
39 {
40 public:
41         VideoContent (boost::shared_ptr<const Film>, Time, ContentVideoFrame);
42         VideoContent (boost::shared_ptr<const Film>, boost::filesystem::path);
43         VideoContent (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
44         VideoContent (VideoContent const &);
45
46         void as_xml (xmlpp::Node *) const;
47         virtual std::string information () const;
48
49         ContentVideoFrame video_length () const {
50                 boost::mutex::scoped_lock lm (_mutex);
51                 return _video_length;
52         }
53
54         libdcp::Size video_size () const {
55                 boost::mutex::scoped_lock lm (_mutex);
56                 return _video_size;
57         }
58         
59         float video_frame_rate () const {
60                 boost::mutex::scoped_lock lm (_mutex);
61                 return _video_frame_rate;
62         }
63
64         void set_crop (Crop);
65         void set_left_crop (int);
66         void set_right_crop (int);
67         void set_top_crop (int);
68         void set_bottom_crop (int);
69
70         Crop crop () const {
71                 boost::mutex::scoped_lock lm (_mutex);
72                 return _crop;
73         }
74
75         void set_ratio (Ratio const *);
76
77         Ratio const * ratio () const {
78                 boost::mutex::scoped_lock lm (_mutex);
79                 return _ratio;
80         }
81
82 protected:
83         void take_from_video_decoder (boost::shared_ptr<VideoDecoder>);
84
85         ContentVideoFrame _video_length;
86
87 private:
88         libdcp::Size _video_size;
89         float _video_frame_rate;
90         Crop _crop;
91         Ratio const * _ratio;
92 };
93
94 #endif