From: Carl Hetherington Date: Wed, 9 Sep 2020 21:54:05 +0000 (+0200) Subject: Add some detail to a verification warning. X-Git-Tag: v1.8.0~317 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=9f6c0e4575bad2bc45edb8cf9afa5716b9988728;p=libdcp.git Add some detail to a verification warning. --- diff --git a/src/dcp.cc b/src/dcp.cc index 2929b5d8..426bd815 100644 --- a/src/dcp.cc +++ b/src/dcp.cc @@ -263,7 +263,7 @@ DCP::read (list* notes, bool ignore_incorrect_picture_mxf 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)); + notes->push_back (VerificationNote(VerificationNote::VERIFY_WARNING, VerificationNote::EXTERNAL_ASSET, j->asset_ref().id())); } } }