Merge master.
[dcpomatic.git] / src / lib / film.cc
index e2b3d4bc31391cb4a226caa64442102abd6f7cf7..c8aee7a0aa6bdf6bc6b925209a6ae92043f72098 100644 (file)
 #include <unistd.h>
 #include <boost/filesystem.hpp>
 #include <boost/algorithm/string.hpp>
+#include <boost/lexical_cast.hpp>
+#include <boost/date_time.hpp>
+#include <libxml++/libxml++.h>
+#include <libcxml/cxml.h>
 #include "film.h"
 #include "format.h"
-#include "tiff_encoder.h"
 #include "job.h"
 #include "filter.h"
-#include "transcoder.h"
 #include "util.h"
 #include "job_manager.h"
 #include "ab_transcode_job.h"
 #include "transcode_job.h"
 #include "scp_dcp_job.h"
-#include "copy_from_dvd_job.h"
-#include "make_dcp_job.h"
-#include "film_state.h"
 #include "log.h"
-#include "options.h"
 #include "exceptions.h"
 #include "examine_content_job.h"
 #include "scaler.h"
-#include "decoder_factory.h"
 #include "config.h"
-#include "check_hashes_job.h"
 #include "version.h"
-
-using namespace std;
-using namespace boost;
+#include "ui_signaller.h"
+#include "analyse_audio_job.h"
+#include "playlist.h"
+#include "player.h"
+#include "ffmpeg_content.h"
+#include "imagemagick_content.h"
+#include "sndfile_content.h"
+#include "dcp_content_type.h"
+
+#include "i18n.h"
+
+using std::string;
+using std::stringstream;
+using std::multimap;
+using std::pair;
+using std::map;
+using std::vector;
+using std::ifstream;
+using std::ofstream;
+using std::setfill;
+using std::min;
+using std::make_pair;
+using std::endl;
+using std::cout;
+using std::list;
+using boost::shared_ptr;
+using boost::lexical_cast;
+using boost::to_upper_copy;
+using boost::ends_with;
+using boost::starts_with;
+using boost::optional;
+using libdcp::Size;
+
+int const Film::state_version = 4;
 
 /** Construct a Film object in a given directory, reading any metadata
  *  file that exists in that directory.  An exception will be thrown if
- *  must_exist is true, and the specified directory does not exist.
+ *  must_exist is true and the specified directory does not exist.
  *
  *  @param d Film directory.
  *  @param must_exist true to throw an exception if does not exist.
  */
 
 Film::Film (string d, bool must_exist)
