From cbd4450197a083bf58bda510e626f73ba583cb66 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 21 Jul 2018 15:16:18 +0100 Subject: Basics of multiple captions per content so that DCPContent can hold subs and closed captions. --- src/lib/content.cc | 31 +++++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) (limited to 'src/lib/content.cc') diff --git a/src/lib/content.cc b/src/lib/content.cc index d232f6e49..13c5794fe 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -402,7 +402,34 @@ Content::take_settings_from (shared_ptr c) if (audio && c->audio) { audio->take_settings_from (c->audio); } - if (caption && c->caption) { - caption->take_settings_from (c->caption); + + list >::iterator i = caption.begin (); + list >::const_iterator j = c->caption.begin (); + while (i != caption.end() && j != c->caption.end()) { + (*i)->take_settings_from (*j); + ++i; + ++j; + } +} + +shared_ptr +Content::only_caption () const +{ + DCPOMATIC_ASSERT (caption.size() < 2); + if (caption.empty ()) { + return shared_ptr (); + } + return caption.front (); +} + +shared_ptr +Content::caption_of_original_type (CaptionType type) const +{ + BOOST_FOREACH (shared_ptr i, caption) { + if (i->original_type() == type) { + return i; + } } + + return shared_ptr (); } -- cgit v1.2.3