From da228f37426ac999f02e03e558acef5501b22361 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 20 Jul 2014 15:11:57 +0100 Subject: Tidy up KDM generation from CPLs a bit. --- src/cpl.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/cpl.cc') diff --git a/src/cpl.cc b/src/cpl.cc index 535fd77f..b76e8272 100644 --- a/src/cpl.cc +++ b/src/cpl.cc @@ -153,20 +153,20 @@ CPL::write_xml (boost::filesystem::path file, Standard standard, shared_ptr > -CPL::content () const +list > +CPL::reel_assets () const { - list > c; + list > c; for (list >::const_iterator i = _reels.begin(); i != _reels.end(); ++i) { if ((*i)->main_picture ()) { - c.push_back ((*i)->main_picture()->mxf ()); + c.push_back ((*i)->main_picture()); } if ((*i)->main_sound ()) { - c.push_back ((*i)->main_sound()->mxf ()); + c.push_back ((*i)->main_sound()); } if ((*i)->main_subtitle ()) { - c.push_back ((*i)->main_subtitle()->subtitle_content ()); + c.push_back ((*i)->main_subtitle()); } } -- cgit v1.2.3