-       : _dirty (false)
+       : _playlist (new Playlist)
+       , _use_dci_name (true)
+       , _trust_content_headers (true)
+       , _dcp_content_type (0)
+       , _format (Format::from_id ("185"))
+       , _scaler (Scaler::from_id ("bicubic"))
+       , _trim_start (0)
+       , _trim_end (0)
+       , _trim_type (CPL)
+       , _ab (false)
+       , _audio_gain (0)
+       , _audio_delay (0)
+       , _with_subtitles (false)
+       , _subtitle_offset (0)
+       , _subtitle_scale (1)
+       , _colour_lut (0)
+       , _j2k_bandwidth (200000000)
+       , _dci_metadata (Config::instance()->default_dci_metadata ())
+       , _dcp_frame_rate (0)
+       , _dirty (false)
 {
-       /* Make _state.directory a complete path without ..s (where possible)
+       set_dci_date_today ();
+
+       _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
+       
+       /* Make state.directory a complete path without ..s (where possible)
           (Code swiped from Adam Bowen on stackoverflow)
        */
        
-       filesystem::path p (filesystem::system_complete (d));
-       filesystem::path result;
-       for (filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
+       boost::filesystem::path p (boost::filesystem::system_complete (d));
+       boost::filesystem::path result;
+       for (boost::filesystem::path::iterator i = p.begin(); i != p.end(); ++i) {
                if (*i == "..") {
-                       if (filesystem::is_symlink (result) || result.filename() == "..") {
+                       if (boost::filesystem::is_symlink (result) || result.filename() == "..") {
                                result /= *i;
                        } else {
                                result = result.parent_path ();
@@ -83,578 +133,1182 @@ Film::Film (string d, bool must_exist)
                }
        }
 
-       _state.directory = result.string ();
+       set_directory (result.string ());
        
-       if (!filesystem::exists (_state.directory)) {
+       if (!boost::filesystem::exists (directory())) {
                if (must_exist) {
-                       throw OpenFileError (_state.directory);
+                       throw OpenFileError (directory());
                } else {
-                       filesystem::create_directory (_state.directory);
+                       boost::filesystem::create_directory (directory());
                }
        }
 
-       read_metadata ();
+       if (must_exist) {
+               read_metadata ();
+       }
 
-       _log = new FileLog (_state.file ("log"));
+       _log.reset (new FileLog (file ("log")));
 }
 
-/** Copy constructor */
-Film::Film (Film const & other)
-       : _state (other._state)
-       , _dirty (other._dirty)
+Film::Film (Film const & o)
+       : boost::enable_shared_from_this<Film> (o)
+       /* note: the copied film shares the original's log */
+       , _log               (o._log)
+       , _playlist          (new Playlist)
+       , _directory         (o._directory)
+       , _name              (o._name)
+       , _use_dci_name      (o._use_dci_name)
+       , _trust_content_headers (o._trust_content_headers)
+       , _dcp_content_type  (o._dcp_content_type)
+       , _format            (o._format)
+       , _crop              (o._crop)
+       , _filters           (o._filters)
+       , _scaler            (o._scaler)
+       , _trim_start        (o._trim_start)
+       , _trim_end          (o._trim_end)
+       , _trim_type         (o._trim_type)
+       , _ab                (o._ab)
+       , _audio_gain        (o._audio_gain)
+       , _audio_delay       (o._audio_delay)
+       , _with_subtitles    (o._with_subtitles)
+       , _subtitle_offset   (o._subtitle_offset)
+       , _subtitle_scale    (o._subtitle_scale)
+       , _colour_lut        (o._colour_lut)
+       , _j2k_bandwidth     (o._j2k_bandwidth)
+       , _dci_metadata      (o._dci_metadata)
+       , _dcp_frame_rate    (o._dcp_frame_rate)
+       , _dci_date          (o._dci_date)
+       , _dirty             (o._dirty)
 {
-
+       for (ContentList::const_iterator i = o._content.begin(); i != o._content.end(); ++i) {
+               _content.push_back ((*i)->clone ());
+       }
+       
+       _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
+       
+       _playlist->setup (_content);
 }
 
-Film::~Film ()
+string
+Film::video_state_identifier () const
 {
-       delete _log;
+       assert (format ());
+
+       pair<string, string> f = Filter::ffmpeg_strings (filters());
+
+       stringstream s;
+       s << format()->id()
+         << "_" << _playlist->video_digest()
+         << "_" << crop().left << "_" << crop().right << "_" << crop().top << "_" << crop().bottom
+         << "_" << _dcp_frame_rate
+         << "_" << f.first << "_" << f.second
+         << "_" << scaler()->id()
+         << "_" << j2k_bandwidth()
+         << "_" << boost::lexical_cast<int> (colour_lut());
+
+       if (ab()) {
+               pair<string, string> fa = Filter::ffmpeg_strings (Config::instance()->reference_filters());
+               s << "ab_" << Config::instance()->reference_scaler()->id() << "_" << fa.first << "_" << fa.second;
+       }
+
+       return s.str ();
 }
          
-/** Read the `metadata' file inside this Film's directory, and fill the
- *  object's data with its content.
+/** @return The path to the directory to write video frame info files to */
+string
+Film::info_dir () const
+{
+       boost::filesystem::path p;
+       p /= "info";
+       p /= video_state_identifier ();
+       return dir (p.string());
+}
+
+string
+Film::internal_video_mxf_dir () const
+{
+       boost::filesystem::path p;
+       return dir ("video");
+}
+
+string
+Film::internal_video_mxf_filename () const
+{
+       return video_state_identifier() + ".mxf";
+}
+
+string
+Film::dcp_video_mxf_filename () const
+{
+       return filename_safe_name() + "_video.mxf";
+}
+
+string
+Film::dcp_audio_mxf_filename () const
+{
+       return filename_safe_name() + "_audio.mxf";
+}
+
+string
+Film::filename_safe_name () const
+{
+       string const n = name ();
+       string o;
+       for (size_t i = 0; i < n.length(); ++i) {
+               if (isalnum (n[i])) {
+                       o += n[i];
+               } else {
+                       o += "_";
+               }
+       }
+
+       return o;
+}
+
+string
+Film::audio_analysis_path () const
+{
+       boost::filesystem::path p;
+       p /= "analysis";
+       p /= _playlist->audio_digest();
+       return file (p.string ());
+}
+
+/** Add suitable Jobs to the JobManager to create a DCP for this Film */
+void
+Film::make_dcp ()
+{
+       set_dci_date_today ();
+       
+       if (dcp_name().find ("/") != string::npos) {
+               throw BadSettingError (_("name"), _("cannot contain slashes"));
+       }
+       
+       log()->log (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
+
+       {
+               char buffer[128];
+               gethostname (buffer, sizeof (buffer));
+               log()->log (String::compose ("Starting to make DCP on %1", buffer));
+       }
+       
+//     log()->log (String::compose ("Content is %1; type %2", content_path(), (content_type() == STILL ? _("still") : _("video"))));
+//     if (length()) {
+//             log()->log (String::compose ("Content length %1", length().get()));
+//     }
+//     log()->log (String::compose ("Content digest %1", content_digest()));
+//     log()->log (String::compose ("Content at %1 fps, DCP at %2 fps", source_frame_rate(), dcp_frame_rate()));
+       log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
+       log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));
+#ifdef DCPOMATIC_DEBUG
+       log()->log ("DCP-o-matic built in debug mode.");
+#else
+       log()->log ("DCP-o-matic built in optimised mode.");
+#endif
+#ifdef LIBDCP_DEBUG
+       log()->log ("libdcp built in debug mode.");
+#else
+       log()->log ("libdcp built in optimised mode.");
+#endif
+       pair<string, int> const c = cpu_info ();
+       log()->log (String::compose ("CPU: %1, %2 processors", c.first, c.second));
+       
+       if (format() == 0) {
+               throw MissingSettingError (_("format"));
+       }
+
+       if (content().empty ()) {
+               throw MissingSettingError (_("content"));
+       }
+
+       if (dcp_content_type() == 0) {
+               throw MissingSettingError (_("content type"));
+       }
+
+       if (name().empty()) {
+               throw MissingSettingError (_("name"));
+       }
+
+       shared_ptr<Job> r;
+
+       if (ab()) {
+               r = JobManager::instance()->add (shared_ptr<Job> (new ABTranscodeJob (shared_from_this())));
+       } else {
+               r = JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (shared_from_this())));
+       }
+}
+
+/** Start a job to analyse the audio in our Playlist */
+void
+Film::analyse_audio ()
+{
+       if (_analyse_audio_job) {
+               return;
+       }
+
+       _analyse_audio_job.reset (new AnalyseAudioJob (shared_from_this()));
+       _analyse_audio_job->Finished.connect (bind (&Film::analyse_audio_finished, this));
+       JobManager::instance()->add (_analyse_audio_job);
+}
+
+/** Start a job to examine a piece of content */
+void
+Film::examine_content (shared_ptr<Content> c)
+{
+       shared_ptr<Job> j (new ExamineContentJob (shared_from_this(), c, trust_content_headers ()));
+       JobManager::instance()->add (j);
+}
+
+void
+Film::analyse_audio_finished ()
+{
+       ensure_ui_thread ();
+
+       if (_analyse_audio_job->finished_ok ()) {
+               AudioAnalysisSucceeded ();
+       }
+       
+       _analyse_audio_job.reset ();
+}
+
+/** Start a job to send our DCP to the configured TMS */
+void
+Film::send_dcp_to_tms ()
+{
+       shared_ptr<Job> j (new SCPDCPJob (shared_from_this()));
+       JobManager::instance()->add (j);
+}
+
+/** Count the number of frames that have been encoded for this film.
+ *  @return frame count.
  */
+int
+Film::encoded_frames () const
+{
+       if (format() == 0) {
+               return 0;
+       }
 
+       int N = 0;
+       for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (info_dir ()); i != boost::filesystem::directory_iterator(); ++i) {
+               ++N;
+               boost::this_thread::interruption_point ();
+       }
+
+       return N;
+}
+
+/** Write state to our `metadata' file */
+void
+Film::write_metadata () const
+{
+       ContentList the_content = content ();
+       
+       boost::mutex::scoped_lock lm (_state_mutex);
+
+       boost::filesystem::create_directories (directory());
+
+       xmlpp::Document doc;
+       xmlpp::Element* root = doc.create_root_node ("Metadata");
+
+       root->add_child("Version")->add_child_text (boost::lexical_cast<string> (state_version));
+       root->add_child("Name")->add_child_text (_name);
+       root->add_child("UseDCIName")->add_child_text (_use_dci_name ? "1" : "0");
+       root->add_child("TrustContentHeaders")->add_child_text (_trust_content_headers ? "1" : "0");
+
+       if (_dcp_content_type) {
+               root->add_child("DCPContentType")->add_child_text (_dcp_content_type->dci_name ());
+       }
+
+       if (_format) {
+               root->add_child("Format")->add_child_text (_format->id ());
+       }
+
+       switch (_trim_type) {
+       case CPL:
+               root->add_child("TrimType")->add_child_text ("CPL");
+               break;
+       case ENCODE:
+               root->add_child("TrimType")->add_child_text ("Encode");
+       }
+                       
+       root->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left));
+       root->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right));
+       root->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top));
+       root->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom));
+
+       for (vector<Filter const *>::const_iterator i = _filters.begin(); i != _filters.end(); ++i) {
+               root->add_child("Filter")->add_child_text ((*i)->id ());
+       }
+       
+       root->add_child("Scaler")->add_child_text (_scaler->id ());
+       root->add_child("TrimStart")->add_child_text (boost::lexical_cast<string> (_trim_start));
+       root->add_child("TrimEnd")->add_child_text (boost::lexical_cast<string> (_trim_end));
+       root->add_child("AB")->add_child_text (_ab ? "1" : "0");
+       root->add_child("AudioGain")->add_child_text (boost::lexical_cast<string> (_audio_gain));
+       root->add_child("AudioDelay")->add_child_text (boost::lexical_cast<string> (_audio_delay));
+       root->add_child("WithSubtitles")->add_child_text (_with_subtitles ? "1" : "0");
+       root->add_child("SubtitleOffset")->add_child_text (boost::lexical_cast<string> (_subtitle_offset));
+       root->add_child("SubtitleScale")->add_child_text (boost::lexical_cast<string> (_subtitle_scale));
+       root->add_child("ColourLUT")->add_child_text (boost::lexical_cast<string> (_colour_lut));
+       root->add_child("J2KBandwidth")->add_child_text (boost::lexical_cast<string> (_j2k_bandwidth));
+       _dci_metadata.as_xml (root->add_child ("DCIMetadata"));
+       root->add_child("DCPFrameRate")->add_child_text (boost::lexical_cast<string> (_dcp_frame_rate));
+       root->add_child("DCIDate")->add_child_text (boost::gregorian::to_iso_string (_dci_date));
+       _audio_mapping.as_xml (root->add_child("AudioMapping"));
+
+       for (ContentList::iterator i = the_content.begin(); i != the_content.end(); ++i) {
+               (*i)->as_xml (root->add_child ("Content"));
+       }
+
+       doc.write_to_file_formatted (file ("metadata.xml"));
+       
+       _dirty = false;
+}
+
+/** Read state from our metadata file */
 void
 Film::read_metadata ()
 {
-       ifstream f (metadata_file().c_str ());
-       string line;
-       while (getline (f, line)) {
-               if (line.empty ()) {
-                       continue;
+       boost::mutex::scoped_lock lm (_state_mutex);
+
+       if (boost::filesystem::exists (file ("metadata")) && !boost::filesystem::exists (file ("metadata.xml"))) {
+               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!"));
+       }
+
+       cxml::File f (file ("metadata.xml"), "Metadata");
+       
+       _name = f.string_child ("Name");
+       _use_dci_name = f.bool_child ("UseDCIName");
+       _trust_content_headers = f.bool_child ("TrustContentHeaders");
+
+       {
+               optional<string> c = f.optional_string_child ("DCPContentType");
+               if (c) {
+                       _dcp_content_type = DCPContentType::from_dci_name (c.get ());
                }
-               
-               if (line[0] == '#') {
-                       continue;
+       }
+
+       {
+               optional<string> c = f.optional_string_child ("Format");
+               if (c) {
+                       _format = Format::from_id (c.get ());
+               }
+       }
+
+       {
+               optional<string> c = f.optional_string_child ("TrimType");
+               if (!c || c.get() == "CPL") {
+                       _trim_type = CPL;
+               } else if (c && c.get() == "Encode") {
+                       _trim_type = ENCODE;
                }
+       }
 
-               if (line[line.size() - 1] == '\r') {
-                       line = line.substr (0, line.size() - 1);
+       _crop.left = f.number_child<int> ("LeftCrop");
+       _crop.right = f.number_child<int> ("RightCrop");
+       _crop.top = f.number_child<int> ("TopCrop");
+       _crop.bottom = f.number_child<int> ("BottomCrop");
+
+       {
+               list<shared_ptr<cxml::Node> > c = f.node_children ("Filter");
+               for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
+                       _filters.push_back (Filter::from_id ((*i)->content ()));
                }
+       }
 
-               size_t const s = line.find (' ');
-               if (s == string::npos) {
-                       continue;
+       _scaler = Scaler::from_id (f.string_child ("Scaler"));
+       _trim_start = f.number_child<int> ("TrimStart");
+       _trim_end = f.number_child<int> ("TrimEnd");
+       _ab = f.bool_child ("AB");
+       _audio_gain = f.number_child<float> ("AudioGain");
+       _audio_delay = f.number_child<int> ("AudioDelay");
+       _with_subtitles = f.bool_child ("WithSubtitles");
+       _subtitle_offset = f.number_child<float> ("SubtitleOffset");
+       _subtitle_scale = f.number_child<float> ("SubtitleScale");
+       _colour_lut = f.number_child<int> ("ColourLUT");
+       _j2k_bandwidth = f.number_child<int> ("J2KBandwidth");
+       _dci_metadata = DCIMetadata (f.node_child ("DCIMetadata"));
+       _dcp_frame_rate = f.number_child<int> ("DCPFrameRate");
+       _dci_date = boost::gregorian::from_undelimited_string (f.string_child ("DCIDate"));
+
+       list<shared_ptr<cxml::Node> > c = f.node_children ("Content");
+       for (list<shared_ptr<cxml::Node> >::iterator i = c.begin(); i != c.end(); ++i) {
+
+               string const type = (*i)->string_child ("Type");
+               boost::shared_ptr<Content> c;
+               
+               if (type == "FFmpeg") {
+                       c.reset (new FFmpegContent (*i));
+               } else if (type == "ImageMagick") {
+                       c.reset (new ImageMagickContent (*i));
+               } else if (type == "Sndfile") {
+                       c.reset (new SndfileContent (*i));
                }
 
-               _state.read_metadata (line.substr (0, s), line.substr (s + 1));
+               _content.push_back (c);
        }
 
+       /* This must come after we've loaded the content, as we're looking things up in _content */
+       _audio_mapping.set_from_xml (_content, f.node_child ("AudioMapping"));
+
        _dirty = false;
+
+       _playlist->setup (_content);
 }
 
-/** Write our state to a file `metadata' inside the Film's directory */
-void
-Film::write_metadata () const
+libdcp::Size
+Film::cropped_size (libdcp::Size s) const
 {
-       filesystem::create_directories (_state.directory);
+       boost::mutex::scoped_lock lm (_state_mutex);
+       s.width -= _crop.left + _crop.right;
+       s.height -= _crop.top + _crop.bottom;
+       return s;
+}
+
+/** Given a directory name, return its full path within the Film's directory.
+ *  The directory (and its parents) will be created if they do not exist.
+ */
+string
+Film::dir (string d) const
+{
+       boost::mutex::scoped_lock lm (_directory_mutex);
+       
+       boost::filesystem::path p;
+       p /= _directory;
+       p /= d;
        
-       ofstream f (metadata_file().c_str ());
-       if (!f.good ()) {
-               throw CreateFileError (metadata_file ());
+       boost::filesystem::create_directories (p);
+       
+       return p.string ();
+}
+
+/** Given a file or directory name, return its full path within the Film's directory.
+ *  _directory_mutex must not be locked on entry.
+ *  Any required parent directories will be created.
+ */
+string
+Film::file (string f) const
+{
+       boost::mutex::scoped_lock lm (_directory_mutex);
+
+       boost::filesystem::path p;
+       p /= _directory;
+       p /= f;
+
+       boost::filesystem::create_directories (p.parent_path ());
+       
+       return p.string ();
+}
+
+/** @return The sampling rate that we will resample the audio to */
+int
+Film::target_audio_sample_rate () const
+{
+       if (!has_audio ()) {
+               return 0;
        }
+       
+       /* Resample to a DCI-approved sample rate */
+       double t = dcp_audio_sample_rate (audio_frame_rate());
 
-       _state.write_metadata (f);
+       FrameRateConversion frc (video_frame_rate(), dcp_frame_rate());
 
-       _dirty = false;
+       /* Compensate if the DCP is being run at a different frame rate
+          to the source; that is, if the video is run such that it will
+          look different in the DCP compared to the source (slower or faster).
+          skip/repeat doesn't come into effect here.
+       */
+
+       if (frc.change_speed) {
+               t *= video_frame_rate() * frc.factor() / dcp_frame_rate();
+       }
+
+       return rint (t);
+}
+
+/** @return a DCI-compliant name for a DCP of this film */
+string
+Film::dci_name (bool if_created_now) const
+{
+       stringstream d;
+
+       string fixed_name = to_upper_copy (name());
+       for (size_t i = 0; i < fixed_name.length(); ++i) {
+               if (fixed_name[i] == ' ') {
+                       fixed_name[i] = '-';
+               }
+       }
+
+       /* Spec is that the name part should be maximum 14 characters, as I understand it */
+       if (fixed_name.length() > 14) {
+               fixed_name = fixed_name.substr (0, 14);
+       }
+
+       d << fixed_name;
+
+       if (dcp_content_type()) {
+               d << "_" << dcp_content_type()->dci_name();
+       }
+
+       if (format()) {
+               d << "_" << format()->dci_name();
+       }
+
+       DCIMetadata const dm = dci_metadata ();
+
+       if (!dm.audio_language.empty ()) {
+               d << "_" << dm.audio_language;
+               if (!dm.subtitle_language.empty()) {
+                       d << "-" << dm.subtitle_language;
+               } else {
+                       d << "-XX";
+               }
+       }
+
+       if (!dm.territory.empty ()) {
+               d << "_" << dm.territory;
+               if (!dm.rating.empty ()) {
+                       d << "-" << dm.rating;
+               }
+       }
+
+       switch (audio_channels ()) {
+       case 1:
+               d << "_10";
+               break;
+       case 2:
+               d << "_20";
+               break;
+       case 6:
+               d << "_51";
+               break;
+       case 8:
+               d << "_71";
+               break;
+       }
+
+       d << "_2K";
+
+       if (!dm.studio.empty ()) {
+               d << "_" << dm.studio;
+       }
+
+       if (if_created_now) {
+               d << "_" << boost::gregorian::to_iso_string (boost::gregorian::day_clock::local_day ());
+       } else {
+               d << "_" << boost::gregorian::to_iso_string (_dci_date);
+       }
+
+       if (!dm.facility.empty ()) {
+               d << "_" << dm.facility;
+       }
+
+       if (!dm.package_type.empty ()) {
+               d << "_" << dm.package_type;
+       }
+
+       return d.str ();
+}
+
+/** @return name to give the DCP */
+string
+Film::dcp_name (bool if_created_now) const
+{
+       if (use_dci_name()) {
+               return dci_name (if_created_now);
+       }
+
+       return name();
+}
+
+
+void
+Film::set_directory (string d)
+{
+       boost::mutex::scoped_lock lm (_state_mutex);
+       _directory = d;
+       _dirty = true;
 }
 
-/** Set the name by which DVD-o-matic refers to this Film */
 void
 Film::set_name (string n)
 {
-       _state.name = n;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _name = n;
+       }
        signal_changed (NAME);
 }
 
-/** Set the content file for this film.
- *  @param c New content file; if specified as an absolute path, the content should
- *  be within the film's _state.directory; if specified as a relative path, the content
- *  will be assumed to be within the film's _state.directory.
- */
 void
-Film::set_content (string c)
+Film::set_use_dci_name (bool u)
 {
-       string check = _state.directory;
-
-#if BOOST_FILESYSTEM_VERSION == 3
-       filesystem::path slash ("/");
-       string platform_slash = slash.make_preferred().string ();
-#else
-#ifdef DVDOMATIC_WINDOWS
-       string platform_slash = "\\";
-#else
-       string platform_slash = "/";
-#endif
-#endif 
-
-       if (!ends_with (check, platform_slash)) {
-               check += platform_slash;
-       }
-       
-       if (filesystem::path(c).has_root_directory () && starts_with (c, check)) {
-               c = c.substr (_state.directory.length() + 1);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _use_dci_name = u;
        }
+       signal_changed (USE_DCI_NAME);
+}
 
-       if (c == _state.content) {
-               return;
+void
+Film::set_trust_content_headers (bool t)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _trust_content_headers = t;
        }
        
-       /* Create a temporary decoder so that we can get information
-          about the content.
-       */
-       shared_ptr<FilmState> s = state_copy ();
-       s->content = c;
-       shared_ptr<Options> o (new Options ("", "", ""));
-       o->out_size = Size (1024, 1024);
+       signal_changed (TRUST_CONTENT_HEADERS);
 
-       shared_ptr<Decoder> d = decoder_factory (s, o, 0, _log);
-       
-       _state.size = d->native_size ();
-       _state.length = d->length_in_frames ();
-       _state.frames_per_second = d->frames_per_second ();
-       _state.audio_channels = d->audio_channels ();
-       _state.audio_sample_rate = d->audio_sample_rate ();
-       _state.audio_sample_format = d->audio_sample_format ();
-
-       _state.content_digest = md5_digest (s->content_path ());
-       _state.content = c;
-       
-       signal_changed (SIZE);
-       signal_changed (LENGTH);
-       signal_changed (FRAMES_PER_SECOND);
-       signal_changed (AUDIO_CHANNELS);
-       signal_changed (AUDIO_SAMPLE_RATE);
-       signal_changed (CONTENT);
+       if (!_trust_content_headers && !content().empty()) {
+               /* We just said that we don't trust the content's header */
+               ContentList c = content ();
+               for (ContentList::iterator i = c.begin(); i != c.end(); ++i) {
+                       examine_content (*i);
+               }
+       }
+}
+              
+void
+Film::set_dcp_content_type (DCPContentType const * t)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _dcp_content_type = t;
+       }
+       signal_changed (DCP_CONTENT_TYPE);
 }
 
-/** Set the format that this Film should be shown in */
 void
 Film::set_format (Format const * f)
 {
-       _state.format = f;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _format = f;
+       }
        signal_changed (FORMAT);
 }
 
