Bump version
[dcpomatic.git] / src / lib / video_content.cc
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 #include <iomanip>
21 #include <libcxml/cxml.h>
22 #include <libdcp/colour_matrix.h>
23 #include <libdcp/raw_convert.h>
24 #include "video_content.h"
25 #include "video_examiner.h"
26 #include "compose.hpp"
27 #include "ratio.h"
28 #include "config.h"
29 #include "colour_conversion.h"
30 #include "util.h"
31 #include "film.h"
32 #include "exceptions.h"
33
34 #include "i18n.h"
35
36 int const VideoContentProperty::VIDEO_SIZE        = 0;
37 int const VideoContentProperty::VIDEO_FRAME_RATE  = 1;
38 int const VideoContentProperty::VIDEO_FRAME_TYPE  = 2;
39 int const VideoContentProperty::VIDEO_CROP        = 3;
40 int const VideoContentProperty::VIDEO_SCALE       = 4;
41 int const VideoContentProperty::COLOUR_CONVERSION = 5;
42
43 using std::string;
44 using std::stringstream;
45 using std::setprecision;
46 using std::cout;
47 using std::vector;
48 using boost::shared_ptr;
49 using boost::optional;
50 using boost::dynamic_pointer_cast;
51 using libdcp::raw_convert;
52
53 vector<VideoContentScale> VideoContentScale::_scales;
54
55 VideoContent::VideoContent (shared_ptr<const Film> f)
56         : Content (f)
57         , _video_length (0)
58         , _video_frame_rate (0)
59         , _video_frame_type (VIDEO_FRAME_TYPE_2D)
60         , _scale (Ratio::from_id ("185"))
61 {
62         setup_default_colour_conversion ();
63 }
64
65 VideoContent::VideoContent (shared_ptr<const Film> f, Time s, VideoContent::Frame len)
66         : Content (f, s)
67         , _video_length (len)
68         , _video_frame_rate (0)
69         , _video_frame_type (VIDEO_FRAME_TYPE_2D)
70         , _scale (Ratio::from_id ("185"))
71 {
72         setup_default_colour_conversion ();
73 }
74
75 VideoContent::VideoContent (shared_ptr<const Film> f, boost::filesystem::path p)
76         : Content (f, p)
77         , _video_length (0)
78         , _video_frame_rate (0)
79         , _video_frame_type (VIDEO_FRAME_TYPE_2D)
80         , _scale (Ratio::from_id ("185"))
81 {
82         setup_default_colour_conversion ();
83 }
84
85 VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node, int version)
86         : Content (f, node)
87 {
88         _video_length = node->number_child<VideoContent::Frame> ("VideoLength");
89         _video_size.width = node->number_child<int> ("VideoWidth");
90         _video_size.height = node->number_child<int> ("VideoHeight");
91         _video_frame_rate = node->number_child<float> ("VideoFrameRate");
92         _video_frame_type = static_cast<VideoFrameType> (node->number_child<int> ("VideoFrameType"));
93         _crop.left = node->number_child<int> ("LeftCrop");
94         _crop.right = node->number_child<int> ("RightCrop");
95         _crop.top = node->number_child<int> ("TopCrop");
96         _crop.bottom = node->number_child<int> ("BottomCrop");
97
98         if (version <= 7) {
99                 optional<string> r = node->optional_string_child ("Ratio");
100                 if (r) {
101                         _scale = VideoContentScale (Ratio::from_id (r.get ()));
102                 }
103         } else {
104                 _scale = VideoContentScale (node->node_child ("Scale"));
105         }
106         
107         _colour_conversion = ColourConversion (node->node_child ("ColourConversion"));
108 }
109
110 VideoContent::VideoContent (shared_ptr<const Film> f, vector<shared_ptr<Content> > c)
111         : Content (f, c)
112         , _video_length (0)
113 {
114         shared_ptr<VideoContent> ref = dynamic_pointer_cast<VideoContent> (c[0]);
115         assert (ref);
116
117         for (size_t i = 0; i < c.size(); ++i) {
118                 shared_ptr<VideoContent> vc = dynamic_pointer_cast<VideoContent> (c[i]);
119
120                 if (vc->video_size() != ref->video_size()) {
121                         throw JoinError (_("Content to be joined must have the same picture size."));
122                 }
123
124                 if (vc->video_frame_rate() != ref->video_frame_rate()) {
125                         throw JoinError (_("Content to be joined must have the same video frame rate."));
126                 }
127
128                 if (vc->video_frame_type() != ref->video_frame_type()) {
129                         throw JoinError (_("Content to be joined must have the same video frame type."));
130                 }
131
132                 if (vc->crop() != ref->crop()) {
133                         throw JoinError (_("Content to be joined must have the same crop."));
134                 }
135
136                 if (vc->scale() != ref->scale()) {
137                         throw JoinError (_("Content to be joined must have the same scale setting."));
138                 }
139
140                 if (vc->colour_conversion() != ref->colour_conversion()) {
141                         throw JoinError (_("Content to be joined must have the same colour conversion."));
142                 }
143
144                 _video_length += vc->video_length ();
145         }
146
147         _video_size = ref->video_size ();
148         _video_frame_rate = ref->video_frame_rate ();
149         _video_frame_type = ref->video_frame_type ();
150         _crop = ref->crop ();
151         _scale = ref->scale ();
152         _colour_conversion = ref->colour_conversion ();
153 }
154
155 void
156 VideoContent::as_xml (xmlpp::Node* node) const
157 {
158         boost::mutex::scoped_lock lm (_mutex);
159         node->add_child("VideoLength")->add_child_text (raw_convert<string> (_video_length));
160         node->add_child("VideoWidth")->add_child_text (raw_convert<string> (_video_size.width));
161         node->add_child("VideoHeight")->add_child_text (raw_convert<string> (_video_size.height));
162         node->add_child("VideoFrameRate")->add_child_text (raw_convert<string> (_video_frame_rate));
163         node->add_child("VideoFrameType")->add_child_text (raw_convert<string> (static_cast<int> (_video_frame_type)));
164         node->add_child("LeftCrop")->add_child_text (raw_convert<string> (_crop.left));
165         node->add_child("RightCrop")->add_child_text (raw_convert<string> (_crop.right));
166         node->add_child("TopCrop")->add_child_text (raw_convert<string> (_crop.top));
167         node->add_child("BottomCrop")->add_child_text (raw_convert<string> (_crop.bottom));
168         _scale.as_xml (node->add_child("Scale"));
169         _colour_conversion.as_xml (node->add_child("ColourConversion"));
170 }
171
172 void
173 VideoContent::setup_default_colour_conversion ()
174 {
175         _colour_conversion = PresetColourConversion (_("sRGB"), 2.4, true, libdcp::colour_matrix::srgb_to_xyz, 2.6).conversion;
176 }
177
178 void
179 VideoContent::take_from_video_examiner (shared_ptr<VideoExaminer> d)
180 {
181         /* These examiner calls could call other content methods which take a lock on the mutex */
182         libdcp::Size const vs = d->video_size ();
183         float const vfr = d->video_frame_rate ();
184         
185         {
186                 boost::mutex::scoped_lock lm (_mutex);
187                 _video_size = vs;
188                 _video_frame_rate = vfr;
189         }
190         
191         signal_changed (VideoContentProperty::VIDEO_SIZE);
192         signal_changed (VideoContentProperty::VIDEO_FRAME_RATE);
193 }
194
195
196 string
197 VideoContent::information () const
198 {
199         if (video_size().width == 0 || video_size().height == 0) {
200                 return "";
201         }
202         
203         stringstream s;
204
205         s << String::compose (
206                 _("%1x%2 pixels (%3:1)"),
207                 video_size().width,
208                 video_size().height,
209                 setprecision (3), video_size().ratio ()
210                 );
211         
212         return s.str ();
213 }
214
215 void
216 VideoContent::set_left_crop (int c)
217 {
218         {
219                 boost::mutex::scoped_lock lm (_mutex);
220                 
221                 if (_crop.left == c) {
222                         return;
223                 }
224                 
225                 _crop.left = c;
226         }
227         
228         signal_changed (VideoContentProperty::VIDEO_CROP);
229 }
230
231 void
232 VideoContent::set_right_crop (int c)
233 {
234         {
235                 boost::mutex::scoped_lock lm (_mutex);
236                 if (_crop.right == c) {
237                         return;
238                 }
239                 
240                 _crop.right = c;
241         }
242         
243         signal_changed (VideoContentProperty::VIDEO_CROP);
244 }
245
246 void
247 VideoContent::set_top_crop (int c)
248 {
249         {
250                 boost::mutex::scoped_lock lm (_mutex);
251                 if (_crop.top == c) {
252                         return;
253                 }
254                 
255                 _crop.top = c;
256         }
257         
258         signal_changed (VideoContentProperty::VIDEO_CROP);
259 }
260
261 void
262 VideoContent::set_bottom_crop (int c)
263 {
264         {
265                 boost::mutex::scoped_lock lm (_mutex);
266                 if (_crop.bottom == c) {
267                         return;
268                 }
269                 
270                 _crop.bottom = c;
271         }
272
273         signal_changed (VideoContentProperty::VIDEO_CROP);
274 }
275
276 void
277 VideoContent::set_scale (VideoContentScale s)
278 {
279         {
280                 boost::mutex::scoped_lock lm (_mutex);
281                 if (_scale == s) {
282                         return;
283                 }
284
285                 _scale = s;
286         }
287
288         signal_changed (VideoContentProperty::VIDEO_SCALE);
289 }
290
291 /** @return string which includes everything about how this content looks */
292 string
293 VideoContent::identifier () const
294 {
295         stringstream s;
296         s << Content::identifier()
297           << "_" << crop().left
298           << "_" << crop().right
299           << "_" << crop().top
300           << "_" << crop().bottom
301           << "_" << scale().id()
302           << "_" << colour_conversion().identifier ();
303
304         return s.str ();
305 }
306
307 void
308 VideoContent::set_video_frame_type (VideoFrameType t)
309 {
310         {
311                 boost::mutex::scoped_lock lm (_mutex);
312                 _video_frame_type = t;
313         }
314
315         signal_changed (VideoContentProperty::VIDEO_FRAME_TYPE);
316 }
317
318 string
319 VideoContent::technical_summary () const
320 {
321         return String::compose (
322                 "video: length %1, size %2x%3, rate %4",
323                 video_length_after_3d_combine(), video_size().width, video_size().height, video_frame_rate()
324                 );
325 }
326
327 libdcp::Size
328 VideoContent::video_size_after_3d_split () const
329 {
330         libdcp::Size const s = video_size ();
331         switch (video_frame_type ()) {
332         case VIDEO_FRAME_TYPE_2D:
333         case VIDEO_FRAME_TYPE_3D_ALTERNATE:
334         case VIDEO_FRAME_TYPE_3D_LEFT:
335         case VIDEO_FRAME_TYPE_3D_RIGHT:
336                 return s;
337         case VIDEO_FRAME_TYPE_3D_LEFT_RIGHT:
338                 return libdcp::Size (s.width / 2, s.height);
339         case VIDEO_FRAME_TYPE_3D_TOP_BOTTOM:
340                 return libdcp::Size (s.width, s.height / 2);
341         }
342
343         assert (false);
344 }
345
346 void
347 VideoContent::set_colour_conversion (ColourConversion c)
348 {
349         {
350                 boost::mutex::scoped_lock lm (_mutex);
351                 _colour_conversion = c;
352         }
353
354         signal_changed (VideoContentProperty::COLOUR_CONVERSION);
355 }
356
357 /** @return Video size after 3D split and crop */
358 libdcp::Size
359 VideoContent::video_size_after_crop () const
360 {
361         return crop().apply (video_size_after_3d_split ());
362 }
363
364 /** @param t A time offset from the start of this piece of content.
365  *  @return Corresponding frame index.
366  */
367 VideoContent::Frame
368 VideoContent::time_to_content_video_frames (Time t) const
369 {
370         shared_ptr<const Film> film = _film.lock ();
371         assert (film);
372         
373         FrameRateConversion frc (video_frame_rate(), film->video_frame_rate());
374
375         /* Here we are converting from time (in the DCP) to a frame number in the content.
376            Hence we need to use the DCP's frame rate and the double/skip correction, not
377            the source's rate.
378         */
379         return t * film->video_frame_rate() / (frc.factor() * TIME_HZ);
380 }
381
382 VideoContentScale::VideoContentScale (Ratio const * r)
383         : _ratio (r)
384         , _scale (true)
385 {
386
387 }
388
389 VideoContentScale::VideoContentScale ()
390         : _ratio (0)
391         , _scale (false)
392 {
393
394 }
395
396 VideoContentScale::VideoContentScale (bool scale)
397         : _ratio (0)
398         , _scale (scale)
399 {
400
401 }
402
403 VideoContentScale::VideoContentScale (shared_ptr<cxml::Node> node)
404         : _ratio (0)
405         , _scale (true)
406 {
407         optional<string> r = node->optional_string_child ("Ratio");
408         if (r) {
409                 _ratio = Ratio::from_id (r.get ());
410         } else {
411                 _scale = node->bool_child ("Scale");
412         }
413 }
414
415 void
416 VideoContentScale::as_xml (xmlpp::Node* node) const
417 {
418         if (_ratio) {
419                 node->add_child("Ratio")->add_child_text (_ratio->id ());
420         } else {
421                 node->add_child("Scale")->add_child_text (_scale ? "1" : "0");
422         }
423 }
424
425 string
426 VideoContentScale::id () const
427 {
428         stringstream s;
429         
430         if (_ratio) {
431                 s << _ratio->id () << "_";
432         } else {
433                 s << (_scale ? "S1" : "S0");
434         }
435         
436         return s.str ();
437 }
438
439 string
440 VideoContentScale::name () const
441 {
442         if (_ratio) {
443                 return _ratio->nickname ();
444         }
445
446         if (_scale) {
447                 return _("No stretch");
448         }
449
450         return _("No scale");
451 }
452
453 /** @param display_container Size of the container that we are displaying this content in.
454  *  @param film_container The size of the film's image.
455  */
456 libdcp::Size
457 VideoContentScale::size (shared_ptr<const VideoContent> c, libdcp::Size display_container, libdcp::Size film_container) const
458 {
459         if (_ratio) {
460                 return fit_ratio_within (_ratio->ratio (), display_container);
461         }
462
463         libdcp::Size const ac = c->video_size_after_crop ();
464
465         /* Force scale if the film_container is smaller than the content's image */
466         if (_scale || film_container.width < ac.width || film_container.height < ac.height) {
467                 return fit_ratio_within (ac.ratio (), display_container);
468         }
469
470         /* Scale the image so that it will be in the right place in film_container, even if display_container is a
471            different size.
472         */
473         return libdcp::Size (
474                 c->video_size().width  * float(display_container.width)  / film_container.width,
475                 c->video_size().height * float(display_container.height) / film_container.height
476                 );
477 }
478
479 void
480 VideoContentScale::setup_scales ()
481 {
482         vector<Ratio const *> ratios = Ratio::all ();
483         for (vector<Ratio const *>::const_iterator i = ratios.begin(); i != ratios.end(); ++i) {
484                 _scales.push_back (VideoContentScale (*i));
485         }
486
487         _scales.push_back (VideoContentScale (true));
488         _scales.push_back (VideoContentScale (false));
489 }
490
491 bool
492 operator== (VideoContentScale const & a, VideoContentScale const & b)
493 {
494         return (a.ratio() == b.ratio() && a.scale() == b.scale());
495 }
496
497 bool
498 operator!= (VideoContentScale const & a, VideoContentScale const & b)
499 {
500         return (a.ratio() != b.ratio() || a.scale() != b.scale());
501 }