diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-09 23:54:05 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-09 23:54:05 +0200 |
| commit | 9f6c0e4575bad2bc45edb8cf9afa5716b9988728 (patch) | |
| tree | 302076ea5bb0f10950c59bfd613f1bddee1efb09 /src | |
| parent | 62f9fadc0424dfab6debcc342a210b33c5e189e6 (diff) | |
Add some detail to a verification warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dcp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -263,7 +263,7 @@ DCP::read (list<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_mxf BOOST_FOREACH (shared_ptr<CPL> i, cpls()) { BOOST_FOREACH (shared_ptr<const ReelMXF> 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())); } } } |
