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