summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-03-15 00:49:41 +0000
committerCarl Hetherington <cth@carlh.net>2019-03-17 00:24:27 +0000
commit2d60083498861ac30c751dbf0ca387573df6dc68 (patch)
treee98e7631415074b492d1422149f10f6e55367a42 /src/dcp.cc
parentea487953c7e51ec5c16087d739a42981ec9d0ff9 (diff)
Move asset refs and hash from ReelAsset to ReelMXF.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 5d908530..52598610 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -476,7 +476,7 @@ DCP::assets (bool ignore_unresolved) const
list<shared_ptr<Asset> > assets;
BOOST_FOREACH (shared_ptr<CPL> i, cpls ()) {
assets.push_back (i);
- BOOST_FOREACH (shared_ptr<const ReelAsset> j, i->reel_assets ()) {
+ BOOST_FOREACH (shared_ptr<const ReelMXF> j, i->reel_mxfs()) {
if (ignore_unresolved && !j->asset_ref().resolved()) {
continue;
}