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