Support for keeping video in sequence when changing lengths; tie selection in timelin...
[dcpomatic.git] / src / lib / video_content.cc
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 #include <libcxml/cxml.h>
21 #include "video_content.h"
22 #include "video_decoder.h"
23
24 #include "i18n.h"
25
26 int const VideoContentProperty::VIDEO_SIZE = 0;
27 int const VideoContentProperty::VIDEO_FRAME_RATE = 1;
28 int const VideoContentProperty::VIDEO_CROP = 2;
29
30 using std::string;
31 using std::stringstream;
32 using std::setprecision;
33 using boost::shared_ptr;
34 using boost::lexical_cast;
35
36 VideoContent::VideoContent (shared_ptr<const Film> f, Time s, ContentVideoFrame len)
37         : Content (f, s)
38         , _video_length (len)
39 {
40
41 }
42
43 VideoContent::VideoContent (shared_ptr<const Film> f, boost::filesystem::path p)
44         : Content (f, p)
45         , _video_length (0)
46 {
47
48 }
49
50 VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
51         : Content (f, node)
52 {
53         _video_length = node->number_child<ContentVideoFrame> ("VideoLength");
54         _video_size.width = node->number_child<int> ("VideoWidth");
55         _video_size.height = node->number_child<int> ("VideoHeight");
56         _video_frame_rate = node->number_child<float> ("VideoFrameRate");
57         _crop.left = node->number_child<int> ("LeftCrop");
58         _crop.right = node->number_child<int> ("RightCrop");
59         _crop.top = node->number_child<int> ("TopCrop");
60         _crop.bottom = node->number_child<int> ("BottomCrop");
61 }
62
63 VideoContent::VideoContent (VideoContent const & o)
64         : Content (o)
65         , _video_length (o._video_length)
66         , _video_size (o._video_size)
67         , _video_frame_rate (o._video_frame_rate)
68 {
69
70 }
71
72 void
73 VideoContent::as_xml (xmlpp::Node* node) const
74 {
75         boost::mutex::scoped_lock lm (_mutex);
76         node->add_child("VideoLength")->add_child_text (lexical_cast<string> (_video_length));
77         node->add_child("VideoWidth")->add_child_text (lexical_cast<string> (_video_size.width));
78         node->add_child("VideoHeight")->add_child_text (lexical_cast<string> (_video_size.height));
79         node->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
80         node->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left));
81         node->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right));
82         node->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top));
83         node->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom));
84 }
85
86 void
87 VideoContent::take_from_video_decoder (shared_ptr<VideoDecoder> d)
88 {
89         /* These decoder calls could call other content methods which take a lock on the mutex */
90         libdcp::Size const vs = d->video_size ();
91         float const vfr = d->video_frame_rate ();
92         
93         {
94                 boost::mutex::scoped_lock lm (_mutex);
95                 _video_size = vs;
96                 _video_frame_rate = vfr;
97         }
98         
99         signal_changed (VideoContentProperty::VIDEO_SIZE);
100         signal_changed (VideoContentProperty::VIDEO_FRAME_RATE);
101 }
102
103
104 string
105 VideoContent::information () const
106 {
107         if (video_size().width == 0 || video_size().height == 0) {
108                 return "";
109         }
110         
111         stringstream s;
112
113         s << String::compose (
114                 _("%1x%2 pixels (%3:1)"),
115                 video_size().width,
116                 video_size().height,
117                 setprecision (3), float (video_size().width) / video_size().height
118                 );
119         
120         return s.str ();
121 }
122
123 void
124 VideoContent::set_crop (Crop c)
125 {
126         {
127                 boost::mutex::scoped_lock lm (_mutex);
128                 _crop = c;
129         }
130         signal_changed (VideoContentProperty::VIDEO_CROP);
131 }
132
133 void
134 VideoContent::set_left_crop (int c)
135 {
136         {
137                 boost::mutex::scoped_lock lm (_mutex);
138                 
139                 if (_crop.left == c) {
140                         return;
141                 }
142                 
143                 _crop.left = c;
144         }
145         
146         signal_changed (VideoContentProperty::VIDEO_CROP);
147 }
148
149 void
150 VideoContent::set_right_crop (int c)
151 {
152         {
153                 boost::mutex::scoped_lock lm (_mutex);
154                 if (_crop.right == c) {
155                         return;
156                 }
157                 
158                 _crop.right = c;
159         }
160         
161         signal_changed (VideoContentProperty::VIDEO_CROP);
162 }
163
164 void
165 VideoContent::set_top_crop (int c)
166 {
167         {
168                 boost::mutex::scoped_lock lm (_mutex);
169                 if (_crop.top == c) {
170                         return;
171                 }
172                 
173                 _crop.top = c;
174         }
175         
176         signal_changed (VideoContentProperty::VIDEO_CROP);
177 }
178
179 void
180 VideoContent::set_bottom_crop (int c)
181 {
182         {
183                 boost::mutex::scoped_lock lm (_mutex);
184                 if (_crop.bottom == c) {
185                         return;
186                 }
187                 
188                 _crop.bottom = c;
189         }
190
191         signal_changed (VideoContentProperty::VIDEO_CROP);
192 }
193