-/** Set the type to specify the DCP as having
- *  (feature, trailer etc.)
- */
 void
-Film::set_dcp_content_type (DCPContentType const * t)
+Film::set_crop (Crop c)
 {
-       _state.dcp_content_type = t;
-       signal_changed (DCP_CONTENT_TYPE);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _crop = c;
+       }
+       signal_changed (CROP);
 }
 
-/** Set the number of pixels by which to crop the left of the source video */
 void
 Film::set_left_crop (int c)
 {
-       if (c == _state.crop.left) {
-               return;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               
+               if (_crop.left == c) {
+                       return;
+               }
+               
+               _crop.left = c;
        }
-       
-       _state.crop.left = c;
        signal_changed (CROP);
 }
 
-/** Set the number of pixels by which to crop the right of the source video */
 void
 Film::set_right_crop (int c)
 {
-       if (c == _state.crop.right) {
-               return;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               if (_crop.right == c) {
+                       return;
+               }
+               
+               _crop.right = c;
        }
-
-       _state.crop.right = c;
        signal_changed (CROP);
 }
 
-/** Set the number of pixels by which to crop the top of the source video */
 void
 Film::set_top_crop (int c)
 {
-       if (c == _state.crop.top) {
-               return;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               if (_crop.top == c) {
+                       return;
+               }
+               
+               _crop.top = c;
        }
-       
-       _state.crop.top = c;
        signal_changed (CROP);
 }
 
