Bump version
[dcpomatic.git] / src / lib / film.cc
1 /*
2     Copyright (C) 2012-2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <stdexcept>
21 #include <iostream>
22 #include <algorithm>
23 #include <fstream>
24 #include <cstdlib>
25 #include <sstream>
26 #include <iomanip>
27 #include <unistd.h>
28 #include <boost/filesystem.hpp>
29 #include <boost/algorithm/string.hpp>
30 #include <boost/lexical_cast.hpp>
31 #include <boost/date_time.hpp>
32 #include <libxml++/libxml++.h>
33 #include <libcxml/cxml.h>
34 #include "film.h"
35 #include "job.h"
36 #include "util.h"
37 #include "job_manager.h"
38 #include "transcode_job.h"
39 #include "scp_dcp_job.h"
40 #include "log.h"
41 #include "exceptions.h"
42 #include "examine_content_job.h"
43 #include "scaler.h"
44 #include "config.h"
45 #include "version.h"
46 #include "ui_signaller.h"
47 #include "playlist.h"
48 #include "player.h"
49 #include "dcp_content_type.h"
50 #include "ratio.h"
51 #include "cross.h"
52
53 #include "i18n.h"
54
55 using std::string;
56 using std::stringstream;
57 using std::multimap;
58 using std::pair;
59 using std::map;
60 using std::vector;
61 using std::ifstream;
62 using std::ofstream;
63 using std::setfill;
64 using std::min;
65 using std::make_pair;
66 using std::endl;
67 using std::cout;
68 using std::list;
69 using boost::shared_ptr;
70 using boost::weak_ptr;
71 using boost::lexical_cast;
72 using boost::dynamic_pointer_cast;
73 using boost::to_upper_copy;
74 using boost::ends_with;
75 using boost::starts_with;
76 using boost::optional;
77 using libdcp::Size;
78
79 int const Film::state_version = 4;
80
81 /** Construct a Film object in a given directory.
82  *
83  *  @param dir Film directory.
84  */
85
86 Film::Film (boost::filesystem::path dir)
87         : _playlist (new Playlist)
88         , _use_dci_name (true)
89         , _dcp_content_type (Config::instance()->default_dcp_content_type ())
90         , _container (Config::instance()->default_container ())
91         , _resolution (RESOLUTION_2K)
92         , _scaler (Scaler::from_id ("bicubic"))
93         , _with_subtitles (false)
94         , _j2k_bandwidth (Config::instance()->default_j2k_bandwidth ())
95         , _dci_metadata (Config::instance()->default_dci_metadata ())
96         , _video_frame_rate (24)
97         , _audio_channels (MAX_AUDIO_CHANNELS)
98         , _three_d (false)
99         , _sequence_video (true)
100         , _interop (false)
101         , _dirty (false)
102 {
103         set_dci_date_today ();
104
105         _playlist->Changed.connect (bind (&Film::playlist_changed, this));
106         _playlist->ContentChanged.connect (bind (&Film::playlist_content_changed, this, _1, _2));
107         
108         /* Make state.directory a complete path without ..s (where possible)
109            (Code swiped from Adam Bowen on stackoverflow)
110         */
111         
112         boost::filesystem::path p (boost::filesystem::system_complete (dir));
113         boost::filesystem::path result;
114         for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
115                 if (*i == "..") {
116                         if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
117                                 result /= *i;
118                         } else {
119                                 result = result.parent_path ();
120                         }
121                 } else if (*i != ".") {
122                         result /= *i;
123                 }
124         }
125
126         set_directory (result.string ());
127         _log.reset (new FileLog (file ("log")));
128
129         _playlist->set_sequence_video (_sequence_video);
130 }
131
132 string
133 Film::video_identifier () const
134 {
135         assert (container ());
136         LocaleGuard lg;
137
138         stringstream s;
139         s << container()->id()
140           << "_" << resolution_to_string (_resolution)
141           << "_" << _playlist->video_identifier()
142           << "_" << _video_frame_rate
143           << "_" << scaler()->id()
144           << "_" << j2k_bandwidth();
145
146         if (_interop) {
147                 s << "_I";
148         } else {
149                 s << "_S";
150         }
151
152         if (_three_d) {
153                 s << "_3D";
154         }
155
156         return s.str ();
157 }
158           
159 /** @return The path to the directory to write video frame info files to */
160 string
161 Film::info_dir () const
162 {
163         boost::filesystem::path p;
164         p /= "info";
165         p /= video_identifier ();
166         return dir (p.string());
167 }
168
169 string
170 Film::internal_video_mxf_dir () const
171 {
172         return dir ("video");
173 }
174
175 string
176 Film::internal_video_mxf_filename () const
177 {
178         return video_identifier() + ".mxf";
179 }
180
181 string
182 Film::video_mxf_filename () const
183 {
184         return filename_safe_name() + "_video.mxf";
185 }
186
187 string
188 Film::audio_mxf_filename () const
189 {
190         return filename_safe_name() + "_audio.mxf";
191 }
192
193 string
194 Film::filename_safe_name () const
195 {
196         string const n = name ();
197         string o;
198         for (size_t i = 0; i < n.length(); ++i) {
199                 if (isalnum (n[i])) {
200                         o += n[i];
201                 } else {
202                         o += "_";
203                 }
204         }
205
206         return o;
207 }
208
209 boost::filesystem::path
210 Film::audio_analysis_path (shared_ptr<const AudioContent> c) const
211 {
212         boost::filesystem::path p = dir ("analysis");
213         p /= c->digest();
214         return p;
215 }
216
217 /** Add suitable Jobs to the JobManager to create a DCP for this Film */
218 void
219 Film::make_dcp ()
220 {
221         set_dci_date_today ();
222         
223         if (dcp_name().find ("/") != string::npos) {
224                 throw BadSettingError (_("name"), _("cannot contain slashes"));
225         }
226         
227         log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
228
229         {
230                 char buffer[128];
231                 gethostname (buffer, sizeof (buffer));
232                 log()->log (String::compose ("Starting to make DCP on %1", buffer));
233         }
234
235         ContentList cl = content ();
236         for (ContentList::const_iterator i = cl.begin(); i != cl.end(); ++i) {
237                 log()->log (String::compose ("Content: %1", (*i)->technical_summary()));
238         }
239         log()->log (String::compose ("DCP video rate %1 fps", video_frame_rate()));
240         log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
241         log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
242 #ifdef DCPOMATIC_DEBUG
243         log()->log ("DCP-o-matic built in debug mode.");
244 #else
245         log()->log ("DCP-o-matic built in optimised mode.");
246 #endif
247 #ifdef LIBDCP_DEBUG
248         log()->log ("libdcp built in debug mode.");
249 #else
250         log()->log ("libdcp built in optimised mode.");
251 #endif
252         log()->log (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
253         list<pair<string, string> > const m = mount_info ();
254         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
255                 log()->log (String::compose ("Mount: %1 %2", i->first, i->second));
256         }
257         
258         if (container() == 0) {
259                 throw MissingSettingError (_("container"));
260         }
261
262         if (content().empty()) {
263                 throw StringError (_("You must add some content to the DCP before creating it"));
264         }
265
266         if (dcp_content_type() == 0) {
267                 throw MissingSettingError (_("content type"));
268         }
269
270         if (name().empty()) {
271                 throw MissingSettingError (_("name"));
272         }
273
274         JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
275 }
276
277 /** Start a job to send our DCP to the configured TMS */
278 void
279 Film::send_dcp_to_tms ()
280 {
281         shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
282         JobManager::instance()->add (j);
283 }
284
285 /** Count the number of frames that have been encoded for this film.
286  *  @return frame count.
287  */
288 int
289 Film::encoded_frames () const
290 {
291         if (container() == 0) {
292                 return 0;
293         }
294
295         int N = 0;
296         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
297                 ++N;
298                 boost::this_thread::interruption_point ();
299         }
300
301         return N;
302 }
303
304 /** Write state to our `metadata' file */
305 void
306 Film::write_metadata () const
307 {
308         if (!boost::filesystem::exists (directory())) {
309                 boost::filesystem::create_directory (directory());
310         }
311         
312         LocaleGuard lg;
313
314         boost::filesystem::create_directories (directory());
315
316         xmlpp::Document doc;
317         xmlpp::Element* root = doc.create_root_node ("Metadata");
318
319         root->add_child("Version")->add_child_text (lexical_cast<string> (state_version));
320         root->add_child("Name")->add_child_text (_name);
321         root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
322
323         if (_dcp_content_type) {
324                 root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
325         }
326
327         if (_container) {
328                 root->add_child("Container")->add_child_text (_container->id ());
329         }
330
331         root->add_child("Resolution")->add_child_text (resolution_to_string (_resolution));
332         root->add_child("Scaler")->add_child_text (_scaler->id ());
333         root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
334         root->add_child("J2KBandwidth")->add_child_text (lexical_cast<string> (_j2k_bandwidth));
335         _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
336         root->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
337         root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
338         root->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
339         root->add_child("ThreeD")->add_child_text (_three_d ? "1" : "0");
340         root->add_child("SequenceVideo")->add_child_text (_sequence_video ? "1" : "0");
341         root->add_child("Interop")->add_child_text (_interop ? "1" : "0");
342         _playlist->as_xml (root->add_child ("Playlist"));
343
344         doc.write_to_file_formatted (file ("metadata.xml"));
345         
346         _dirty = false;
347 }
348
349 /** Read state from our metadata file */
350 void
351 Film::read_metadata ()
352 {
353         LocaleGuard lg;
354
355         if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
356                 throw StringError (_("This film was created with an older version of DCP-o-matic, and unfortunately it cannot be loaded into this version.  You will need to create a new Film, re-add your content and set it up again.  Sorry!"));
357         }
358
359         cxml::Document f ("Metadata");
360         f.read_file (file ("metadata.xml"));
361         
362         _name = f.string_child ("Name");
363         _use_dci_name = f.bool_child ("UseDCIName");
364
365         {
366                 optional<string> c = f.optional_string_child ("DCPContentType");
367                 if (c) {
368                         _dcp_content_type = DCPContentType::from_dci_name (c.get ());
369                 }
370         }
371
372         {
373                 optional<string> c = f.optional_string_child ("Container");
374                 if (c) {
375                         _container = Ratio::from_id (c.get ());
376                 }
377         }
378
379         _resolution = string_to_resolution (f.string_child ("Resolution"));
380         _scaler = Scaler::from_id (f.string_child ("Scaler"));
381         _with_subtitles = f.bool_child ("WithSubtitles");
382         _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
383         _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
384         _video_frame_rate = f.number_child<int> ("VideoFrameRate");
385         _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
386         _audio_channels = f.number_child<int> ("AudioChannels");
387         _sequence_video = f.bool_child ("SequenceVideo");
388         _three_d = f.bool_child ("ThreeD");
389         _interop = f.bool_child ("Interop");
390
391         _playlist->set_from_xml (shared_from_this(), f.node_child ("Playlist"));
392
393         _dirty = false;
394 }
395
396 /** Given a directory name, return its full path within the Film's directory.
397  *  The directory (and its parents) will be created if they do not exist.
398  */
399 string
400 Film::dir (string d) const
401 {
402         boost::filesystem::path p;
403         p /= _directory;
404         p /= d;
405         
406         boost::filesystem::create_directories (p);
407         
408         return p.string ();
409 }
410
411 /** Given a file or directory name, return its full path within the Film's directory.
412  *  Any required parent directories will be created.
413  */
414 string
415 Film::file (string f) const
416 {
417         boost::filesystem::path p;
418         p /= _directory;
419         p /= f;
420
421         boost::filesystem::create_directories (p.parent_path ());
422         
423         return p.string ();
424 }
425
426 /** @return a DCI-compliant name for a DCP of this film */
427 string
428 Film::dci_name (bool if_created_now) const
429 {
430         stringstream d;
431
432         string fixed_name = to_upper_copy (name());
433         for (size_t i = 0; i < fixed_name.length(); ++i) {
434                 if (fixed_name[i] == ' ') {
435                         fixed_name[i] = '-';
436                 }
437         }
438
439         /* Spec is that the name part should be maximum 14 characters, as I understand it */
440         if (fixed_name.length() > 14) {
441                 fixed_name = fixed_name.substr (0, 14);
442         }
443
444         d << fixed_name;
445
446         if (dcp_content_type()) {
447                 d << "_" << dcp_content_type()->dci_name();
448                 d << "-" << dci_metadata().content_version;
449         }
450
451         if (three_d ()) {
452                 d << "-3D";
453         }
454
455         if (video_frame_rate() != 24) {
456                 d << "-" << video_frame_rate();
457         }
458
459         if (container()) {
460                 d << "_" << container()->dci_name();
461         }
462
463         DCIMetadata const dm = dci_metadata ();
464
465         if (!dm.audio_language.empty ()) {
466                 d << "_" << dm.audio_language;
467                 if (!dm.subtitle_language.empty() && with_subtitles()) {
468                         d << "-" << dm.subtitle_language;
469                 } else {
470                         d << "-XX";
471                 }
472         }
473
474         if (!dm.territory.empty ()) {
475                 d << "_" << dm.territory;
476                 if (!dm.rating.empty ()) {
477                         d << "-" << dm.rating;
478                 }
479         }
480
481         switch (audio_channels ()) {
482         case 1:
483                 d << "_10";
484                 break;
485         case 2:
486                 d << "_20";
487                 break;
488         case 3:
489                 d << "_30";
490                 break;
491         case 4:
492                 d << "_40";
493                 break;
494         case 5:
495                 d << "_50";
496                 break;
497         case 6:
498                 d << "_51";
499                 break;
500         }
501
502         d << "_" << resolution_to_string (_resolution);
503
504         if (!dm.studio.empty ()) {
505                 d << "_" << dm.studio;
506         }
507
508         if (if_created_now) {
509                 d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
510         } else {
511                 d << "_" << boost::gregorian::to_iso_string (_dci_date);
512         }
513
514         if (!dm.facility.empty ()) {
515                 d << "_" << dm.facility;
516         }
517
518         if (!dm.package_type.empty ()) {
519                 d << "_" << dm.package_type;
520         }
521
522         return d.str ();
523 }
524
525 /** @return name to give the DCP */
526 string
527 Film::dcp_name (bool if_created_now) const
528 {
529         if (use_dci_name()) {
530                 return dci_name (if_created_now);
531         }
532
533         return name();
534 }
535
536
537 void
538 Film::set_directory (string d)
539 {
540         _directory = d;
541         _dirty = true;
542 }
543
544 void
545 Film::set_name (string n)
546 {
547         _name = n;
548         signal_changed (NAME);
549 }
550
551 void
552 Film::set_use_dci_name (bool u)
553 {
554         _use_dci_name = u;
555         signal_changed (USE_DCI_NAME);
556 }
557
558 void
559 Film::set_dcp_content_type (DCPContentType const * t)
560 {
561         _dcp_content_type = t;
562         signal_changed (DCP_CONTENT_TYPE);
563 }
564
565 void
566 Film::set_container (Ratio const * c)
567 {
568         _container = c;
569         signal_changed (CONTAINER);
570 }
571
572 void
573 Film::set_resolution (Resolution r)
574 {
575         _resolution = r;
576         signal_changed (RESOLUTION);
577 }
578
579 void
580 Film::set_scaler (Scaler const * s)
581 {
582         _scaler = s;
583         signal_changed (SCALER);
584 }
585
586 void
587 Film::set_with_subtitles (bool w)
588 {
589         _with_subtitles = w;
590         signal_changed (WITH_SUBTITLES);
591 }
592
593 void
594 Film::set_j2k_bandwidth (int b)
595 {
596         _j2k_bandwidth = b;
597         signal_changed (J2K_BANDWIDTH);
598 }
599
600 void
601 Film::set_dci_metadata (DCIMetadata m)
602 {
603         _dci_metadata = m;
604         signal_changed (DCI_METADATA);
605 }
606
607 void
608 Film::set_video_frame_rate (int f)
609 {
610         _video_frame_rate = f;
611         signal_changed (VIDEO_FRAME_RATE);
612 }
613
614 void
615 Film::set_audio_channels (int c)
616 {
617         _audio_channels = c;
618         signal_changed (AUDIO_CHANNELS);
619 }
620
621 void
622 Film::set_three_d (bool t)
623 {
624         _three_d = t;
625         signal_changed (THREE_D);
626 }
627
628 void
629 Film::set_interop (bool i)
630 {
631         _interop = i;
632         signal_changed (INTEROP);
633 }
634
635 void
636 Film::signal_changed (Property p)
637 {
638         _dirty = true;
639
640         switch (p) {
641         case Film::CONTENT:
642                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
643                 break;
644         case Film::VIDEO_FRAME_RATE:
645         case Film::SEQUENCE_VIDEO:
646                 _playlist->maybe_sequence_video ();
647                 break;
648         default:
649                 break;
650         }
651
652         if (ui_signaller) {
653                 ui_signaller->emit (boost::bind (boost::ref (Changed), p));
654         }
655 }
656
657 void
658 Film::set_dci_date_today ()
659 {
660         _dci_date = boost::gregorian::day_clock::local_day ();
661 }
662
663 string
664 Film::info_path (int f, Eyes e) const
665 {
666         boost::filesystem::path p;
667         p /= info_dir ();
668
669         stringstream s;
670         s.width (8);
671         s << setfill('0') << f;
672
673         if (e == EYES_LEFT) {
674                 s << ".L";
675         } else if (e == EYES_RIGHT) {
676                 s << ".R";
677         }
678
679         s << ".md5";
680         
681         p /= s.str();
682
683         /* info_dir() will already have added any initial bit of the path,
684            so don't call file() on this.
685         */
686         return p.string ();
687 }
688
689 string
690 Film::j2c_path (int f, Eyes e, bool t) const
691 {
692         boost::filesystem::path p;
693         p /= "j2c";
694         p /= video_identifier ();
695
696         stringstream s;
697         s.width (8);
698         s << setfill('0') << f;
699
700         if (e == EYES_LEFT) {
701                 s << ".L";
702         } else if (e == EYES_RIGHT) {
703                 s << ".R";
704         }
705         
706         s << ".j2c";
707
708         if (t) {
709                 s << ".tmp";
710         }
711
712         p /= s.str();
713         return file (p.string ());
714 }
715
716 /** Make an educated guess as to whether we have a complete DCP
717  *  or not.
718  *  @return true if we do.
719  */
720
721 bool
722 Film::have_dcp () const
723 {
724         try {
725                 libdcp::DCP dcp (dir (dcp_name()));
726                 dcp.read ();
727         } catch (...) {
728                 return false;
729         }
730
731         return true;
732 }
733
734 shared_ptr<Player>
735 Film::make_player () const
736 {
737         return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
738 }
739
740 shared_ptr<Playlist>
741 Film::playlist () const
742 {
743         return _playlist;
744 }
745
746 ContentList
747 Film::content () const
748 {
749         return _playlist->content ();
750 }
751
752 void
753 Film::examine_and_add_content (shared_ptr<Content> c)
754 {
755         shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c));
756         j->Finished.connect (bind (&Film::maybe_add_content, this, boost::weak_ptr<Job> (j), boost::weak_ptr<Content> (c)));
757         JobManager::instance()->add (j);
758 }
759
760 void
761 Film::maybe_add_content (weak_ptr<Job> j, weak_ptr<Content> c)
762 {
763         shared_ptr<Job> job = j.lock ();
764         if (!job || !job->finished_ok ()) {
765                 return;
766         }
767         
768         shared_ptr<Content> content = c.lock ();
769         if (content) {
770                 add_content (content);
771         }
772 }
773
774 void
775 Film::add_content (shared_ptr<Content> c)
776 {
777         /* Add video content after any existing content */
778         if (dynamic_pointer_cast<VideoContent> (c)) {
779                 c->set_position (_playlist->video_end ());
780         }
781
782         _playlist->add (c);
783 }
784
785 void
786 Film::remove_content (shared_ptr<Content> c)
787 {
788         _playlist->remove (c);
789 }
790
791 Time
792 Film::length () const
793 {
794         return _playlist->length ();
795 }
796
797 bool
798 Film::has_subtitles () const
799 {
800         return _playlist->has_subtitles ();
801 }
802
803 OutputVideoFrame
804 Film::best_video_frame_rate () const
805 {
806         return _playlist->best_dcp_frame_rate ();
807 }
808
809 void
810 Film::playlist_content_changed (boost::weak_ptr<Content> c, int p)
811 {
812         if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
813                 set_video_frame_rate (_playlist->best_dcp_frame_rate ());
814         } 
815
816         if (ui_signaller) {
817                 ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
818         }
819 }
820
821 void
822 Film::playlist_changed ()
823 {
824         signal_changed (CONTENT);
825 }       
826
827 OutputAudioFrame
828 Film::time_to_audio_frames (Time t) const
829 {
830         return t * audio_frame_rate () / TIME_HZ;
831 }
832
833 OutputVideoFrame
834 Film::time_to_video_frames (Time t) const
835 {
836         return t * video_frame_rate () / TIME_HZ;
837 }
838
839 Time
840 Film::audio_frames_to_time (OutputAudioFrame f) const
841 {
842         return f * TIME_HZ / audio_frame_rate ();
843 }
844
845 Time
846 Film::video_frames_to_time (OutputVideoFrame f) const
847 {
848         return f * TIME_HZ / video_frame_rate ();
849 }
850
851 OutputAudioFrame
852 Film::audio_frame_rate () const
853 {
854         /* XXX */
855         return 48000;
856 }
857
858 void
859 Film::set_sequence_video (bool s)
860 {
861         _sequence_video = s;
862         _playlist->set_sequence_video (s);
863         signal_changed (SEQUENCE_VIDEO);
864 }
865
866 libdcp::Size
867 Film::full_frame () const
868 {
869         switch (_resolution) {
870         case RESOLUTION_2K:
871                 return libdcp::Size (2048, 1080);
872         case RESOLUTION_4K:
873                 return libdcp::Size (4096, 2160);
874         }
875
876         assert (false);
877         return libdcp::Size ();
878 }