diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-26 21:52:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-26 21:52:21 +0100 |
| commit | 2f2643b6ddc36d6efcf4d41913ec4f711750e9c4 (patch) | |
| tree | 314e0b9866726c8cb67695ce338d2d926903020f /src/dcp.cc | |
| parent | d13f684575000397ee0e5c8371c4de3a48234432 (diff) | |
Rename ReelMXF -> ReelFileAsset.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |
