Merge master; fix crash on new film.
[dcpomatic.git] / src / lib / film.cc
index 67605ffcaba2c6836fd69be1be20d7202db5792a..98c6c061061504a72c3821873f4d3a095c76d994 100644 (file)
@@ -98,6 +98,7 @@ Film::Film (string d, bool must_exist)
        , _scaler (Scaler::from_id ("bicubic"))
        , _trim_start (0)
        , _trim_end (0)
+       , _trim_type (CPL)
        , _ab (false)
        , _audio_gain (0)
        , _audio_delay (0)
@@ -144,6 +145,8 @@ Film::Film (string d, bool must_exist)
 
        if (must_exist) {
                read_metadata ();
+       } else {
+               write_metadata ();
        }
 
        _log.reset (new FileLog (file ("log")));
@@ -165,6 +168,7 @@ Film::Film (Film const & o)
        , _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)
@@ -191,6 +195,7 @@ string
 Film::video_state_identifier () const
 {
        assert (format ());
+       LocaleGuard lg;
 
        pair<string, string> f = Filter::ffmpeg_strings (filters());
 
@@ -223,18 +228,46 @@ Film::info_dir () const
 }
 
 string
-Film::video_mxf_dir () const
+Film::internal_video_mxf_dir () const
 {
        boost::filesystem::path p;
        return dir ("video");
 }
 
 string
-Film::video_mxf_filename () const
+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
 {
@@ -375,6 +408,7 @@ Film::write_metadata () const
        ContentList the_content = content ();
        
        boost::mutex::scoped_lock lm (_state_mutex);
+       LocaleGuard lg;
 
        boost::filesystem::create_directories (directory());
 
@@ -385,12 +419,23 @@ Film::write_metadata () const
        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));
@@ -430,6 +475,7 @@ void
 Film::read_metadata ()
 {
        boost::mutex::scoped_lock lm (_state_mutex);
+       LocaleGuard lg;
 
        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!"));
@@ -455,6 +501,15 @@ Film::read_metadata ()
                }
        }
 
+       {
+               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;
+               }
+       }
+
        _crop.left = f.number_child<int> ("LeftCrop");
        _crop.right = f.number_child<int> ("RightCrop");
        _crop.top = f.number_child<int> ("TopCrop");
@@ -847,6 +902,16 @@ Film::set_trim_end (int 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)
 {
@@ -1150,6 +1215,12 @@ Film::video_length () const
        return _playlist->video_length ();
 }
 
+ContentVideoFrame
+Film::content_length () const
+{
+       return _playlist->content_length ();
+}
+
 /** Unfortunately this is needed as the GUI has FFmpeg-specific controls */
 shared_ptr<FFmpegContent>
 Film::ffmpeg () const
@@ -1246,7 +1317,7 @@ Film::content_changed (boost::weak_ptr<Content> c, int p)
                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));