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