diff options
Diffstat (limited to 'src/lib/audio_content.cc')
| -rw-r--r-- | src/lib/audio_content.cc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib/audio_content.cc b/src/lib/audio_content.cc index d4ce6c243..a252e4b5a 100644 --- a/src/lib/audio_content.cc +++ b/src/lib/audio_content.cc @@ -91,6 +91,27 @@ AudioContent::AudioContent (Content* parent, cxml::ConstNodePtr node) } } +AudioContent::AudioContent (Content* parent, vector<shared_ptr<Content> > c) + : ContentPart (parent) +{ + shared_ptr<AudioContent> ref = c[0]->audio; + DCPOMATIC_ASSERT (ref); + + for (size_t i = 1; i < c.size(); ++i) { + if (c[i]->audio->gain() != ref->gain()) { + throw JoinError (_("Content to be joined must have the same audio gain.")); + } + + if (c[i]->audio->delay() != ref->delay()) { + throw JoinError (_("Content to be joined must have the same audio delay.")); + } + } + + _gain = ref->gain (); + _delay = ref->delay (); + _streams = ref->streams (); +} + void AudioContent::as_xml (xmlpp::Node* node) const { |