-/** Set the number of pixels by which to crop the bottom of the source video */
 void
 Film::set_bottom_crop (int c)
 {
-       if (c == _state.crop.bottom) {
-               return;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               if (_crop.bottom == c) {
+                       return;
+               }
+               
+               _crop.bottom = c;
        }
-       
-       _state.crop.bottom = c;
        signal_changed (CROP);
 }
 
-/** Set the filters to apply to the image when generating thumbnails
- *  or a DCP.
- */
 void
-Film::set_filters (vector<Filter const *> const & f)
+Film::set_filters (vector<Filter const *> f)
 {
-       _state.filters = f;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _filters = f;
+       }
        signal_changed (FILTERS);
 }
 
-/** Set the number of frames to put in any generated DCP (from
- *  the start of the film).  0 indicates that all frames should
- *  be used.
- */
 void
-Film::set_dcp_frames (int n)
+Film::set_scaler (Scaler const * s)
 {
-       _state.dcp_frames = n;
-       signal_changed (DCP_FRAMES);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _scaler = s;
+       }
+       signal_changed (SCALER);
 }
 
 void
-Film::set_dcp_trim_action (TrimAction a)
+Film::set_trim_start (int t)
 {
-       _state.dcp_trim_action = a;
-       signal_changed (DCP_TRIM_ACTION);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _trim_start = t;
+       }
+       signal_changed (TRIM_START);
 }
 
