Merge master.
[dcpomatic.git] / src / lib / film.cc
index 20a7ee49bcbf07ac8ec75e89c145d9615cdd254f..b36dc8f9c0f5dac258533e9879f5103add8bb232 100644 (file)
@@ -35,7 +35,6 @@
 #include "format.h"
 #include "job.h"
 #include "filter.h"
-#include "transcoder.h"
 #include "util.h"
 #include "job_manager.h"
 #include "ab_transcode_job.h"
 #include "config.h"
 #include "version.h"
 #include "ui_signaller.h"
-#include "video_decoder.h"
-#include "audio_decoder.h"
-#include "sndfile_decoder.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"
 
@@ -95,7 +93,7 @@ Film::Film (string d, bool must_exist)
        , _use_dci_name (true)
        , _trust_content_headers (true)
        , _dcp_content_type (0)
-       , _format (0)
+       , _format (Format::from_id ("185"))
        , _scaler (Scaler::from_id ("bicubic"))
        , _trim_start (0)
        , _trim_end (0)
@@ -112,6 +110,8 @@ Film::Film (string d, bool must_exist)
        , _dirty (false)
 {
        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)
@@ -181,6 +181,8 @@ Film::Film (Film const & o)
                _content.push_back ((*i)->clone ());
        }
        
+       _playlist->ContentChanged.connect (bind (&Film::content_changed, this, _1, _2));
+       
        _playlist->setup (_content);
 }
 
@@ -416,6 +418,7 @@ Film::write_metadata () const
        _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"));
@@ -487,17 +490,25 @@ Film::read_metadata ()
        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") {
-                       _content.push_back (shared_ptr<Content> (new FFmpegContent (*i)));
+                       c.reset (new FFmpegContent (*i));
                } else if (type == "ImageMagick") {
-                       _content.push_back (shared_ptr<Content> (new ImageMagickContent (*i)));
+                       c.reset (new ImageMagickContent (*i));
                } else if (type == "Sndfile") {
-                       _content.push_back (shared_ptr<Content> (new SndfileContent (*i)));
+                       c.reset (new SndfileContent (*i));
                }
+
+               _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);
 }
 
 libdcp::Size
@@ -548,7 +559,7 @@ Film::file (string f) const
 int
 Film::target_audio_sample_rate () const
 {
-       if (has_audio ()) {
+       if (!has_audio ()) {
                return 0;
        }
        
@@ -949,6 +960,16 @@ Film::signal_changed (Property p)
                _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));
        }
@@ -1028,8 +1049,6 @@ Film::add_content (shared_ptr<Content> c)
        {
                boost::mutex::scoped_lock lm (_state_mutex);
                _content.push_back (c);
-               _content_connections.push_back (c->Changed.connect (bind (&Film::content_changed, this, _1)));
-               _playlist->setup (_content);
        }
 
        signal_changed (CONTENT);
@@ -1046,14 +1065,6 @@ Film::remove_content (shared_ptr<Content> c)
                if (i != _content.end ()) {
                        _content.erase (i);
                }
-
-               for (list<boost::signals2::connection>::iterator i = _content_connections.begin(); i != _content_connections.end(); ++i) {
-                       i->disconnect ();
-               }
-
-               for (ContentList::iterator i = _content.begin(); i != _content.end(); ++i) {
-                       _content_connections.push_back (c->Changed.connect (bind (&Film::content_changed, this, _1)));
-               }
        }
 
        signal_changed (CONTENT);
@@ -1073,6 +1084,7 @@ Film::move_content_earlier (shared_ptr<Content> c)
                --j;
 
                swap (*i, *j);
+               _playlist->setup (_content);
        }
 
        signal_changed (CONTENT);
@@ -1095,6 +1107,7 @@ Film::move_content_later (shared_ptr<Content> c)
                }
 
                swap (*i, *j);
+               _playlist->setup (_content);
        }
 
        signal_changed (CONTENT);
@@ -1149,10 +1162,105 @@ Film::video_length () const
        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);
+       
+       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> ();
+}
+
+vector<FFmpegSubtitleStream>
+Film::ffmpeg_subtitle_streams () const
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->subtitle_streams ();
+       }
+
+       return vector<FFmpegSubtitleStream> ();
+}
+
+boost::optional<FFmpegSubtitleStream>
+Film::ffmpeg_subtitle_stream () const
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->subtitle_stream ();
+       }
+
+       return boost::none;
+}
+
+vector<FFmpegAudioStream>
+Film::ffmpeg_audio_streams () const
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->audio_streams ();
+       }
+
+       return vector<FFmpegAudioStream> ();
+}
+
+boost::optional<FFmpegAudioStream>
+Film::ffmpeg_audio_stream () const
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               return f->audio_stream ();
+       }
+
+       return boost::none;
+}
+
+void
+Film::set_ffmpeg_subtitle_stream (FFmpegSubtitleStream s)
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               f->set_subtitle_stream (s);
+       }
+}
+
+void
+Film::set_ffmpeg_audio_stream (FFmpegAudioStream s)
+{
+       shared_ptr<FFmpegContent> f = ffmpeg ();
+       if (f) {
+               f->set_audio_stream (s);
+       }
+}
+
+void
+Film::set_audio_mapping (AudioMapping m)
+{
+       {
+               boost::mutex::scoped_lock lm (_state_mutex);
+               _audio_mapping = m;
+       }
+
+       signal_changed (AUDIO_MAPPING);
+}
+
 void
-Film::content_changed (int p)
+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), p));
+               ui_signaller->emit (boost::bind (boost::ref (ContentChanged), c, p));
        }
 }