From 2f2643b6ddc36d6efcf4d41913ec4f711750e9c4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 26 Jan 2021 21:52:21 +0100 Subject: Rename ReelMXF -> ReelFileAsset. --- src/dcp.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dcp.cc') diff --git a/src/dcp.cc b/src/dcp.cc index 9ccc6eef..df1d531b 100644 --- a/src/dcp.cc +++ b/src/dcp.cc @@ -261,7 +261,7 @@ DCP::read (vector* notes, bool ignore_incorrect_picture_m /* While we've got the ASSETMAP lets look and see if this DCP refers to things that are not in its ASSETMAP */ if (notes) { for (auto i: cpls()) { - for (auto j: i->reel_mxfs()) { + for (auto j: i->reel_file_assets()) { if (!j->asset_ref().resolved() && paths.find(j->asset_ref().id()) == paths.end()) { notes->push_back (VerificationNote(VerificationNote::Type::WARNING, VerificationNote::Code::EXTERNAL_ASSET, j->asset_ref().id())); } @@ -519,7 +519,7 @@ DCP::assets (bool ignore_unresolved) const vector> assets; for (auto i: cpls()) { assets.push_back (i); - for (auto j: i->reel_mxfs()) { + for (auto j: i->reel_file_assets()) { if (ignore_unresolved && !j->asset_ref().resolved()) { continue; } -- cgit v1.2.3