-/** Set whether or not to generate a A/B comparison DCP.
- *  Such a DCP has the left half of its frame as the Film
- *  content without any filtering or post-processing; the
- *  right half is rendered with filters and post-processing.
- */
 void
-Film::set_dcp_ab (bool a)
+Film::set_trim_end (int t)
 {
-       _state.dcp_ab = a;
-       signal_changed (DCP_AB);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _trim_end = t;
+       }
+       signal_changed (TRIM_END);
+}
+
+void
+Film::set_trim_type (TrimType t)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _trim_type = t;
+       }
+       signal_changed (TRIM_TYPE);
+}
+
+void
+Film::set_ab (bool a)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _ab = a;
+       }
+       signal_changed (AB);
 }
 
 void
 Film::set_audio_gain (float g)
 {
-       _state.audio_gain = g;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _audio_gain = g;
+       }
        signal_changed (AUDIO_GAIN);
 }
 
 void
 Film::set_audio_delay (int d)
 {
-       _state.audio_delay = d;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _audio_delay = d;
+       }
        signal_changed (AUDIO_DELAY);
 }
 
-/** @return path of metadata file */
-string
-Film::metadata_file () const
+void
+Film::set_with_subtitles (bool w)
 {
-       return _state.file ("metadata");
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _with_subtitles = w;
+       }
+       signal_changed (WITH_SUBTITLES);
 }
 
