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