From c871f79f49087582c6ea7a42e79fd5fd3968bf00 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 12 May 2020 12:35:07 +0200 Subject: Add a note when verifying if the DCP refers to assets that are not mentioned in its ASSETMAP (i.e. a VF). --- src/dcp.cc | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'src/dcp.cc') diff --git a/src/dcp.cc b/src/dcp.cc index 09db9523..2929b5d8 100644 --- a/src/dcp.cc +++ b/src/dcp.cc @@ -256,8 +256,17 @@ DCP::read (list* notes, bool ignore_incorrect_picture_mxf } } - BOOST_FOREACH (shared_ptr i, cpls ()) { - i->resolve_refs (other_assets); + resolve_refs (other_assets); + + /* While we've got the ASSETMAP lets look and see if this DCP refers to things that are not in its ASSETMAP */ + if (notes) { + BOOST_FOREACH (shared_ptr i, cpls()) { + BOOST_FOREACH (shared_ptr j, i->reel_mxfs()) { + if (!j->asset_ref().resolved() && paths.find(j->asset_ref().id()) == paths.end()) { + notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET)); + } + } + } } } -- cgit v1.2.3