-/** @return full path of the content (actual video) file
- *  of this Film.
- */
-string
-Film::content () const
+void
+Film::set_subtitle_offset (int o)
 {
-       return _state.content_path ();
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _subtitle_offset = o;
+       }
+       signal_changed (SUBTITLE_OFFSET);
 }
 
-/** The pre-processing GUI part of a thumbs update.
- *  Must be called from the GUI thread.
- */
 void
-Film::update_thumbs_pre_gui ()
+Film::set_subtitle_scale (float s)
 {
-       _state.thumbs.clear ();
-       filesystem::remove_all (_state.dir ("thumbs"));
-
-       /* This call will recreate the directory */
-       _state.dir ("thumbs");
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _subtitle_scale = s;
+       }
+       signal_changed (SUBTITLE_SCALE);
 }
 
-/** The post-processing GUI part of a thumbs update.
- *  Must be called from the GUI thread.
- */
 void
-Film::update_thumbs_post_gui ()
+Film::set_colour_lut (int i)
 {
-       string const tdir = _state.dir ("thumbs");
-       
-       for (filesystem::directory_iterator i = filesystem::directory_iterator (tdir); i != filesystem::directory_iterator(); ++i) {
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _colour_lut = i;
+       }
+       signal_changed (COLOUR_LUT);
+}
 
-               /* Aah, the sweet smell of progress */
-#if BOOST_FILESYSTEM_VERSION == 3              
-               string const l = filesystem::path(*i).leaf().generic_string();
-#else
-               string const l = i->leaf ();
-#endif
-               
-               size_t const d = l.find (".tiff");
-               if (d != string::npos) {
-                       _state.thumbs.push_back (atoi (l.substr (0, d).c_str()));
-               }
+void
+Film::set_j2k_bandwidth (int b)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _j2k_bandwidth = b;
        }
+       signal_changed (J2K_BANDWIDTH);
+}
 
-       sort (_state.thumbs.begin(), _state.thumbs.end());
-       
-       write_metadata ();
-       signal_changed (THUMBS);
+void
+Film::set_dci_metadata (DCIMetadata m)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _dci_metadata = m;
+       }
+       signal_changed (DCI_METADATA);
 }
 
-/** @return the number of thumbnail images that we have */
-int
-Film::num_thumbs () const
+
+void
+Film::set_dcp_frame_rate (int f)
 {
-       return _state.thumbs.size ();
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _dcp_frame_rate = f;
+       }
+       signal_changed (DCP_FRAME_RATE);
 }
 
-/** @param n A thumb index.
- *  @return The frame within the Film that it is for.
- */
-int
-Film::thumb_frame (int n) const
+void
+Film::signal_changed (Property p)
 {
-       return _state.thumb_frame (n);
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _dirty = true;
+       }
+
+       switch (p) {
+       case Film::CONTENT:
+               _playlist->setup (content ());
+               set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
+               set_audio_mapping (_playlist->default_audio_mapping ());
+               break;
+       default:
+               break;
+       }
+
+       if (ui_signaller) {
+               ui_signaller->emit (boost::bind (boost::ref (Changed), p));
+       }
 }
 
-/** @param n A thumb index.
- *  @return The path to the thumb's image file.
- */
-string
-Film::thumb_file (int n) const
+void
+Film::set_dci_date_today ()
 {
-       return _state.thumb_file (n);
+       _dci_date = boost::gregorian::day_clock::local_day ();
 }
 
-/** @return The path to the directory to write JPEG2000 files to */
 string
