summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-26 21:52:21 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-26 21:52:21 +0100
commit2f2643b6ddc36d6efcf4d41913ec4f711750e9c4 (patch)
tree314e0b9866726c8cb67695ce338d2d926903020f /src/dcp.cc
parentd13f684575000397ee0e5c8371c4de3a48234432 (diff)
Rename ReelMXF -> ReelFileAsset.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc4
1 files changed, 2 insertions, 2 deletions
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<dcp::VerificationNote>* 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<shared_ptr<Asset>> 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;
}