Supporters update.
[dcpomatic.git] / src / lib / ffmpeg_content.cc
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "ffmpeg_content.h"
22 #include "video_content.h"
23 #include "audio_content.h"
24 #include "ffmpeg_examiner.h"
25 #include "ffmpeg_subtitle_stream.h"
26 #include "ffmpeg_audio_stream.h"
27 #include "compose.hpp"
28 #include "job.h"
29 #include "util.h"
30 #include "filter.h"
31 #include "film.h"
32 #include "log.h"
33 #include "exceptions.h"
34 #include "frame_rate_change.h"
35 #include "text_content.h"
36 #include <dcp/raw_convert.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 using std::string;
49 using std::vector;
50 using std::list;
51 using std::cout;
52 using std::pair;
53 using std::make_pair;
54 using std::max;
55 using boost::shared_ptr;
56 using boost::dynamic_pointer_cast;
57 using boost::optional;
58 using dcp::raw_convert;
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 (boost::filesystem::path p)
65         : Content (p)
66         , _encrypted (false)
67 {
68
69 }
70
71 template <class T>
72 optional<T>
73 get_optional_enum (cxml::ConstNodePtr node, string name)
74 {
75         optional<int> const v = node->optional_number_child<int>(name);
76         if (!v) {
77                 return optional<T>();
78         }
79         return static_cast<T>(*v);
80 }
81
82 FFmpegContent::FFmpegContent (cxml::ConstNodePtr node, int version, list<string>& notes)
83         : Content (node)
84 {
85         video = VideoContent::from_xml (this, node, version);
86         audio = AudioContent::from_xml (this, node, version);
87         text = TextContent::from_xml (this, node, version);
88
89         list<cxml::NodePtr> c = node->node_children ("SubtitleStream");
90         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
91                 _subtitle_streams.push_back (shared_ptr<FFmpegSubtitleStream> (new FFmpegSubtitleStream (*i, version)));
92                 if ((*i)->optional_number_child<int> ("Selected")) {
93                         _subtitle_stream = _subtitle_streams.back ();
94                 }
95         }
96
97         c = node->node_children ("AudioStream");
98         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
99                 shared_ptr<FFmpegAudioStream> as (new FFmpegAudioStream (*i, version));
100                 audio->add_stream (as);
101                 if (version < 11 && !(*i)->optional_node_child ("Selected")) {
102                         /* This is an old file and this stream is not selected, so un-map it */
103                         as->set_mapping (AudioMapping (as->channels (), MAX_DCP_AUDIO_CHANNELS));
104                 }
105         }
106
107         c = node->node_children ("Filter");
108         for (list<cxml::NodePtr>::iterator i = c.begin(); i != c.end(); ++i) {
109                 Filter const * f = Filter::from_id ((*i)->content ());
110                 if (f) {
111                         _filters.push_back (f);
112                 } else {
113                         notes.push_back (String::compose (_("DCP-o-matic no longer supports the `%1' filter, so it has been turned off."), (*i)->content()));
114                 }
115         }
116
117         optional<ContentTime::Type> const f = node->optional_number_child<ContentTime::Type> ("FirstVideo");
118         if (f) {
119                 _first_video = ContentTime (f.get ());
120         }
121
122         _color_range = get_optional_enum<AVColorRange>(node, "ColorRange");
123         _color_primaries = get_optional_enum<AVColorPrimaries>(node, "ColorPrimaries");
124         _color_trc = get_optional_enum<AVColorTransferCharacteristic>(node, "ColorTransferCharacteristic");
125         _colorspace = get_optional_enum<AVColorSpace>(node, "Colorspace");
126         _bits_per_pixel = node->optional_number_child<int> ("BitsPerPixel");
127         _decryption_key = node->optional_string_child ("DecryptionKey");
128         _encrypted = node->optional_bool_child("Encrypted").get_value_or(false);
129 }
130
131 FFmpegContent::FFmpegContent (vector<shared_ptr<Content> > c)
132         : Content (c)
133 {
134         vector<shared_ptr<Content> >::const_iterator i = c.begin ();
135
136         bool need_video = false;
137         bool need_audio = false;
138         bool need_text = false;
139
140         if (i != c.end ()) {
141                 need_video = static_cast<bool> ((*i)->video);
142                 need_audio = static_cast<bool> ((*i)->audio);
143                 need_text = !(*i)->text.empty();
144         }
145
146         while (i != c.end ()) {
147                 if (need_video != static_cast<bool> ((*i)->video)) {
148                         throw JoinError (_("Content to be joined must all have or not have video"));
149                 }
150                 if (need_audio != static_cast<bool> ((*i)->audio)) {
151                         throw JoinError (_("Content to be joined must all have or not have audio"));
152                 }
153                 if (need_text != !(*i)->text.empty()) {
154                         throw JoinError (_("Content to be joined must all have or not have subtitles or captions"));
155                 }
156                 ++i;
157         }
158
159         if (need_video) {
160                 video.reset (new VideoContent (this, c));
161         }
162         if (need_audio) {
163                 audio.reset (new AudioContent (this, c));
164         }
165         if (need_text) {
166                 text.push_back (shared_ptr<TextContent> (new TextContent (this, c)));
167         }
168
169         shared_ptr<FFmpegContent> ref = dynamic_pointer_cast<FFmpegContent> (c[0]);
170         DCPOMATIC_ASSERT (ref);
171
172         for (size_t i = 0; i < c.size(); ++i) {
173                 shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c[i]);
174                 if (fc->only_text() && fc->only_text()->use() && *(fc->_subtitle_stream.get()) != *(ref->_subtitle_stream.get())) {
175                         throw JoinError (_("Content to be joined must use the same subtitle stream."));
176                 }
177         }
178
179         /* XXX: should probably check that more of the stuff below is the same in *this and ref */
180
181         _subtitle_streams = ref->subtitle_streams ();
182         _subtitle_stream = ref->subtitle_stream ();
183         _first_video = ref->_first_video;
184         _filters = ref->_filters;
185         _color_range = ref->_color_range;
186         _color_primaries = ref->_color_primaries;
187         _color_trc = ref->_color_trc;
188         _colorspace = ref->_colorspace;
189         _bits_per_pixel = ref->_bits_per_pixel;
190         _encrypted = ref->_encrypted;
191 }
192
193 void
194 FFmpegContent::as_xml (xmlpp::Node* node, bool with_paths) const
195 {
196         node->add_child("Type")->add_child_text ("FFmpeg");
197         Content::as_xml (node, with_paths);
198
199         if (video) {
200                 video->as_xml (node);
201         }
202
203         if (audio) {
204                 audio->as_xml (node);
205
206                 BOOST_FOREACH (AudioStreamPtr i, audio->streams ()) {
207                         shared_ptr<FFmpegAudioStream> f = dynamic_pointer_cast<FFmpegAudioStream> (i);
208                         DCPOMATIC_ASSERT (f);
209                         f->as_xml (node->add_child("AudioStream"));
210                 }
211         }
212
213         if (only_text()) {
214                 only_text()->as_xml (node);
215         }
216
217         boost::mutex::scoped_lock lm (_mutex);
218
219         for (vector<shared_ptr<FFmpegSubtitleStream> >::const_iterator i = _subtitle_streams.begin(); i != _subtitle_streams.end(); ++i) {
220                 xmlpp::Node* t = node->add_child("SubtitleStream");
221                 if (_subtitle_stream && *i == _subtitle_stream) {
222                         t->add_child("Selected")->add_child_text("1");
223                 }
224                 (*i)->as_xml (t);
225         }
226
227         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
228                 node->add_child("Filter")->add_child_text ((*i)->id ());
229         }
230
231         if (_first_video) {
232                 node->add_child("FirstVideo")->add_child_text (raw_convert<string> (_first_video.get().get()));
233         }
234
235         if (_color_range) {
236                 node->add_child("ColorRange")->add_child_text (raw_convert<string> (static_cast<int> (*_color_range)));
237         }
238         if (_color_primaries) {
239                 node->add_child("ColorPrimaries")->add_child_text (raw_convert<string> (static_cast<int> (*_color_primaries)));
240         }
241         if (_color_trc) {
242                 node->add_child("ColorTransferCharacteristic")->add_child_text (raw_convert<string> (static_cast<int> (*_color_trc)));
243         }
244         if (_colorspace) {
245                 node->add_child("Colorspace")->add_child_text (raw_convert<string> (static_cast<int> (*_colorspace)));
246         }
247         if (_bits_per_pixel) {
248                 node->add_child("BitsPerPixel")->add_child_text (raw_convert<string> (*_bits_per_pixel));
249         }
250         if (_decryption_key) {
251                 node->add_child("DecryptionKey")->add_child_text (_decryption_key.get());
252         }
253         if (_encrypted) {
254                 node->add_child("Encypted")->add_child_text ("1");
255         }
256 }
257
258 void
259 FFmpegContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
260 {
261         ChangeSignaller<Content> cc1 (this, FFmpegContentProperty::SUBTITLE_STREAMS);
262         ChangeSignaller<Content> cc2 (this, FFmpegContentProperty::SUBTITLE_STREAM);
263
264         job->set_progress_unknown ();
265
266         Content::examine (film, job);
267
268         shared_ptr<FFmpegExaminer> examiner (new FFmpegExaminer (shared_from_this (), job));
269
270         if (examiner->has_video ()) {
271                 video.reset (new VideoContent (this));
272                 video->take_from_examiner (examiner);
273         }
274
275         boost::filesystem::path first_path = path (0);
276
277         {
278                 boost::mutex::scoped_lock lm (_mutex);
279
280                 if (examiner->has_video ()) {
281                         _first_video = examiner->first_video ();
282                         _color_range = examiner->color_range ();
283                         _color_primaries = examiner->color_primaries ();
284                         _color_trc = examiner->color_trc ();
285                         _colorspace = examiner->colorspace ();
286                         _bits_per_pixel = examiner->bits_per_pixel ();
287
288                         if (examiner->rotation()) {
289                                 double rot = *examiner->rotation ();
290                                 if (fabs (rot - 180) < 1.0) {
291                                         _filters.push_back (Filter::from_id ("vflip"));
292                                         _filters.push_back (Filter::from_id ("hflip"));
293                                 } else if (fabs (rot - 90) < 1.0) {
294                                         _filters.push_back (Filter::from_id ("90clock"));
295                                 } else if (fabs (rot - 270) < 1.0) {
296                                         _filters.push_back (Filter::from_id ("90anticlock"));
297                                 }
298                         }
299                 }
300
301                 if (!examiner->audio_streams().empty ()) {
302                         audio.reset (new AudioContent (this));
303
304                         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, examiner->audio_streams ()) {
305                                 audio->add_stream (i);
306                         }
307
308                         AudioStreamPtr as = audio->streams().front();
309                         AudioMapping m = as->mapping ();
310                         m.make_default (film ? film->audio_processor() : 0, first_path);
311                         as->set_mapping (m);
312                 }
313
314                 _subtitle_streams = examiner->subtitle_streams ();
315                 if (!_subtitle_streams.empty ()) {
316                         text.clear ();
317                         text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_UNKNOWN)));
318                         _subtitle_stream = _subtitle_streams.front ();
319                 }
320
321                 _encrypted = first_path.extension() == ".ecinema";
322         }
323
324         if (examiner->has_video ()) {
325                 set_default_colour_conversion ();
326         }
327
328         if (examiner->has_video() && examiner->pulldown() && video_frame_rate() && fabs(*video_frame_rate() - 29.97) < 0.001) {
329                 /* FFmpeg has detected this file as 29.97 and the examiner thinks it is using "soft" 2:3 pulldown (telecine).
330                  * This means we can treat it as a 23.976fps file.
331                  */
332                 set_video_frame_rate (24000.0 / 1001);
333                 video->set_length (video->length() * 24.0 / 30);
334         }
335
336 #ifdef DCPOMATIC_VARIANT_SWAROOP
337         _id = examiner->id ();
338 #endif
339 }
340
341 string
342 FFmpegContent::summary () const
343 {
344         if (video && audio) {
345                 return String::compose (_("%1 [movie]"), path_summary ());
346         } else if (video) {
347                 return String::compose (_("%1 [video]"), path_summary ());
348         } else if (audio) {
349                 return String::compose (_("%1 [audio]"), path_summary ());
350         }
351
352         return path_summary ();
353 }
354
355 string
356 FFmpegContent::technical_summary () const
357 {
358         string as = "";
359         BOOST_FOREACH (shared_ptr<FFmpegAudioStream> i, ffmpeg_audio_streams ()) {
360                 as += i->technical_summary () + " " ;
361         }
362
363         if (as.empty ()) {
364                 as = "none";
365         }
366
367         string ss = "none";
368         if (_subtitle_stream) {
369                 ss = _subtitle_stream->technical_summary ();
370         }
371
372         string filt = Filter::ffmpeg_string (_filters);
373
374         string s = Content::technical_summary ();
375
376         if (video) {
377                 s += " - " + video->technical_summary ();
378         }
379
380         if (audio) {
381                 s += " - " + audio->technical_summary ();
382         }
383
384         return s + String::compose (
385                 "ffmpeg: audio %1 subtitle %2 filters %3", as, ss, filt
386                 );
387 }
388
389 void
390 FFmpegContent::set_subtitle_stream (shared_ptr<FFmpegSubtitleStream> s)
391 {
392         ChangeSignaller<Content> cc (this, FFmpegContentProperty::SUBTITLE_STREAM);
393
394         {
395                 boost::mutex::scoped_lock lm (_mutex);
396                 _subtitle_stream = s;
397         }
398 }
399
400 bool
401 operator== (FFmpegStream const & a, FFmpegStream const & b)
402 {
403         return a._id == b._id;
404 }
405
406 bool
407 operator!= (FFmpegStream const & a, FFmpegStream const & b)
408 {
409         return a._id != b._id;
410 }
411
412 DCPTime
413 FFmpegContent::full_length (shared_ptr<const Film> film) const
414 {
415         FrameRateChange const frc (film, shared_from_this());
416         if (video) {
417                 return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor()), film->video_frame_rate());
418         }
419
420         if (audio) {
421                 DCPTime longest;
422                 BOOST_FOREACH (AudioStreamPtr i, audio->streams()) {
423                         longest = max (longest, DCPTime::from_frames(llrint(i->length() / frc.speed_up), i->frame_rate()));
424                 }
425                 return longest;
426         }
427
428         /* XXX: subtitle content? */
429
430         return DCPTime();
431 }
432
433 DCPTime
434 FFmpegContent::approximate_length () const
435 {
436         if (video) {
437                 return DCPTime::from_frames (video->length_after_3d_combine(), 24);
438         }
439
440         DCPOMATIC_ASSERT (audio);
441
442         Frame longest = 0;
443         BOOST_FOREACH (AudioStreamPtr i, audio->streams ()) {
444                 longest = max (longest, Frame(llrint(i->length())));
445         }
446
447         return DCPTime::from_frames (longest, 24);
448 }
449
450 void
451 FFmpegContent::set_filters (vector<Filter const *> const & filters)
452 {
453         ChangeSignaller<Content> cc (this, FFmpegContentProperty::FILTERS);
454
455         {
456                 boost::mutex::scoped_lock lm (_mutex);
457                 _filters = filters;
458         }
459 }
460
461 string
462 FFmpegContent::identifier () const
463 {
464         string s = Content::identifier();
465
466         if (video) {
467                 s += "_" + video->identifier();
468         }
469
470         if (only_text() && only_text()->use() && only_text()->burn()) {
471                 s += "_" + only_text()->identifier();
472         }
473
474         boost::mutex::scoped_lock lm (_mutex);
475
476         if (_subtitle_stream) {
477                 s += "_" + _subtitle_stream->identifier ();
478         }
479
480         for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
481                 s += "_" + (*i)->id ();
482         }
483
484         return s;
485 }
486
487 void
488 FFmpegContent::set_default_colour_conversion ()
489 {
490         DCPOMATIC_ASSERT (video);
491
492         dcp::Size const s = video->size ();
493
494         boost::mutex::scoped_lock lm (_mutex);
495
496         switch (_colorspace.get_value_or(AVCOL_SPC_UNSPECIFIED)) {
497         case AVCOL_SPC_RGB:
498                 video->set_colour_conversion (PresetColourConversion::from_id ("srgb").conversion);
499                 break;
500         case AVCOL_SPC_BT709:
501                 video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion);
502                 break;
503         case AVCOL_SPC_BT470BG:
504         case AVCOL_SPC_SMPTE170M:
505         case AVCOL_SPC_SMPTE240M:
506                 video->set_colour_conversion (PresetColourConversion::from_id ("rec601").conversion);
507                 break;
508         case AVCOL_SPC_BT2020_CL:
509         case AVCOL_SPC_BT2020_NCL:
510                 video->set_colour_conversion (PresetColourConversion::from_id ("rec2020").conversion);
511                 break;
512         default:
513                 if (s.width < 1080) {
514                         video->set_colour_conversion (PresetColourConversion::from_id ("rec601").conversion);
515                 } else {
516                         video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion);
517                 }
518                 break;
519         }
520 }
521
522 void
523 FFmpegContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const
524 {
525         Content::add_properties (film, p);
526
527         if (video) {
528                 video->add_properties (p);
529
530                 if (_bits_per_pixel) {
531                         int const sub = 219 * pow (2, _bits_per_pixel.get() - 8);
532                         int const total = pow (2, _bits_per_pixel.get());
533
534                         switch (_color_range.get_value_or(AVCOL_RANGE_UNSPECIFIED)) {
535                         case AVCOL_RANGE_UNSPECIFIED:
536                                 /// TRANSLATORS: this means that the range of pixel values used in this
537                                 /// file is unknown (not specified in the file).
538                                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour range"), _("Unspecified")));
539                                 break;
540                         case AVCOL_RANGE_MPEG:
541                                 /// TRANSLATORS: this means that the range of pixel values used in this
542                                 /// file is limited, so that not all possible values are valid.
543                                 p.push_back (
544                                         UserProperty (
545                                                 UserProperty::VIDEO, _("Colour range"), String::compose (_("Limited (%1-%2)"), (total - sub) / 2, (total + sub) / 2)
546                                                 )
547                                         );
548                                 break;
549                         case AVCOL_RANGE_JPEG:
550                                 /// TRANSLATORS: this means that the range of pixel values used in this
551                                 /// file is full, so that all possible pixel values are valid.
552                                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour range"), String::compose (_("Full (0-%1)"), total)));
553                                 break;
554                         default:
555                                 DCPOMATIC_ASSERT (false);
556                         }
557                 } else {
558                         switch (_color_range.get_value_or(AVCOL_RANGE_UNSPECIFIED)) {
559                         case AVCOL_RANGE_UNSPECIFIED:
560                                 /// TRANSLATORS: this means that the range of pixel values used in this
561                                 /// file is unknown (not specified in the file).
562                                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour range"), _("Unspecified")));
563                                 break;
564                         case AVCOL_RANGE_MPEG:
565                                 /// TRANSLATORS: this means that the range of pixel values used in this
566                                 /// file is limited, so that not all possible values are valid.
567                                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour range"), _("Limited")));
568                                 break;
569                         case AVCOL_RANGE_JPEG:
570                                 /// TRANSLATORS: this means that the range of pixel values used in this
571                                 /// file is full, so that all possible pixel values are valid.
572                                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour range"), _("Full")));
573                                 break;
574                         default:
575                                 DCPOMATIC_ASSERT (false);
576                         }
577                 }
578
579                 char const * primaries[] = {
580                         _("Unspecified"),
581                         _("BT709"),
582                         _("Unspecified"),
583                         _("Unspecified"),
584                         _("BT470M"),
585                         _("BT470BG"),
586                         _("SMPTE 170M (BT601)"),
587                         _("SMPTE 240M"),
588                         _("Film"),
589                         _("BT2020"),
590                         _("SMPTE ST 428-1 (CIE 1931 XYZ)"),
591                         _("SMPTE ST 431-2 (2011)"),
592                         _("SMPTE ST 432-1 D65 (2010)"), // 12
593                         "", // 13
594                         "", // 14
595                         "", // 15
596                         "", // 16
597                         "", // 17
598                         "", // 18
599                         "", // 19
600                         "", // 20
601                         "", // 21
602                         _("JEDEC P22")
603                 };
604
605                 DCPOMATIC_ASSERT (AVCOL_PRI_NB <= 23);
606                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour primaries"), primaries[_color_primaries.get_value_or(AVCOL_PRI_UNSPECIFIED)]));
607
608                 char const * transfers[] = {
609                         _("Unspecified"),
610                         _("BT709"),
611                         _("Unspecified"),
612                         _("Unspecified"),
613                         _("Gamma 22 (BT470M)"),
614                         _("Gamma 28 (BT470BG)"),
615                         _("SMPTE 170M (BT601)"),
616                         _("SMPTE 240M"),
617                         _("Linear"),
618                         _("Logarithmic (100:1 range)"),
619                         _("Logarithmic (316:1 range)"),
620                         _("IEC61966-2-4"),
621                         _("BT1361 extended colour gamut"),
622                         _("IEC61966-2-1 (sRGB or sYCC)"),
623                         _("BT2020 for a 10-bit system"),
624                         _("BT2020 for a 12-bit system"),
625                         _("SMPTE ST 2084 for 10, 12, 14 and 16 bit systems"),
626                         _("SMPTE ST 428-1"),
627                         _("ARIB STD-B67 ('Hybrid log-gamma')")
628                 };
629
630                 DCPOMATIC_ASSERT (AVCOL_TRC_NB <= 19);
631                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colour transfer characteristic"), transfers[_color_trc.get_value_or(AVCOL_TRC_UNSPECIFIED)]));
632
633                 char const * spaces[] = {
634                         _("RGB / sRGB (IEC61966-2-1)"),
635                         _("BT709"),
636                         _("Unspecified"),
637                         _("Unspecified"),
638                         _("FCC"),
639                         _("BT470BG (BT601-6)"),
640                         _("SMPTE 170M (BT601-6)"),
641                         _("SMPTE 240M"),
642                         _("YCOCG"),
643                         _("BT2020 non-constant luminance"),
644                         _("BT2020 constant luminance"),
645                         _("SMPTE 2085, Y'D'zD'x"),
646                         _("Chroma-derived non-constant luminance"),
647                         _("Chroma-derived constant luminance"),
648                         _("BT2100")
649                 };
650
651                 DCPOMATIC_ASSERT (AVCOL_SPC_NB == 15);
652                 p.push_back (UserProperty (UserProperty::VIDEO, _("Colourspace"), spaces[_colorspace.get_value_or(AVCOL_SPC_UNSPECIFIED)]));
653
654                 if (_bits_per_pixel) {
655                         p.push_back (UserProperty (UserProperty::VIDEO, _("Bits per pixel"), *_bits_per_pixel));
656                 }
657         }
658
659         if (audio) {
660                 audio->add_properties (film, p);
661         }
662 }
663
664 /** Our subtitle streams have colour maps, which can be changed, but
665  *  they have no way of signalling that change.  As a hack, we have this
666  *  method which callers can use when they've modified one of our subtitle
667  *  streams.
668  */
669 void
670 FFmpegContent::signal_subtitle_stream_changed ()
671 {
672         /* XXX: this is too late; really it should be before the change */
673         ChangeSignaller<Content> cc (this, FFmpegContentProperty::SUBTITLE_STREAM);
674 }
675
676 vector<shared_ptr<FFmpegAudioStream> >
677 FFmpegContent::ffmpeg_audio_streams () const
678 {
679         vector<shared_ptr<FFmpegAudioStream> > fa;
680
681         if (audio) {
682                 BOOST_FOREACH (AudioStreamPtr i, audio->streams()) {
683                         fa.push_back (dynamic_pointer_cast<FFmpegAudioStream> (i));
684                 }
685         }
686
687         return fa;
688 }
689
690 void
691 FFmpegContent::take_settings_from (shared_ptr<const Content> c)
692 {
693         shared_ptr<const FFmpegContent> fc = dynamic_pointer_cast<const FFmpegContent> (c);
694         if (!fc) {
695                 return;
696                 }
697
698         Content::take_settings_from (c);
699         _filters = fc->_filters;
700 }