-Film::j2k_dir () const
+Film::info_path (int f) const
 {
-       assert (format());
-
-       filesystem::path p;
+       boost::filesystem::path p;
+       p /= info_dir ();
 
-       /* Start with j2c */
-       p /= "j2c";
+       stringstream s;
+       s.width (8);
+       s << setfill('0') << f << ".md5";
 
-       pair<string, string> f = Filter::ffmpeg_strings (filters ());
+       p /= s.str();
 
-       /* Write stuff to specify the filter / post-processing settings that are in use,
-          so that we don't get confused about J2K files generated using different
-          settings.
+       /* info_dir() will already have added any initial bit of the path,
+          so don't call file() on this.
        */
+       return p.string ();
+}
+
+string
+Film::j2c_path (int f, bool t) const
+{
+       boost::filesystem::path p;
+       p /= "j2c";
+       p /= video_state_identifier ();
+
        stringstream s;
-       s << _state.format->id()
-         << "_" << _state.content_digest
-         << "_" << crop().left << "_" << crop().right << "_" << crop().top << "_" << crop().bottom
-         << "_" << f.first << "_" << f.second
-         << "_" << _state.scaler->id();
+       s.width (8);
+       s << setfill('0') << f << ".j2c";
 
-       p /= s.str ();
+       if (t) {
+               s << ".tmp";
+       }
 
-       /* Similarly for the A/B case */
-       if (dcp_ab()) {
-               stringstream s;
-               pair<string, string> fa = Filter::ffmpeg_strings (Config::instance()->reference_filters());
-               s << "ab_" << Config::instance()->reference_scaler()->id() << "_" << fa.first << "_" << fa.second;
-               p /= s.str ();
+       p /= s.str();
+       return file (p.string ());
+}
+
+/** Make an educated guess as to whether we have a complete DCP
+ *  or not.
+ *  @return true if we do.
+ */
+
+bool
+Film::have_dcp () const
+{
+       try {
+               libdcp::DCP dcp (dir (dcp_name()));
+               dcp.read ();
+       } catch (...) {
+               return false;
        }
-       
-       return _state.dir (p.string ());
+
+       return true;
 }
 
-/** Handle a change to the Film's metadata */
-void
-Film::signal_changed (Property p)
+shared_ptr<Player>
+Film::player () const
 {
-       _dirty = true;
-       Changed (p);
+       boost::mutex::scoped_lock lm (_state_mutex);
+       return shared_ptr<Player> (new Player (shared_from_this (), _playlist));
 }
 
-/** Add suitable Jobs to the JobManager to create a DCP for this Film.
- *  @param true to transcode, false to use the WAV and J2K files that are already there.
- */
 void
-Film::make_dcp (bool transcode, int freq)
+Film::add_content (shared_ptr<Content> c)
 {
-       string const t = name ();
-       if (t.find ("/") != string::npos) {
-               throw BadSettingError ("name", "cannot contain slashes");
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _content.push_back (c);
        }
-       
-       log()->log (String::compose ("DVD-o-matic %1 git %2 using %3", dvdomatic_version, dvdomatic_git_commit, dependency_version_summary()));
 
+       signal_changed (CONTENT);
+
+       examine_content (c);
+}
+
+void
+Film::remove_content (shared_ptr<Content> c)
+{
        {
-               char buffer[128];
-               gethostname (buffer, sizeof (buffer));
-               log()->log (String::compose ("Starting to make DCP on %1", buffer));
-       }
-               
-       if (format() == 0) {
-               throw MissingSettingError ("format");
+               boost::mutex::scoped_lock lm (_state_mutex);
+               ContentList::iterator i = find (_content.begin(), _content.end(), c);
+               if (i != _content.end ()) {
+                       _content.erase (i);
+               }
        }
 
-       if (content().empty ()) {
-               throw MissingSettingError ("content");
-       }
+       signal_changed (CONTENT);
+}
 
-       if (dcp_content_type() == 0) {
-               throw MissingSettingError ("content type");
-       }
+void
+Film::move_content_earlier (shared_ptr<Content> c)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               ContentList::iterator i = find (_content.begin(), _content.end(), c);
+               if (i == _content.begin () || i == _content.end()) {
+                       return;
+               }
 
-       if (name().empty()) {
-               throw MissingSettingError ("name");
+               ContentList::iterator j = i;
+               --j;
+
+               swap (*i, *j);
        }
 
-       shared_ptr<const FilmState> fs = state_copy ();
-       shared_ptr<Options> o (new Options (j2k_dir(), ".j2c", _state.dir ("wavs")));
-       o->out_size = format()->dcp_size ();
-       if (dcp_frames() == 0) {
-               /* Decode the whole film, no blacking */
-               o->black_after = 0;
-       } else {
-               switch (dcp_trim_action()) {
-               case CUT:
-                       /* Decode only part of the film, no blacking */
-                       o->black_after = 0;
-                       break;
-               case BLACK_OUT:
-                       /* Decode the whole film, but black some frames out */
-                       o->black_after = dcp_frames ();
+       signal_changed (CONTENT);
+}
+
+void
+Film::move_content_later (shared_ptr<Content> c)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               ContentList::iterator i = find (_content.begin(), _content.end(), c);
+               if (i == _content.end()) {
+                       return;
                }
-       }
-       
-       o->decode_video_frequency = freq;
-       o->padding = format()->dcp_padding (this);
-       o->ratio = format()->ratio_as_float (this);
 
-       if (transcode) {
-               if (_state.dcp_ab) {
-                       JobManager::instance()->add (shared_ptr<Job> (new ABTranscodeJob (fs, o, log ())));
-               } else {
-                       JobManager::instance()->add (shared_ptr<Job> (new TranscodeJob (fs, o, log ())));
+               ContentList::iterator j = i;
+               ++j;
+               if (j == _content.end ()) {
+                       return;
                }
+
+               swap (*i, *j);
        }
 
-       JobManager::instance()->add (shared_ptr<Job> (new CheckHashesJob (fs, o, log ())));
-       JobManager::instance()->add (shared_ptr<Job> (new MakeDCPJob (fs, o, log ())));
+       signal_changed (CONTENT);
+
 }
 
-shared_ptr<FilmState>
-Film::state_copy () const
+ContentAudioFrame
+Film::audio_length () const
 {
-       return shared_ptr<FilmState> (new FilmState (_state));
+       return _playlist->audio_length ();
 }
 
-void
-Film::copy_from_dvd_post_gui ()
+int
+Film::audio_channels () const
 {
-       const string dvd_dir = _state.dir ("dvd");
+       return _playlist->audio_channels ();
+}
 
-       string largest_file;
-       uintmax_t largest_size = 0;
-       for (filesystem::directory_iterator i = filesystem::directory_iterator (dvd_dir); i != filesystem::directory_iterator(); ++i) {
-               uintmax_t const s = filesystem::file_size (*i);
-               if (s > largest_size) {
+int
+Film::audio_frame_rate () const
+{
+       return _playlist->audio_frame_rate ();
+}
 
-#if BOOST_FILESYSTEM_VERSION == 3              
-                       largest_file = filesystem::path(*i).generic_string();
-#else
-                       largest_file = i->string ();
-#endif
-                       largest_size = s;
-               }
-       }
+bool
+Film::has_audio () const
+{
+       return _playlist->has_audio ();
+}
 
-       set_content (largest_file);
+float
+Film::video_frame_rate () const
+{
+       return _playlist->video_frame_rate ();
 }
 
-void
-Film::examine_content ()
+libdcp::Size
+Film::video_size () const
 {
-       if (_examine_content_job) {
-               return;
-       }
-       
-       _examine_content_job.reset (new ExamineContentJob (state_copy (), log ()));
-       _examine_content_job->Finished.connect (sigc::mem_fun (*this, &Film::examine_content_post_gui));
-       JobManager::instance()->add (_examine_content_job);
+       return _playlist->video_size ();
 }
 
-void
-Film::examine_content_post_gui ()
+ContentVideoFrame
+Film::video_length () const
 {
-       _state.length = _examine_content_job->last_video_frame ();
-       signal_changed (LENGTH);
+       return _playlist->video_length ();
+}
+
+/** Unfortunately this is needed as the GUI has FFmpeg-specific controls */
+shared_ptr<FFmpegContent>
+Film::ffmpeg () const
+{
+       boost::mutex::scoped_lock lm (_state_mutex);
        
-       _examine_content_job.reset ();
+       for (ContentList::const_iterator i = _content.begin (); i != _content.end(); ++i) {
+               shared_ptr<FFmpegContent> f = boost::dynamic_pointer_cast<FFmpegContent> (*i);
+               if (f) {
+                       return f;
+               }
+       }
+
+       return shared_ptr<FFmpegContent> ();
 }
 
-void
-Film::set_scaler (Scaler const * s)
+vector<FFmpegSubtitleStream>
+Film::ffmpeg_subtitle_streams () const
 {
-       _state.scaler = s;
-       signal_changed (SCALER);
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->subtitle_streams ();
+       }
+
+       return vector<FFmpegSubtitleStream> ();
 }
 
