Fix crash with no video.
[dcpomatic.git] / src / lib / ffmpeg_content.cc
1 /*
2     Copyright (C) 2013-2016 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 "ffmpeg_content.h"
21 #include "video_content.h"
22 #include "audio_content.h"
23 #include "ffmpeg_examiner.h"
24 #include "ffmpeg_subtitle_stream.h"
25 #include "ffmpeg_audio_stream.h"
26 #include "compose.hpp"
27 #include "job.h"
28 #include "util.h"
29 #include "filter.h"
30 #include "film.h"
31 #include "log.h"
32 #include "exceptions.h"
33 #include "frame_rate_change.h"
34 #include "safe_stringstream.h"
35 #include "raw_convert.h"
36 #include "subtitle_content.h"
37 #include <libcxml/cxml.h>
38 extern "C" {
39 #include <libavformat/avformat.h>
40 #include <libavutil/pixdesc.h>
41 }
42 #include <libxml++/libxml++.h>
43 #include <boost/foreach.hpp>
44 #include <iostream>
45
46 #include "i18n.h"
47
48 #define LOG_GENERAL(...) film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
49
50 using std::string;
51 using std::vector;
52 using std::list;
53 using std::cout;
54 using std::pair;
55 using std::make_pair;
56 using boost::shared_ptr;
57 using boost::dynamic_pointer_cast;
58 using boost::optional;
59
60 int const FFmpegContentProperty::SUBTITLE_STREAMS = 100;
61 int const FFmpegContentProperty::SUBTITLE_STREAM = 101;
62 int const FFmpegContentProperty::FILTERS = 102;
63
64 FFmpegContent::FFmpegContent (shared_ptr<const Film> film, boost::filesystem::path p)
65         : Content (film, p)
66 {
67
68 }
69
70 FFmpegContent::FFmpegContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version, list<string>& notes)
71         : Content (film, node)
72 {
73         video = VideoContent::from_xml (this, film, node, version);
74         audio = AudioContent::from_xml (this, film, node);
75         subtitle = SubtitleContent::from_xml (this, film, node, version);
76
77         list<cxml::NodePtr> c = node->node_children ("SubtitleStream");
78         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
79                 _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (*i, version)));
80                 if ((*i)->optional_number_child<int> ("Selected")) {
81                         _subtitle_stream = _subtitle_streams.back ();
82                 }
83         }
84
85         c = node->node_children ("AudioStream");
86         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
87                 shared_ptr<FFmpegAudioStream> as (new FFmpegAudioStream (*i, version));
88                 audio->add_stream (as);
89                 if (version < 11 && !(*i)->optional_node_child ("Selected")) {
90                         /* This is an old file and this stream is not selected, so un-map it */
91                         as->set_mapping (AudioMapping (as->channels (), MAX_DCP_AUDIO_CHANNELS));
92                 }
93         }
94
95         c = node->node_children ("Filter");
96         for (list<cxml::NodePtr>::iterator i = c.begin(); i != c.end(); ++i) {
97                 Filter const * f = Filter::from_id ((*i)->content ());
98                 if (f) {
99                         _filters.push_back (f);
100                 } else {
101                         notes.push_back (String::compose (_("DCP-o-matic no longer supports the `%1' filter, so it has been turned off."), (*i)->content()));
102                 }
103         }
104
105         optional<ContentTime::Type> const f = node->optional_number_child<ContentTime::Type> ("FirstVideo");
106         if (f) {
107                 _first_video = ContentTime (f.get ());
108         }
109
110         _color_range = static_cast<AVColorRange> (node->optional_number_child<int>("ColorRange").get_value_or (AVCOL_RANGE_UNSPECIFIED));
111         _color_primaries = static_cast<AVColorPrimaries> (node->optional_number_child<int>("ColorPrimaries").get_value_or (AVCOL_PRI_UNSPECIFIED));
112         _color_trc = static_cast<AVColorTransferCharacteristic> (
113                 node->optional_number_child<int>("ColorTransferCharacteristic").get_value_or (AVCOL_TRC_UNSPECIFIED)
114                 );
115         _colorspace = static_cast<AVColorSpace> (node->optional_number_child<int>("Colorspace").get_value_or (AVCOL_SPC_UNSPECIFIED));
116         _bits_per_pixel = node->optional_number_child<int> ("BitsPerPixel");
117
118 }
119
120 FFmpegContent::FFmpegContent (shared_ptr<const Film> film, vector<boost::shared_ptr<Content> > c)
121         : Content (film, c)
122 {
123         video.reset (new VideoContent (this, film, c));
124         audio.reset (new AudioContent (this, film, c));
125         subtitle.reset (new SubtitleContent (this, film, c));
126
127         shared_ptr<FFmpegContent> ref = dynamic_pointer_cast<FFmpegContent> (c[0]);
128         DCPOMATIC_ASSERT (ref);
129
130         for (size_t i = 0; i < c.size(); ++i) {
131                 shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c[i]);
132                 if (fc->subtitle->use() && *(fc->_subtitle_stream.get()) != *(ref->_subtitle_stream.get())) {
133                         throw JoinError (_("Content to be joined must use the same subtitle stream."));
134                 }
135         }
136
137         /* XXX: should probably check that more of the stuff below is the same in *this and ref */
138
139         _subtitle_streams = ref->subtitle_streams ();
140         _subtitle_stream = ref->subtitle_stream ();
141         _first_video = ref->_first_video;
142         _filters = ref->_filters;
143         _color_range = ref->_color_range;
144         _color_primaries = ref->_color_primaries;
145         _color_trc = ref->_color_trc;
146         _colorspace = ref->_colorspace;
147         _bits_per_pixel = ref->_bits_per_pixel;
148 }
149
150 void
151 FFmpegContent::as_xml (xmlpp::Node* node) const
152 {
153         node->add_child("Type")->add_child_text ("FFmpeg");
154         Content::as_xml (node);
155
156         if (video) {
157                 video->as_xml (node);
158         }
159
160         if (audio) {
161                 audio->as_xml (node);
162         }
163
164         if (subtitle) {
165                 subtitle->as_xml (node);
166         }
167
168         boost::mutex::scoped_lock lm (_mutex);
169
170         for (vector<shared_ptr<FFmpegSubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
171                 xmlpp::Node* t = node->add_child("SubtitleStream");
172                 if (_subtitle_stream && *i == _subtitle_stream) {
173                         t->add_child("Selected")->add_child_text("1");
174                 }
175                 (*i)->as_xml (t);
176         }
177
178         BOOST_FOREACH (AudioStreamPtr i, audio->streams ()) {
179                 shared_ptr<FFmpegAudioStream> f = dynamic_pointer_cast<FFmpegAudioStream> (i);
180                 DCPOMATIC_ASSERT (f);
181                 f->as_xml (node->add_child("AudioStream"));
182         }
183
184         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
185                 node->add_child("Filter")->add_child_text ((*i)->id ());
186         }
187
188         if (_first_video) {
189                 node->add_child("FirstVideo")->add_child_text (raw_convert<string> (_first_video.get().get()));
190         }
191
192         node->add_child("ColorRange")->add_child_text (raw_convert<string> (_color_range));
193         node->add_child("ColorPrimaries")->add_child_text (raw_convert<string> (_color_primaries));
194         node->add_child("ColorTransferCharacteristic")->add_child_text (raw_convert<string> (_color_trc));
195         node->add_child("Colorspace")->add_child_text (raw_convert<string> (_colorspace));
196         if (_bits_per_pixel) {
197                 node->add_child("BitsPerPixel")->add_child_text (raw_convert<string> (_bits_per_pixel.get ()));
198         }
199 }
200
201 void
202 FFmpegContent::examine (shared_ptr<Job> job)
203 {
204         job->set_progress_unknown ();
205
206         Content::examine (job);
207
208         shared_ptr<FFmpegExaminer> examiner (new FFmpegExaminer (shared_from_this (), job));
209
210         if (examiner->has_video ()) {
211                 video.reset (new VideoContent (this, film ()));
212                 video->take_from_examiner (examiner);
213                 set_default_colour_conversion ();
214         }
215
216         {
217                 boost::mutex::scoped_lock lm (_mutex);
218
219                 if (examiner->has_video ()) {
220                         _first_video = examiner->first_video ();
221                         _color_range = examiner->color_range ();
222                         _color_primaries = examiner->color_primaries ();
223                         _color_trc = examiner->color_trc ();
224                         _colorspace = examiner->colorspace ();
225                         _bits_per_pixel = examiner->bits_per_pixel ();
226                 }
227
228                 if (!examiner->audio_streams().empty ()) {
229                         audio.reset (new AudioContent (this, film ()));
230
231                         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, examiner->audio_streams ()) {
232                                 audio->add_stream (i);
233                         }
234
235                         AudioStreamPtr as = audio->streams().front();
236                         AudioMapping m = as->mapping ();
237                         film()->make_audio_mapping_default (m);
238                         as->set_mapping (m);
239                 }
240
241                 _subtitle_streams = examiner->subtitle_streams ();
242                 if (!_subtitle_streams.empty ()) {
243                         subtitle.reset (new SubtitleContent (this, film ()));
244                         _subtitle_stream = _subtitle_streams.front ();
245                 }
246
247         }
248
249         signal_changed (FFmpegContentProperty::SUBTITLE_STREAMS);
250         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
251 }
252
253 string
254 FFmpegContent::summary () const
255 {
256         /* Get the string() here so that the name does not have quotes around it */
257         return String::compose (_("%1 [movie]"), path_summary ());
258 }
259
260 string
261 FFmpegContent::technical_summary () const
262 {
263         string as = "";
264         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, ffmpeg_audio_streams ()) {
265                 as += i->technical_summary () + " " ;
266         }
267
268         if (as.empty ()) {
269                 as = "none";
270         }
271
272         string ss = "none";
273         if (_subtitle_stream) {
274                 ss = _subtitle_stream->technical_summary ();
275         }
276
277         string filt = Filter::ffmpeg_string (_filters);
278
279         string s = Content::technical_summary ();
280
281         if (video) {
282                 s += " - " + video->technical_summary ();
283         }
284
285         if (audio) {
286                 s += " - " + audio->technical_summary ();
287         }
288
289         return s + String::compose (
290                 "ffmpeg: audio %1 subtitle %2 filters %3", as, ss, filt
291                 );
292 }
293
294 void
295 FFmpegContent::set_subtitle_stream (shared_ptr<FFmpegSubtitleStream> s)
296 {
297         {
298                 boost::mutex::scoped_lock lm (_mutex);
299                 _subtitle_stream = s;
300         }
301
302         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
303 }
304
305 bool
306 operator== (FFmpegStream const & a, FFmpegStream const & b)
307 {
308         return a._id == b._id;
309 }
310
311 bool
312 operator!= (FFmpegStream const & a, FFmpegStream const & b)
313 {
314         return a._id != b._id;
315 }
316
317 DCPTime
318 FFmpegContent::full_length () const
319 {
320         FrameRateChange const frc (active_video_frame_rate (), film()->video_frame_rate ());
321         if (video) {
322                 return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor()), film()->video_frame_rate());
323         }
324
325         DCPOMATIC_ASSERT (audio);
326         return DCPTime::from_frames (llrint (audio->stream()->length() / frc.speed_up), audio->stream()->frame_rate());
327 }
328
329 void
330 FFmpegContent::set_filters (vector<Filter const *> const & filters)
331 {
332         {
333                 boost::mutex::scoped_lock lm (_mutex);
334                 _filters = filters;
335         }
336
337         signal_changed (FFmpegContentProperty::FILTERS);
338 }
339
340 string
341 FFmpegContent::identifier () const
342 {
343         SafeStringStream s;
344
345         s << Content::identifier() << "_"
346           << video->identifier() << "_"
347           << subtitle->identifier();
348
349         boost::mutex::scoped_lock lm (_mutex);
350
351         if (_subtitle_stream) {
352                 s << "_" << _subtitle_stream->identifier ();
353         }
354
355         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
356                 s << "_" << (*i)->id ();
357         }
358
359         return s.str ();
360 }
361
362 list<ContentTimePeriod>
363 FFmpegContent::image_subtitles_during (ContentTimePeriod period, bool starting) const
364 {
365         shared_ptr<FFmpegSubtitleStream> stream = subtitle_stream ();
366         if (!stream) {
367                 return list<ContentTimePeriod> ();
368         }
369
370         return stream->image_subtitles_during (period, starting);
371 }
372
373 list<ContentTimePeriod>
374 FFmpegContent::text_subtitles_during (ContentTimePeriod period, bool starting) const
375 {
376         shared_ptr<FFmpegSubtitleStream> stream = subtitle_stream ();
377         if (!stream) {
378                 return list<ContentTimePeriod> ();
379         }
380
381         return stream->text_subtitles_during (period, starting);
382 }
383
384 void
385 FFmpegContent::set_default_colour_conversion ()
386 {
387         dcp::Size const s = video->size ();
388
389         boost::mutex::scoped_lock lm (_mutex);
390
391         if (s.width < 1080) {
392                 video->set_colour_conversion (PresetColourConversion::from_id ("rec601").conversion);
393         } else {
394                 video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion);
395         }
396 }
397
398 void
399 FFmpegContent::add_properties (list<UserProperty>& p) const
400 {
401         Content::add_properties (p);
402         video->add_properties (p);
403         audio->add_properties (p);
404
405         if (_bits_per_pixel) {
406                 int const sub = 219 * pow (2, _bits_per_pixel.get() - 8);
407                 int const total = pow (2, _bits_per_pixel.get());
408
409                 switch (_color_range) {
410                 case AVCOL_RANGE_UNSPECIFIED:
411                         /// TRANSLATORS: this means that the range of pixel values used in this
412                         /// file is unknown (not specified in the file).
413                         p.push_back (UserProperty (_("Video"), _("Colour range"), _("Unspecified")));
414                         break;
415                 case AVCOL_RANGE_MPEG:
416                         /// TRANSLATORS: this means that the range of pixel values used in this
417                         /// file is limited, so that not all possible values are valid.
418                         p.push_back (
419                                 UserProperty (
420                                         _("Video"), _("Colour range"), String::compose (_("Limited (%1-%2)"), (total - sub) / 2, (total + sub) / 2)
421                                         )
422                                 );
423                         break;
424                 case AVCOL_RANGE_JPEG:
425                         /// TRANSLATORS: this means that the range of pixel values used in this
426                         /// file is full, so that all possible pixel values are valid.
427                         p.push_back (UserProperty (_("Video"), _("Colour range"), String::compose (_("Full (0-%1)"), total)));
428                         break;
429                 default:
430                         DCPOMATIC_ASSERT (false);
431                 }
432         } else {
433                 switch (_color_range) {
434                 case AVCOL_RANGE_UNSPECIFIED:
435                         /// TRANSLATORS: this means that the range of pixel values used in this
436                         /// file is unknown (not specified in the file).
437                         p.push_back (UserProperty (_("Video"), _("Colour range"), _("Unspecified")));
438                         break;
439                 case AVCOL_RANGE_MPEG:
440                         /// TRANSLATORS: this means that the range of pixel values used in this
441                         /// file is limited, so that not all possible values are valid.
442                         p.push_back (UserProperty (_("Video"), _("Colour range"), _("Limited")));
443                         break;
444                 case AVCOL_RANGE_JPEG:
445                         /// TRANSLATORS: this means that the range of pixel values used in this
446                         /// file is full, so that all possible pixel values are valid.
447                         p.push_back (UserProperty (_("Video"), _("Colour range"), _("Full")));
448                         break;
449                 default:
450                         DCPOMATIC_ASSERT (false);
451                 }
452         }
453
454         char const * primaries[] = {
455                 _("Unspecified"),
456                 _("BT709"),
457                 _("Unspecified"),
458                 _("Unspecified"),
459                 _("BT470M"),
460                 _("BT470BG"),
461                 _("SMPTE 170M (BT601)"),
462                 _("SMPTE 240M"),
463                 _("Film"),
464                 _("BT2020"),
465                 _("SMPTE ST 428-1 (CIE 1931 XYZ)")
466         };
467
468         DCPOMATIC_ASSERT (AVCOL_PRI_NB == 11);
469         p.push_back (UserProperty (_("Video"), _("Colour primaries"), primaries[_color_primaries]));
470
471         char const * transfers[] = {
472                 _("Unspecified"),
473                 _("BT709"),
474                 _("Unspecified"),
475                 _("Unspecified"),
476                 _("Gamma 22 (BT470M)"),
477                 _("Gamma 28 (BT470BG)"),
478                 _("SMPTE 170M (BT601)"),
479                 _("SMPTE 240M"),
480                 _("Linear"),
481                 _("Logarithmic (100:1 range)"),
482                 _("Logarithmic (316:1 range)"),
483                 _("IEC61966-2-4"),
484                 _("BT1361 extended colour gamut"),
485                 _("IEC61966-2-1 (sRGB or sYCC)"),
486                 _("BT2020 for a 10-bit system"),
487                 _("BT2020 for a 12-bit system"),
488                 _("SMPTE ST 2084 for 10, 12, 14 and 16 bit systems"),
489                 _("SMPTE ST 428-1")
490         };
491
492         DCPOMATIC_ASSERT (AVCOL_TRC_NB == 18);
493         p.push_back (UserProperty (_("Video"), _("Colour transfer characteristic"), transfers[_color_trc]));
494
495         char const * spaces[] = {
496                 _("RGB / sRGB (IEC61966-2-1)"),
497                 _("BT709"),
498                 _("Unspecified"),
499                 _("Unspecified"),
500                 _("FCC"),
501                 _("BT470BG (BT601-6)"),
502                 _("SMPTE 170M (BT601-6)"),
503                 _("SMPTE 240M"),
504                 _("YCOCG"),
505                 _("BT2020 non-constant luminance"),
506                 _("BT2020 constant luminance"),
507         };
508
509         DCPOMATIC_ASSERT (AVCOL_SPC_NB == 11);
510         p.push_back (UserProperty (_("Video"), _("Colourspace"), spaces[_colorspace]));
511
512         if (_bits_per_pixel) {
513                 p.push_back (UserProperty (_("Video"), _("Bits per pixel"), raw_convert<string> (_bits_per_pixel.get ())));
514         }
515 }
516
517 /** Our subtitle streams have colour maps, which can be changed, but
518  *  they have no way of signalling that change.  As a hack, we have this
519  *  method which callers can use when they've modified one of our subtitle
520  *  streams.
521  */
522 void
523 FFmpegContent::signal_subtitle_stream_changed ()
524 {
525         signal_changed (FFmpegContentProperty::SUBTITLE_STREAM);
526 }
527
528 vector<shared_ptr<FFmpegAudioStream> >
529 FFmpegContent::ffmpeg_audio_streams () const
530 {
531         vector<shared_ptr<FFmpegAudioStream> > fa;
532         BOOST_FOREACH (AudioStreamPtr i, audio->streams()) {
533                 fa.push_back (dynamic_pointer_cast<FFmpegAudioStream> (i));
534         }
535         return fa;
536 }