Fix the build for older macOS.
[dcpomatic.git] / src / lib / dcp_content.cc
1 /*
2     Copyright (C) 2014-2020 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
22 #include "atmos_content.h"
23 #include "dcp_content.h"
24 #include "video_content.h"
25 #include "audio_content.h"
26 #include "dcp_examiner.h"
27 #include "job.h"
28 #include "film.h"
29 #include "config.h"
30 #include "overlaps.h"
31 #include "compose.hpp"
32 #include "dcp_decoder.h"
33 #include "log.h"
34 #include "dcpomatic_log.h"
35 #include "text_content.h"
36 #include <dcp/dcp.h>
37 #include <dcp/raw_convert.h>
38 #include <dcp/exceptions.h>
39 #include <dcp/reel_closed_caption_asset.h>
40 #include <dcp/reel_picture_asset.h>
41 #include <dcp/reel_subtitle_asset.h>
42 #include <dcp/reel.h>
43 #include <libxml++/libxml++.h>
44 #include <iterator>
45 #include <iostream>
46
47 #include "i18n.h"
48
49
50 using std::cout;
51 using std::dynamic_pointer_cast;
52 using std::function;
53 using std::list;
54 using std::make_shared;
55 using std::shared_ptr;
56 using std::string;
57 using std::vector;
58 using boost::optional;
59 using boost::scoped_ptr;
60 #if BOOST_VERSION >= 106100
61 using namespace boost::placeholders;
62 #endif
63 using dcp::raw_convert;
64 using namespace dcpomatic;
65
66
67 int const DCPContentProperty::NEEDS_ASSETS       = 600;
68 int const DCPContentProperty::NEEDS_KDM          = 601;
69 int const DCPContentProperty::REFERENCE_VIDEO    = 602;
70 int const DCPContentProperty::REFERENCE_AUDIO    = 603;
71 int const DCPContentProperty::REFERENCE_TEXT     = 604;
72 int const DCPContentProperty::NAME               = 605;
73 int const DCPContentProperty::TEXTS              = 606;
74 int const DCPContentProperty::CPL                = 607;
75
76
77 DCPContent::DCPContent (boost::filesystem::path p)
78         : _encrypted (false)
79         , _needs_assets (false)
80         , _kdm_valid (false)
81         , _reference_video (false)
82         , _reference_audio (false)
83         , _three_d (false)
84 {
85         LOG_GENERAL ("Creating DCP content from %1", p.string());
86
87         read_directory (p);
88         set_default_colour_conversion ();
89
90         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
91                 _reference_text[i] = false;
92         }
93 }
94
95 DCPContent::DCPContent (cxml::ConstNodePtr node, int version)
96         : Content (node)
97 {
98         video = VideoContent::from_xml (this, node, version);
99         audio = AudioContent::from_xml (this, node, version);
100         list<string> notes;
101         text = TextContent::from_xml (this, node, version, notes);
102         atmos = AtmosContent::from_xml (this, node);
103
104         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
105                 _reference_text[i] = false;
106         }
107
108         if (video && audio) {
109                 audio->set_stream (
110                         make_shared<AudioStream> (
111                                 node->number_child<int> ("AudioFrameRate"),
112                                 /* AudioLength was not present in some old metadata versions */
113                                 node->optional_number_child<Frame>("AudioLength").get_value_or (
114                                         video->length() * node->number_child<int>("AudioFrameRate") / video_frame_rate().get()
115                                         ),
116                                 AudioMapping (node->node_child ("AudioMapping"), version)
117                                 )
118                         );
119         }
120
121         _name = node->string_child ("Name");
122         _encrypted = node->bool_child ("Encrypted");
123         _needs_assets = node->optional_bool_child("NeedsAssets").get_value_or (false);
124         if (node->optional_node_child ("KDM")) {
125                 _kdm = dcp::EncryptedKDM (node->string_child ("KDM"));
126         }
127         _kdm_valid = node->bool_child ("KDMValid");
128         _reference_video = node->optional_bool_child ("ReferenceVideo").get_value_or (false);
129         _reference_audio = node->optional_bool_child ("ReferenceAudio").get_value_or (false);
130         if (version >= 37) {
131                 _reference_text[static_cast<int>(TextType::OPEN_SUBTITLE)] = node->optional_bool_child("ReferenceOpenSubtitle").get_value_or(false);
132                 _reference_text[static_cast<int>(TextType::CLOSED_CAPTION)] = node->optional_bool_child("ReferenceClosedCaption").get_value_or(false);
133         } else {
134                 _reference_text[static_cast<int>(TextType::OPEN_SUBTITLE)] = node->optional_bool_child("ReferenceSubtitle").get_value_or(false);
135                 _reference_text[static_cast<int>(TextType::CLOSED_CAPTION)] = false;
136         }
137         if (node->optional_string_child("Standard")) {
138                 auto const s = node->optional_string_child("Standard").get();
139                 if (s == "Interop") {
140                         _standard = dcp::Standard::INTEROP;
141                 } else if (s == "SMPTE") {
142                         _standard = dcp::Standard::SMPTE;
143                 } else {
144                         DCPOMATIC_ASSERT (false);
145                 }
146         }
147         _three_d = node->optional_bool_child("ThreeD").get_value_or (false);
148
149         auto ck = node->optional_string_child("ContentKind");
150         if (ck) {
151                 _content_kind = dcp::content_kind_from_string (*ck);
152         }
153         _cpl = node->optional_string_child("CPL");
154         for (auto i: node->node_children("ReelLength")) {
155                 _reel_lengths.push_back (raw_convert<int64_t> (i->content ()));
156         }
157
158         for (auto i: node->node_children("Marker")) {
159                 _markers[dcp::marker_from_string(i->string_attribute("type"))] = ContentTime(raw_convert<int64_t>(i->content()));
160         }
161
162         for (auto i: node->node_children("Rating")) {
163                 _ratings.push_back (dcp::Rating(i));
164         }
165
166         for (auto i: node->node_children("ContentVersion")) {
167                 _content_versions.push_back (i->content());
168         }
169 }
170
171 void
172 DCPContent::read_directory (boost::filesystem::path p)
173 {
174         using namespace boost::filesystem;
175
176         bool have_assetmap = false;
177         bool have_metadata = false;
178
179         for (directory_iterator i(p); i != directory_iterator(); ++i) {
180                 if (i->path().filename() == "ASSETMAP" || i->path().filename() == "ASSETMAP.xml") {
181                         have_assetmap = true;
182                 } else if (i->path().filename() == "metadata.xml") {
183                         have_metadata = true;
184                 }
185         }
186
187         if (!have_assetmap) {
188                 if (!have_metadata) {
189                         throw DCPError ("No ASSETMAP or ASSETMAP.xml file found: is this a DCP?");
190                 } else {
191                         throw ProjectFolderError ();
192                 }
193         }
194
195         read_sub_directory (p);
196 }
197
198 void
199 DCPContent::read_sub_directory (boost::filesystem::path p)
200 {
201         LOG_GENERAL ("DCPContent::read_sub_directory reads %1", p.string());
202         for (auto i: boost::filesystem::directory_iterator(p)) {
203                 if (boost::filesystem::is_regular_file(i.path())) {
204                         LOG_GENERAL ("Inside there's regular file %1", i.path().string());
205                         add_path (i.path());
206                 } else if (boost::filesystem::is_directory(i.path()) && i.path().filename() != ".AppleDouble") {
207                         LOG_GENERAL ("Inside there's directory %1", i.path().string());
208                         read_sub_directory (i.path());
209                 }
210         }
211 }
212
213 /** @param film Film, or 0 */
214 void
215 DCPContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job)
216 {
217         bool const needed_assets = needs_assets ();
218         bool const needed_kdm = needs_kdm ();
219         string const old_name = name ();
220
221         ContentChangeSignaller cc_texts (this, DCPContentProperty::TEXTS);
222         ContentChangeSignaller cc_assets (this, DCPContentProperty::NEEDS_ASSETS);
223         ContentChangeSignaller cc_kdm (this, DCPContentProperty::NEEDS_KDM);
224         ContentChangeSignaller cc_name (this, DCPContentProperty::NAME);
225
226         if (job) {
227                 job->set_progress_unknown ();
228         }
229         Content::examine (film, job);
230
231         auto examiner = make_shared<DCPExaminer>(shared_from_this(), film ? film->tolerant() : true);
232
233         if (examiner->has_video()) {
234                 {
235                         boost::mutex::scoped_lock lm (_mutex);
236                         video = make_shared<VideoContent>(this);
237                 }
238                 video->take_from_examiner (examiner);
239                 set_default_colour_conversion ();
240         }
241
242         if (examiner->has_audio()) {
243                 {
244                         boost::mutex::scoped_lock lm (_mutex);
245                         audio = make_shared<AudioContent>(this);
246                 }
247                 auto as = make_shared<AudioStream>(examiner->audio_frame_rate(), examiner->audio_length(), examiner->audio_channels());
248                 audio->set_stream (as);
249                 auto m = as->mapping ();
250                 m.make_default (film ? film->audio_processor() : 0);
251                 as->set_mapping (m);
252         }
253
254         if (examiner->has_atmos()) {
255                 {
256                         boost::mutex::scoped_lock lm (_mutex);
257                         atmos = make_shared<AtmosContent>(this);
258                 }
259                 /* Setting length will cause calculations to be made based on edit rate, so that must
260                  * be set up first otherwise hard-to-spot exceptions will be thrown.
261                  */
262                 atmos->set_edit_rate (examiner->atmos_edit_rate());
263                 atmos->set_length (examiner->atmos_length());
264         }
265
266         list<shared_ptr<TextContent>> new_text;
267
268         for (int i = 0; i < examiner->text_count(TextType::OPEN_SUBTITLE); ++i) {
269                 auto c = make_shared<TextContent>(this, TextType::OPEN_SUBTITLE, TextType::OPEN_SUBTITLE);
270                 c->set_language (examiner->open_subtitle_language());
271                 new_text.push_back (c);
272         }
273
274         for (int i = 0; i < examiner->text_count(TextType::CLOSED_CAPTION); ++i) {
275                 auto c = make_shared<TextContent>(this, TextType::CLOSED_CAPTION, TextType::CLOSED_CAPTION);
276                 c->set_dcp_track (examiner->dcp_text_track(i));
277                 new_text.push_back (c);
278         }
279
280         {
281                 boost::mutex::scoped_lock lm (_mutex);
282                 text = new_text;
283                 _name = examiner->name ();
284                 _encrypted = examiner->encrypted ();
285                 _needs_assets = examiner->needs_assets ();
286                 _kdm_valid = examiner->kdm_valid ();
287                 _standard = examiner->standard ();
288                 _three_d = examiner->three_d ();
289                 _content_kind = examiner->content_kind ();
290                 _cpl = examiner->cpl ();
291                 _reel_lengths = examiner->reel_lengths ();
292                 for (auto const& i: examiner->markers()) {
293                         _markers[i.first] = ContentTime(i.second.as_editable_units_ceil(DCPTime::HZ));
294                 }
295                 _ratings = examiner->ratings ();
296                 _content_versions = examiner->content_versions ();
297         }
298
299         if (needed_assets == needs_assets()) {
300                 cc_assets.abort ();
301         }
302
303         if (needed_kdm == needs_kdm()) {
304                 cc_kdm.abort ();
305         }
306
307         if (old_name == name()) {
308                 cc_name.abort ();
309         }
310
311         if (video) {
312                 video->set_frame_type (_three_d ? VideoFrameType::THREE_D : VideoFrameType::TWO_D);
313         }
314 }
315
316 string
317 DCPContent::summary () const
318 {
319         boost::mutex::scoped_lock lm (_mutex);
320         return String::compose (_("%1 [DCP]"), _name);
321 }
322
323 string
324 DCPContent::technical_summary () const
325 {
326         string s = Content::technical_summary() + " - ";
327         if (video) {
328                 s += video->technical_summary() + " - ";
329         }
330         if (audio) {
331                 s += audio->technical_summary() + " - ";
332         }
333         return s;
334 }
335
336 void
337 DCPContent::as_xml (xmlpp::Node* node, bool with_paths) const
338 {
339         node->add_child("Type")->add_child_text ("DCP");
340
341         Content::as_xml (node, with_paths);
342
343         if (video) {
344                 video->as_xml (node);
345         }
346
347         if (audio) {
348                 audio->as_xml (node);
349                 node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio->stream()->frame_rate()));
350                 node->add_child("AudioLength")->add_child_text (raw_convert<string> (audio->stream()->length()));
351                 audio->stream()->mapping().as_xml (node->add_child("AudioMapping"));
352         }
353
354         for (auto i: text) {
355                 i->as_xml (node);
356         }
357
358         if (atmos) {
359                 atmos->as_xml (node);
360         }
361
362         boost::mutex::scoped_lock lm (_mutex);
363         node->add_child("Name")->add_child_text (_name);
364         node->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
365         node->add_child("NeedsAssets")->add_child_text (_needs_assets ? "1" : "0");
366         if (_kdm) {
367                 node->add_child("KDM")->add_child_text (_kdm->as_xml ());
368         }
369         node->add_child("KDMValid")->add_child_text (_kdm_valid ? "1" : "0");
370         node->add_child("ReferenceVideo")->add_child_text (_reference_video ? "1" : "0");
371         node->add_child("ReferenceAudio")->add_child_text (_reference_audio ? "1" : "0");
372         node->add_child("ReferenceOpenSubtitle")->add_child_text(_reference_text[static_cast<int>(TextType::OPEN_SUBTITLE)] ? "1" : "0");
373         node->add_child("ReferenceClosedCaption")->add_child_text(_reference_text[static_cast<int>(TextType::CLOSED_CAPTION)] ? "1" : "0");
374         if (_standard) {
375                 switch (_standard.get ()) {
376                 case dcp::Standard::INTEROP:
377                         node->add_child("Standard")->add_child_text ("Interop");
378                         break;
379                 case dcp::Standard::SMPTE:
380                         node->add_child("Standard")->add_child_text ("SMPTE");
381                         break;
382                 default:
383                         DCPOMATIC_ASSERT (false);
384                 }
385         }
386         node->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
387         if (_content_kind) {
388                 node->add_child("ContentKind")->add_child_text(dcp::content_kind_to_string(*_content_kind));
389         }
390         if (_cpl) {
391                 node->add_child("CPL")->add_child_text (_cpl.get ());
392         }
393         for (auto i: _reel_lengths) {
394                 node->add_child("ReelLength")->add_child_text (raw_convert<string> (i));
395         }
396
397         for (auto const& i: _markers) {
398                 auto marker = node->add_child("Marker");
399                 marker->set_attribute("type", dcp::marker_to_string(i.first));
400                 marker->add_child_text(raw_convert<string>(i.second.get()));
401         }
402
403         for (auto i: _ratings) {
404                 auto rating = node->add_child("Rating");
405                 i.as_xml (rating);
406         }
407
408         for (auto i: _content_versions) {
409                 node->add_child("ContentVersion")->add_child_text(i);
410         }
411 }
412
413 DCPTime
414 DCPContent::full_length (shared_ptr<const Film> film) const
415 {
416         if (!video) {
417                 return {};
418         }
419         FrameRateChange const frc (film, shared_from_this());
420         return DCPTime::from_frames (llrint(video->length() * frc.factor()), film->video_frame_rate());
421 }
422
423 DCPTime
424 DCPContent::approximate_length () const
425 {
426         if (!video) {
427                 return {};
428         }
429         return DCPTime::from_frames (video->length(), 24);
430 }
431
432 string
433 DCPContent::identifier () const
434 {
435         string s = Content::identifier() + "_";
436
437         if (video) {
438                 s += video->identifier() + "_";
439         }
440
441         for (auto i: text) {
442                 s += i->identifier () + " ";
443         }
444
445         s += string (_reference_video ? "1" : "0");
446         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
447                 s += string (_reference_text[i] ? "1" : "0");
448         }
449         return s;
450 }
451
452 void
453 DCPContent::add_kdm (dcp::EncryptedKDM k)
454 {
455         _kdm = k;
456 }
457
458 void
459 DCPContent::add_ov (boost::filesystem::path ov)
460 {
461         read_directory (ov);
462 }
463
464 bool
465 DCPContent::can_be_played () const
466 {
467         return !needs_kdm() && !needs_assets();
468 }
469
470 bool
471 DCPContent::needs_kdm () const
472 {
473         boost::mutex::scoped_lock lm (_mutex);
474         return _encrypted && !_kdm_valid;
475 }
476
477 bool
478 DCPContent::needs_assets () const
479 {
480         boost::mutex::scoped_lock lm (_mutex);
481         return _needs_assets;
482 }
483
484 vector<boost::filesystem::path>
485 DCPContent::directories () const
486 {
487         return dcp::DCP::directories_from_files (paths());
488 }
489
490 void
491 DCPContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const
492 {
493         Content::add_properties (film, p);
494         if (video) {
495                 video->add_properties (p);
496         }
497         if (audio) {
498                 audio->add_properties (film, p);
499         }
500 }
501
502 void
503 DCPContent::set_default_colour_conversion ()
504 {
505         /* Default to no colour conversion for DCPs */
506         if (video) {
507                 video->unset_colour_conversion ();
508         }
509 }
510
511 void
512 DCPContent::set_reference_video (bool r)
513 {
514         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_VIDEO);
515
516         {
517                 boost::mutex::scoped_lock lm (_mutex);
518                 _reference_video = r;
519         }
520 }
521
522 void
523 DCPContent::set_reference_audio (bool r)
524 {
525         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_AUDIO);
526
527         {
528                 boost::mutex::scoped_lock lm (_mutex);
529                 _reference_audio = r;
530         }
531 }
532
533 void
534 DCPContent::set_reference_text (TextType type, bool r)
535 {
536         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_TEXT);
537
538         {
539                 boost::mutex::scoped_lock lm (_mutex);
540                 _reference_text[static_cast<int>(type)] = r;
541         }
542 }
543
544 list<DCPTimePeriod>
545 DCPContent::reels (shared_ptr<const Film> film) const
546 {
547         auto reel_lengths = _reel_lengths;
548         if (reel_lengths.empty()) {
549                 /* Old metadata with no reel lengths; get them here instead */
550                 try {
551                         scoped_ptr<DCPExaminer> examiner (new DCPExaminer(shared_from_this(), film->tolerant()));
552                         reel_lengths = examiner->reel_lengths ();
553                 } catch (...) {
554                         /* Could not examine the DCP; guess reels */
555                         reel_lengths.push_back (length_after_trim(film).frames_round(film->video_frame_rate()));
556                 }
557         }
558
559         list<DCPTimePeriod> p;
560
561         /* This content's frame rate must be the same as the output DCP rate, so we can
562            convert `directly' from ContentTime to DCPTime.
563         */
564
565         /* The starting point of this content on the timeline */
566         auto pos = position() - DCPTime (trim_start().get());
567
568         for (auto i: reel_lengths) {
569                 /* This reel runs from `pos' to `to' */
570                 DCPTime const to = pos + DCPTime::from_frames (i, film->video_frame_rate());
571                 if (to > position()) {
572                         p.push_back (DCPTimePeriod(max(position(), pos), min(end(film), to)));
573                         if (to > end(film)) {
574                                 break;
575                         }
576                 }
577                 pos = to;
578         }
579
580         return p;
581 }
582
583 list<DCPTime>
584 DCPContent::reel_split_points (shared_ptr<const Film> film) const
585 {
586         list<DCPTime> s;
587         for (auto i: reels(film)) {
588                 s.push_back (i.from);
589         }
590         return s;
591 }
592
593 bool
594 DCPContent::can_reference (shared_ptr<const Film> film, function<bool (shared_ptr<const Content>)> part, string overlapping, string& why_not) const
595 {
596         /* We must be using the same standard as the film */
597         if (_standard) {
598                 if (_standard.get() == dcp::Standard::INTEROP && !film->interop()) {
599                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
600                         why_not = _("it is Interop and the film is set to SMPTE.");
601                         return false;
602                 } else if (_standard.get() == dcp::Standard::SMPTE && film->interop()) {
603                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
604                         why_not = _("it is SMPTE and the film is set to Interop.");
605                         return false;
606                 }
607         }
608
609         /* And the same frame rate */
610         if (!video_frame_rate() || (lrint(video_frame_rate().get()) != film->video_frame_rate())) {
611                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
612                 why_not = _("it has a different frame rate to the film.");
613                 return false;
614         }
615
616         auto const fr = film->reels ();
617
618         list<DCPTimePeriod> reel_list;
619         try {
620                 reel_list = reels (film);
621         } catch (dcp::ReadError &) {
622                 /* We couldn't read the DCP; it's probably missing */
623                 return false;
624         } catch (dcp::KDMDecryptionError &) {
625                 /* We have an incorrect KDM */
626                 return false;
627         }
628
629         /* fr must contain reels().  It can also contain other reels, but it must at
630            least contain reels().
631         */
632         for (auto i: reel_list) {
633                 if (find (fr.begin(), fr.end(), i) == fr.end ()) {
634                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
635                         why_not = _("its reel lengths differ from those in the film; set the reel mode to 'split by video content'.");
636                         return false;
637                 }
638         }
639
640         auto a = overlaps (film, film->content(), part, position(), end(film));
641         if (a.size() != 1 || a.front().get() != this) {
642                 why_not = overlapping;
643                 return false;
644         }
645
646         return true;
647 }
648
649 static
650 bool check_video (shared_ptr<const Content> c)
651 {
652         return static_cast<bool>(c->video) && c->video->use();
653 }
654
655 bool
656 DCPContent::can_reference_video (shared_ptr<const Film> film, string& why_not) const
657 {
658         if (!video) {
659                 why_not = _("There is no video in this DCP");
660                 return false;
661         }
662
663         if (film->resolution() != resolution()) {
664                 if (resolution() == Resolution::FOUR_K) {
665                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
666                         why_not = _("it is 4K and the film is 2K.");
667                 } else {
668                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
669                         why_not = _("it is 2K and the film is 4K.");
670                 }
671                 return false;
672         } else if (film->frame_size() != video->size()) {
673                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
674                 why_not = _("its video frame size differs from the film's.");
675                 return false;
676         }
677
678         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
679         return can_reference (film, bind (&check_video, _1), _("it overlaps other video content; remove the other content."), why_not);
680 }
681
682 static
683 bool check_audio (shared_ptr<const Content> c)
684 {
685         return static_cast<bool>(c->audio) && !c->audio->mapping().mapped_output_channels().empty();
686 }
687
688 bool
689 DCPContent::can_reference_audio (shared_ptr<const Film> film, string& why_not) const
690 {
691         shared_ptr<DCPDecoder> decoder;
692         try {
693                 decoder.reset (new DCPDecoder (film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>()));
694         } catch (dcp::ReadError &) {
695                 /* We couldn't read the DCP, so it's probably missing */
696                 return false;
697         } catch (DCPError &) {
698                 /* We couldn't read the DCP, so it's probably missing */
699                 return false;
700         } catch (dcp::KDMDecryptionError &) {
701                 /* We have an incorrect KDM */
702                 return false;
703         }
704
705         for (auto i: decoder->reels()) {
706                 if (!i->main_sound()) {
707                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
708                         why_not = _("it does not have sound in all its reels.");
709                         return false;
710                 }
711         }
712
713         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
714         return can_reference (film, bind (&check_audio, _1), _("it overlaps other audio content; remove the other content."), why_not);
715 }
716
717 static
718 bool check_text (shared_ptr<const Content> c)
719 {
720         return !c->text.empty();
721 }
722
723 bool
724 DCPContent::can_reference_text (shared_ptr<const Film> film, TextType type, string& why_not) const
725 {
726         shared_ptr<DCPDecoder> decoder;
727         try {
728                 decoder.reset (new DCPDecoder (film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>()));
729         } catch (dcp::ReadError &) {
730                 /* We couldn't read the DCP, so it's probably missing */
731                 return false;
732         } catch (dcp::KDMDecryptionError &) {
733                 /* We have an incorrect KDM */
734                 return false;
735         }
736
737         for (auto i: decoder->reels()) {
738                 if (type == TextType::OPEN_SUBTITLE) {
739                         if (!i->main_subtitle()) {
740                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
741                                 why_not = _("it does not have open subtitles in all its reels.");
742                                 return false;
743                         } else if (i->main_subtitle()->entry_point().get_value_or(0) != 0) {
744                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
745                                 why_not = _("one of its subtitle reels has a non-zero entry point so it must be re-written.");
746                                 return false;
747                         }
748                 }
749                 if (type == TextType::CLOSED_CAPTION) {
750                         if (i->closed_captions().empty()) {
751                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
752                                 why_not = _("it does not have closed captions in all its reels.");
753                                 return false;
754                         }
755                         for (auto j: i->closed_captions()) {
756                                 if (j->entry_point().get_value_or(0) != 0) {
757                                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
758                                         why_not = _("one of its closed caption has a non-zero entry point so it must be re-written.");
759                                         return false;
760                                 }
761                         }
762                 }
763         }
764
765         if (trim_start() != dcpomatic::ContentTime()) {
766                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
767                 why_not = _("it has a start trim so its subtitles or closed captions must be re-written.");
768                 return false;
769         }
770
771         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
772         return can_reference (film, bind (&check_text, _1), _("it overlaps other text content; remove the other content."), why_not);
773 }
774
775 void
776 DCPContent::take_settings_from (shared_ptr<const Content> c)
777 {
778         auto dc = dynamic_pointer_cast<const DCPContent>(c);
779         if (!dc) {
780                 return;
781         }
782
783         _reference_video = dc->_reference_video;
784         _reference_audio = dc->_reference_audio;
785         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
786                 _reference_text[i] = dc->_reference_text[i];
787         }
788 }
789
790 void
791 DCPContent::set_cpl (string id)
792 {
793         ContentChangeSignaller cc (this, DCPContentProperty::CPL);
794
795         {
796                 boost::mutex::scoped_lock lm (_mutex);
797                 _cpl = id;
798         }
799 }
800
801 bool
802 DCPContent::kdm_timing_window_valid () const
803 {
804         if (!_kdm) {
805                 return true;
806         }
807
808         dcp::LocalTime now;
809         return _kdm->not_valid_before() < now && now < _kdm->not_valid_after();
810 }
811
812
813 Resolution
814 DCPContent::resolution () const
815 {
816         if (video->size().width > 2048 || video->size().height > 1080) {
817                 return Resolution::FOUR_K;
818         }
819
820         return Resolution::TWO_K;
821 }
822