summaryrefslogtreecommitdiff
path: root/src/dcp.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-03-22 01:10:22 +0100
committerCarl Hetherington <cth@carlh.net>2026-03-22 01:10:22 +0100
commit080e8995a771354381ecad46b83d5a95309d81de (patch)
tree220e36d49ac4e40605bbfd8a115a9adfe7965f19 /src/dcp.cc
parent4700724da0aaf27aa43e4809d263c0fc00a8be9f (diff)
Clarify ID in verification note.
Diffstat (limited to 'src/dcp.cc')
-rw-r--r--src/dcp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dcp.cc b/src/dcp.cc
index 049cef12..d7245ed8 100644
--- a/src/dcp.cc
+++ b/src/dcp.cc
@@ -270,7 +270,7 @@ DCP::read (vector<dcp::VerificationNote>* notes, bool ignore_incorrect_picture_m
bool found_threed_marked_as_twod = false;
auto asset = asset_factory(path, ignore_incorrect_picture_mxf_type, &found_threed_marked_as_twod);
if (asset->id() != id) {
- notes->push_back(dcp::VerificationNote{VerificationNote::Code::MISMATCHED_ASSET_MAP_ID}.set_id(id).set_other_id(asset->id()));
+ notes->push_back(dcp::VerificationNote{VerificationNote::Code::MISMATCHED_ASSET_MAP_ID}.set_asset_id(id).set_other_asset_id(asset->id()));
}
other_assets.push_back(asset);
if (found_threed_marked_as_twod && notes) {