-/** @return full paths to any audio files that this Film has */
-vector<string>
-Film::audio_files () const
+boost::optional<FFmpegSubtitleStream>
+Film::ffmpeg_subtitle_stream () const
 {
-       vector<string> f;
-       for (filesystem::directory_iterator i = filesystem::directory_iterator (_state.dir("wavs")); i != filesystem::directory_iterator(); ++i) {
-               f.push_back (i->path().string ());
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->subtitle_stream ();
        }
 
-       return f;
+       return boost::none;
 }
 
-ContentType
-Film::content_type () const
+vector<FFmpegAudioStream>
+Film::ffmpeg_audio_streams () const
 {
-       return _state.content_type ();
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->audio_streams ();
+       }
+
+       return vector<FFmpegAudioStream> ();
 }
 
-void
-Film::set_still_duration (int d)
+boost::optional<FFmpegAudioStream>
+Film::ffmpeg_audio_stream () const
 {
-       _state.still_duration = d;
-       signal_changed (STILL_DURATION);
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->audio_stream ();
+       }
+
+       return boost::none;
 }
 
 void
-Film::send_dcp_to_tms ()
+Film::set_ffmpeg_subtitle_stream (FFmpegSubtitleStream s)
 {
-       shared_ptr<Job> j (new SCPDCPJob (state_copy (), log ()));
-       JobManager::instance()->add (j);
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               f->set_subtitle_stream (s);
+       }
 }
 
 void
-Film::copy_from_dvd ()
+Film::set_ffmpeg_audio_stream (FFmpegAudioStream s)
 {
-       shared_ptr<Job> j (new CopyFromDVDJob (state_copy (), log ()));
-       j->Finished.connect (sigc::mem_fun (*this, &Film::copy_from_dvd_post_gui));
-       JobManager::instance()->add (j);
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               f->set_audio_stream (s);
+       }
 }
 
-int
-Film::encoded_frames () const
+void
+Film::set_audio_mapping (AudioMapping m)
 {
-       if (format() == 0) {
-               return 0;
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _audio_mapping = m;
        }
 
-       int N = 0;
-       for (filesystem::directory_iterator i = filesystem::directory_iterator (j2k_dir ()); i != filesystem::directory_iterator(); ++i) {
-               ++N;
-               this_thread::interruption_point ();
-       }
+       signal_changed (AUDIO_MAPPING);
+}
 
-       return N;
+void
+Film::content_changed (boost::weak_ptr<Content> c, int p)
+{
+       if (p == VideoContentProperty::VIDEO_FRAME_RATE) {
+               set_dcp_frame_rate (best_dcp_frame_rate (video_frame_rate ()));
+       } else if (p == AudioContentProperty::AUDIO_CHANNELS) {
+               set_audio_mapping (_playlist->default_audio_mapping ());
+       }               
+
+       if (ui_signaller) {
+               ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
+       }
 }