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