Add Content::full_length_content and make full_length_dcp use it.
[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 std::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                 audio->set_language (examiner->audio_language());
246                 auto as = make_shared<AudioStream>(examiner->audio_frame_rate(), examiner->audio_length(), examiner->audio_channels());
247                 audio->set_stream (as);
248                 auto m = as->mapping ();
249                 m.make_default (film ? film->audio_processor() : 0);
250                 as->set_mapping (m);
251         }
252
253         if (examiner->has_atmos()) {
254                 {
255                         boost::mutex::scoped_lock lm (_mutex);
256                         atmos = make_shared<AtmosContent>(this);
257                 }
258                 /* Setting length will cause calculations to be made based on edit rate, so that must
259                  * be set up first otherwise hard-to-spot exceptions will be thrown.
260                  */
261                 atmos->set_edit_rate (examiner->atmos_edit_rate());
262                 atmos->set_length (examiner->atmos_length());
263         }
264
265         list<shared_ptr<TextContent>> new_text;
266
267         for (int i = 0; i < examiner->text_count(TextType::OPEN_SUBTITLE); ++i) {
268                 auto c = make_shared<TextContent>(this, TextType::OPEN_SUBTITLE, TextType::OPEN_SUBTITLE);
269                 c->set_language (examiner->open_subtitle_language());
270                 new_text.push_back (c);
271         }
272
273         for (int i = 0; i < examiner->text_count(TextType::CLOSED_CAPTION); ++i) {
274                 auto c = make_shared<TextContent>(this, TextType::CLOSED_CAPTION, TextType::CLOSED_CAPTION);
275                 c->set_dcp_track (examiner->dcp_text_track(i));
276                 new_text.push_back (c);
277         }
278
279         {
280                 boost::mutex::scoped_lock lm (_mutex);
281                 text = new_text;
282                 _name = examiner->name ();
283                 _encrypted = examiner->encrypted ();
284                 _needs_assets = examiner->needs_assets ();
285                 _kdm_valid = examiner->kdm_valid ();
286                 _standard = examiner->standard ();
287                 _three_d = examiner->three_d ();
288                 _content_kind = examiner->content_kind ();
289                 _cpl = examiner->cpl ();
290                 _reel_lengths = examiner->reel_lengths ();
291                 for (auto const& i: examiner->markers()) {
292                         _markers[i.first] = ContentTime(i.second.as_editable_units_ceil(DCPTime::HZ));
293                 }
294                 _ratings = examiner->ratings ();
295                 _content_versions = examiner->content_versions ();
296         }
297
298         if (needed_assets == needs_assets()) {
299                 cc_assets.abort ();
300         }
301
302         if (needed_kdm == needs_kdm()) {
303                 cc_kdm.abort ();
304         }
305
306         if (old_name == name()) {
307                 cc_name.abort ();
308         }
309
310         if (video) {
311                 video->set_frame_type (_three_d ? VideoFrameType::THREE_D : VideoFrameType::TWO_D);
312         }
313 }
314
315 string
316 DCPContent::summary () const
317 {
318         boost::mutex::scoped_lock lm (_mutex);
319         return String::compose (_("%1 [DCP]"), _name);
320 }
321
322 string
323 DCPContent::technical_summary () const
324 {
325         string s = Content::technical_summary() + " - ";
326         if (video) {
327                 s += video->technical_summary() + " - ";
328         }
329         if (audio) {
330                 s += audio->technical_summary() + " - ";
331         }
332         return s;
333 }
334
335 void
336 DCPContent::as_xml (xmlpp::Node* node, bool with_paths) const
337 {
338         node->add_child("Type")->add_child_text ("DCP");
339
340         Content::as_xml (node, with_paths);
341
342         if (video) {
343                 video->as_xml (node);
344         }
345
346         if (audio) {
347                 audio->as_xml (node);
348                 node->add_child("AudioFrameRate")->add_child_text (raw_convert<string> (audio->stream()->frame_rate()));
349                 node->add_child("AudioLength")->add_child_text (raw_convert<string> (audio->stream()->length()));
350                 audio->stream()->mapping().as_xml (node->add_child("AudioMapping"));
351         }
352
353         for (auto i: text) {
354                 i->as_xml (node);
355         }
356
357         if (atmos) {
358                 atmos->as_xml (node);
359         }
360
361         boost::mutex::scoped_lock lm (_mutex);
362         node->add_child("Name")->add_child_text (_name);
363         node->add_child("Encrypted")->add_child_text (_encrypted ? "1" : "0");
364         node->add_child("NeedsAssets")->add_child_text (_needs_assets ? "1" : "0");
365         if (_kdm) {
366                 node->add_child("KDM")->add_child_text (_kdm->as_xml ());
367         }
368         node->add_child("KDMValid")->add_child_text (_kdm_valid ? "1" : "0");
369         node->add_child("ReferenceVideo")->add_child_text (_reference_video ? "1" : "0");
370         node->add_child("ReferenceAudio")->add_child_text (_reference_audio ? "1" : "0");
371         node->add_child("ReferenceOpenSubtitle")->add_child_text(_reference_text[static_cast<int>(TextType::OPEN_SUBTITLE)] ? "1" : "0");
372         node->add_child("ReferenceClosedCaption")->add_child_text(_reference_text[static_cast<int>(TextType::CLOSED_CAPTION)] ? "1" : "0");
373         if (_standard) {
374                 switch (_standard.get ()) {
375                 case dcp::Standard::INTEROP:
376                         node->add_child("Standard")->add_child_text ("Interop");
377                         break;
378                 case dcp::Standard::SMPTE:
379                         node->add_child("Standard")->add_child_text ("SMPTE");
380                         break;
381                 default:
382                         DCPOMATIC_ASSERT (false);
383                 }
384         }
385         node->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
386         if (_content_kind) {
387                 node->add_child("ContentKind")->add_child_text(dcp::content_kind_to_string(*_content_kind));
388         }
389         if (_cpl) {
390                 node->add_child("CPL")->add_child_text (_cpl.get ());
391         }
392         for (auto i: _reel_lengths) {
393                 node->add_child("ReelLength")->add_child_text (raw_convert<string> (i));
394         }
395
396         for (auto const& i: _markers) {
397                 auto marker = node->add_child("Marker");
398                 marker->set_attribute("type", dcp::marker_to_string(i.first));
399                 marker->add_child_text(raw_convert<string>(i.second.get()));
400         }
401
402         for (auto i: _ratings) {
403                 auto rating = node->add_child("Rating");
404                 i.as_xml (rating);
405         }
406
407         for (auto i: _content_versions) {
408                 node->add_child("ContentVersion")->add_child_text(i);
409         }
410 }
411
412
413 ContentTime
414 DCPContent::full_length_content () const
415 {
416         if (!video) {
417                 return {};
418         }
419         auto vfr = video_frame_rate();
420         DCPOMATIC_ASSERT (vfr);
421         return ContentTime::from_frames (video->length(), *vfr);
422 }
423
424
425 DCPTime
426 DCPContent::approximate_length () const
427 {
428         if (!video) {
429                 return {};
430         }
431         return DCPTime::from_frames (video->length(), 24);
432 }
433
434 string
435 DCPContent::identifier () const
436 {
437         string s = Content::identifier() + "_";
438
439         if (video) {
440                 s += video->identifier() + "_";
441         }
442
443         for (auto i: text) {
444                 s += i->identifier () + " ";
445         }
446
447         s += string (_reference_video ? "1" : "0");
448         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
449                 s += string (_reference_text[i] ? "1" : "0");
450         }
451         return s;
452 }
453
454 void
455 DCPContent::add_kdm (dcp::EncryptedKDM k)
456 {
457         _kdm = k;
458 }
459
460 void
461 DCPContent::add_ov (boost::filesystem::path ov)
462 {
463         read_directory (ov);
464 }
465
466 bool
467 DCPContent::can_be_played () const
468 {
469         return !needs_kdm() && !needs_assets();
470 }
471
472 bool
473 DCPContent::needs_kdm () const
474 {
475         boost::mutex::scoped_lock lm (_mutex);
476         return _encrypted && !_kdm_valid;
477 }
478
479 bool
480 DCPContent::needs_assets () const
481 {
482         boost::mutex::scoped_lock lm (_mutex);
483         return _needs_assets;
484 }
485
486 vector<boost::filesystem::path>
487 DCPContent::directories () const
488 {
489         return dcp::DCP::directories_from_files (paths());
490 }
491
492 void
493 DCPContent::add_properties (shared_ptr<const Film> film, list<UserProperty>& p) const
494 {
495         Content::add_properties (film, p);
496         if (video) {
497                 video->add_properties (p);
498         }
499         if (audio) {
500                 audio->add_properties (film, p);
501         }
502 }
503
504 void
505 DCPContent::set_default_colour_conversion ()
506 {
507         /* Default to no colour conversion for DCPs */
508         if (video) {
509                 video->unset_colour_conversion ();
510         }
511 }
512
513 void
514 DCPContent::set_reference_video (bool r)
515 {
516         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_VIDEO);
517
518         {
519                 boost::mutex::scoped_lock lm (_mutex);
520                 _reference_video = r;
521         }
522 }
523
524 void
525 DCPContent::set_reference_audio (bool r)
526 {
527         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_AUDIO);
528
529         {
530                 boost::mutex::scoped_lock lm (_mutex);
531                 _reference_audio = r;
532         }
533 }
534
535 void
536 DCPContent::set_reference_text (TextType type, bool r)
537 {
538         ContentChangeSignaller cc (this, DCPContentProperty::REFERENCE_TEXT);
539
540         {
541                 boost::mutex::scoped_lock lm (_mutex);
542                 _reference_text[static_cast<int>(type)] = r;
543         }
544 }
545
546 list<DCPTimePeriod>
547 DCPContent::reels (shared_ptr<const Film> film) const
548 {
549         auto reel_lengths = _reel_lengths;
550         if (reel_lengths.empty()) {
551                 /* Old metadata with no reel lengths; get them here instead */
552                 try {
553                         scoped_ptr<DCPExaminer> examiner (new DCPExaminer(shared_from_this(), film->tolerant()));
554                         reel_lengths = examiner->reel_lengths ();
555                 } catch (...) {
556                         /* Could not examine the DCP; guess reels */
557                         reel_lengths.push_back (length_after_trim(film).frames_round(film->video_frame_rate()));
558                 }
559         }
560
561         list<DCPTimePeriod> p;
562
563         /* This content's frame rate must be the same as the output DCP rate, so we can
564            convert `directly' from ContentTime to DCPTime.
565         */
566
567         /* The starting point of this content on the timeline */
568         auto pos = position() - DCPTime (trim_start().get());
569
570         for (auto i: reel_lengths) {
571                 /* This reel runs from `pos' to `to' */
572                 DCPTime const to = pos + DCPTime::from_frames (i, film->video_frame_rate());
573                 if (to > position()) {
574                         p.push_back (DCPTimePeriod(max(position(), pos), min(end(film), to)));
575                         if (to > end(film)) {
576                                 break;
577                         }
578                 }
579                 pos = to;
580         }
581
582         return p;
583 }
584
585 list<DCPTime>
586 DCPContent::reel_split_points (shared_ptr<const Film> film) const
587 {
588         list<DCPTime> s;
589         for (auto i: reels(film)) {
590                 s.push_back (i.from);
591         }
592         return s;
593 }
594
595 bool
596 DCPContent::can_reference (shared_ptr<const Film> film, function<bool (shared_ptr<const Content>)> part, string overlapping, string& why_not) const
597 {
598         /* We must be using the same standard as the film */
599         if (_standard) {
600                 if (_standard.get() == dcp::Standard::INTEROP && !film->interop()) {
601                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
602                         why_not = _("it is Interop and the film is set to SMPTE.");
603                         return false;
604                 } else if (_standard.get() == dcp::Standard::SMPTE && film->interop()) {
605                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
606                         why_not = _("it is SMPTE and the film is set to Interop.");
607                         return false;
608                 }
609         }
610
611         /* And the same frame rate */
612         if (!video_frame_rate() || (lrint(video_frame_rate().get()) != film->video_frame_rate())) {
613                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
614                 why_not = _("it has a different frame rate to the film.");
615                 return false;
616         }
617
618         auto const fr = film->reels ();
619
620         list<DCPTimePeriod> reel_list;
621         try {
622                 reel_list = reels (film);
623         } catch (dcp::ReadError &) {
624                 /* We couldn't read the DCP; it's probably missing */
625                 return false;
626         } catch (dcp::KDMDecryptionError &) {
627                 /* We have an incorrect KDM */
628                 return false;
629         }
630
631         /* fr must contain reels().  It can also contain other reels, but it must at
632            least contain reels().
633         */
634         for (auto i: reel_list) {
635                 if (find (fr.begin(), fr.end(), i) == fr.end ()) {
636                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
637                         why_not = _("its reel lengths differ from those in the film; set the reel mode to 'split by video content'.");
638                         return false;
639                 }
640         }
641
642         auto a = overlaps (film, film->content(), part, position(), end(film));
643         if (a.size() != 1 || a.front().get() != this) {
644                 why_not = overlapping;
645                 return false;
646         }
647
648         return true;
649 }
650
651 static
652 bool check_video (shared_ptr<const Content> c)
653 {
654         return static_cast<bool>(c->video) && c->video->use();
655 }
656
657 bool
658 DCPContent::can_reference_video (shared_ptr<const Film> film, string& why_not) const
659 {
660         if (!video) {
661                 why_not = _("There is no video in this DCP");
662                 return false;
663         }
664
665         if (film->resolution() != resolution()) {
666                 if (resolution() == Resolution::FOUR_K) {
667                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
668                         why_not = _("it is 4K and the film is 2K.");
669                 } else {
670                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
671                         why_not = _("it is 2K and the film is 4K.");
672                 }
673                 return false;
674         } else if (film->frame_size() != video->size()) {
675                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
676                 why_not = _("its video frame size differs from the film's.");
677                 return false;
678         }
679
680         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
681         return can_reference (film, bind (&check_video, _1), _("it overlaps other video content; remove the other content."), why_not);
682 }
683
684 static
685 bool check_audio (shared_ptr<const Content> c)
686 {
687         return static_cast<bool>(c->audio) && !c->audio->mapping().mapped_output_channels().empty();
688 }
689
690 bool
691 DCPContent::can_reference_audio (shared_ptr<const Film> film, string& why_not) const
692 {
693         shared_ptr<DCPDecoder> decoder;
694         try {
695                 decoder.reset (new DCPDecoder (film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>()));
696         } catch (dcp::ReadError &) {
697                 /* We couldn't read the DCP, so it's probably missing */
698                 return false;
699         } catch (DCPError &) {
700                 /* We couldn't read the DCP, so it's probably missing */
701                 return false;
702         } catch (dcp::KDMDecryptionError &) {
703                 /* We have an incorrect KDM */
704                 return false;
705         }
706
707         for (auto i: decoder->reels()) {
708                 if (!i->main_sound()) {
709                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
710                         why_not = _("it does not have sound in all its reels.");
711                         return false;
712                 }
713         }
714
715         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
716         return can_reference (film, bind (&check_audio, _1), _("it overlaps other audio content; remove the other content."), why_not);
717 }
718
719 static
720 bool check_text (shared_ptr<const Content> c)
721 {
722         return !c->text.empty();
723 }
724
725 bool
726 DCPContent::can_reference_text (shared_ptr<const Film> film, TextType type, string& why_not) const
727 {
728         shared_ptr<DCPDecoder> decoder;
729         try {
730                 decoder.reset (new DCPDecoder (film, shared_from_this(), false, film->tolerant(), shared_ptr<DCPDecoder>()));
731         } catch (dcp::ReadError &) {
732                 /* We couldn't read the DCP, so it's probably missing */
733                 return false;
734         } catch (dcp::KDMDecryptionError &) {
735                 /* We have an incorrect KDM */
736                 return false;
737         }
738
739         for (auto i: decoder->reels()) {
740                 if (type == TextType::OPEN_SUBTITLE) {
741                         if (!i->main_subtitle()) {
742                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
743                                 why_not = _("it does not have open subtitles in all its reels.");
744                                 return false;
745                         } else if (i->main_subtitle()->entry_point().get_value_or(0) != 0) {
746                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
747                                 why_not = _("one if its subtitle reels has a non-zero entry point so it must be re-written.");
748                                 return false;
749                         }
750                 }
751                 if (type == TextType::CLOSED_CAPTION) {
752                         if (i->closed_captions().empty()) {
753                                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
754                                 why_not = _("it does not have closed captions in all its reels.");
755                                 return false;
756                         }
757                         for (auto j: i->closed_captions()) {
758                                 if (j->entry_point().get_value_or(0) != 0) {
759                                         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
760                                         why_not = _("one if its closed caption has a non-zero entry point so it must be re-written.");
761                                         return false;
762                                 }
763                         }
764                 }
765         }
766
767         if (trim_start() != dcpomatic::ContentTime()) {
768                 /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
769                 why_not = _("it has a start trim so its subtitles or closed captions must be re-written.");
770                 return false;
771         }
772
773         /// TRANSLATORS: this string will follow "Cannot reference this DCP: "
774         return can_reference (film, bind (&check_text, _1), _("it overlaps other text content; remove the other content."), why_not);
775 }
776
777 void
778 DCPContent::take_settings_from (shared_ptr<const Content> c)
779 {
780         auto dc = dynamic_pointer_cast<const DCPContent>(c);
781         if (!dc) {
782                 return;
783         }
784
785         _reference_video = dc->_reference_video;
786         _reference_audio = dc->_reference_audio;
787         for (int i = 0; i < static_cast<int>(TextType::COUNT); ++i) {
788                 _reference_text[i] = dc->_reference_text[i];
789         }
790 }
791
792 void
793 DCPContent::set_cpl (string id)
794 {
795         ContentChangeSignaller cc (this, DCPContentProperty::CPL);
796
797         {
798                 boost::mutex::scoped_lock lm (_mutex);
799                 _cpl = id;
800         }
801 }
802
803 bool
804 DCPContent::kdm_timing_window_valid () const
805 {
806         if (!_kdm) {
807                 return true;
808         }
809
810         dcp::LocalTime now;
811         return _kdm->not_valid_before() < now && now < _kdm->not_valid_after();
812 }
813
814
815 Resolution
816 DCPContent::resolution () const
817 {
818         if (video->size().width > 2048 || video->size().height > 1080) {
819                 return Resolution::FOUR_K;
820         }
821
822         return Resolution::TWO_K;
823 }
824