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