From: Carl Hetherington Date: Fri, 29 Nov 2013 23:01:31 +0000 (+0000) Subject: Merge branch '1.0' into 1.0-vob X-Git-Tag: v2.0.48~1107 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=f0be0f0e060e40d9a0da1b44429ef41901b8a536;hp=af95bb7c2cebf8793b16c9d103dc84fca13b05de;p=dcpomatic.git Merge branch '1.0' into 1.0-vob --- diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index e0eaacb91..04823d1e6 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -22,8 +22,12 @@ #include "analyse_audio_job.h" #include "job_manager.h" #include "film.h" +#include "exceptions.h" + +#include "i18n.h" using std::string; +using std::vector; using boost::shared_ptr; using boost::lexical_cast; using boost::dynamic_pointer_cast; @@ -60,6 +64,28 @@ AudioContent::AudioContent (shared_ptr f, shared_ptrnumber_child ("AudioDelay"); } +AudioContent::AudioContent (shared_ptr f, vector > c) + : Content (f, c) +{ + shared_ptr ref = dynamic_pointer_cast (c[0]); + assert (ref); + + for (size_t i = 0; i < c.size(); ++i) { + shared_ptr ac = dynamic_pointer_cast (c[i]); + + if (ac->audio_gain() != ref->audio_gain()) { + throw JoinError (_("Content to be joined must have the same audio gain.")); + } + + if (ac->audio_delay() != ref->audio_delay()) { + throw JoinError (_("Content to be joined must have the same audio delay.")); + } + } + + _audio_gain = ref->audio_gain (); + _audio_delay = ref->audio_delay (); +} + void AudioContent::as_xml (xmlpp::Node* node) const { diff --git a/src/lib/audio_content.h b/src/lib/audio_content.h index 73919105d..b100d7aba 100644 --- a/src/lib/audio_content.h +++ b/src/lib/audio_content.h @@ -46,6 +46,7 @@ public: AudioContent (boost::shared_ptr, Time); AudioContent (boost::shared_ptr, boost::filesystem::path); AudioContent (boost::shared_ptr, boost::shared_ptr); + AudioContent (boost::shared_ptr, std::vector >); void as_xml (xmlpp::Node *) const; std::string technical_summary () const; diff --git a/src/lib/content.cc b/src/lib/content.cc index a41261998..f09012765 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -24,10 +24,17 @@ #include "util.h" #include "content_factory.h" #include "ui_signaller.h" +#include "exceptions.h" +#include "film.h" + +#include "i18n.h" using std::string; using std::stringstream; using std::set; +using std::list; +using std::cout; +using std::vector; using boost::shared_ptr; using boost::lexical_cast; @@ -37,6 +44,16 @@ int const ContentProperty::LENGTH = 402; int const ContentProperty::TRIM_START = 403; int const ContentProperty::TRIM_END = 404; +Content::Content (shared_ptr f) + : _film (f) + , _position (0) + , _trim_start (0) + , _trim_end (0) + , _change_signals_frequent (false) +{ + +} + Content::Content (shared_ptr f, Time p) : _film (f) , _position (p) @@ -49,32 +66,58 @@ Content::Content (shared_ptr f, Time p) Content::Content (shared_ptr f, boost::filesystem::path p) : _film (f) - , _path (p) , _position (0) , _trim_start (0) , _trim_end (0) , _change_signals_frequent (false) { - + _paths.push_back (p); } Content::Content (shared_ptr f, shared_ptr node) : _film (f) , _change_signals_frequent (false) { - _path = node->string_child ("Path"); + list path_children = node->node_children ("Path"); + for (list::const_iterator i = path_children.begin(); i != path_children.end(); ++i) { + _paths.push_back ((*i)->content ()); + } _digest = node->string_child ("Digest"); _position = node->number_child