diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-03-15 00:49:41 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-03-17 00:24:27 +0000 |
| commit | 2d60083498861ac30c751dbf0ca387573df6dc68 (patch) | |
| tree | e98e7631415074b492d1422149f10f6e55367a42 /src/cpl.cc | |
| parent | ea487953c7e51ec5c16087d739a42981ec9d0ff9 (diff) | |
Move asset refs and hash from ReelAsset to ReelMXF.
Diffstat (limited to 'src/cpl.cc')
| -rw-r--r-- | src/cpl.cc | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -175,10 +175,10 @@ CPL::write_xml (boost::filesystem::path file, Standard standard, shared_ptr<cons set_file (file); } -list<shared_ptr<ReelAsset> > -CPL::reel_assets () +list<shared_ptr<ReelMXF> > +CPL::reel_mxfs () { - list<shared_ptr<ReelAsset> > c; + list<shared_ptr<ReelMXF> > c; BOOST_FOREACH (shared_ptr<Reel> i, _reels) { if (i->main_picture ()) { @@ -201,10 +201,10 @@ CPL::reel_assets () return c; } -list<shared_ptr<const ReelAsset> > -CPL::reel_assets () const +list<shared_ptr<const ReelMXF> > +CPL::reel_mxfs () const { - list<shared_ptr<const ReelAsset> > c; + list<shared_ptr<const ReelMXF> > c; BOOST_FOREACH (shared_ptr<Reel> i, _reels) { if (i->main_picture ()) { |
