diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-03-22 01:10:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-03-22 01:10:22 +0100 |
| commit | 080e8995a771354381ecad46b83d5a95309d81de (patch) | |
| tree | 220e36d49ac4e40605bbfd8a115a9adfe7965f19 /src/dcp.cc | |
| parent | 4700724da0aaf27aa43e4809d263c0fc00a8be9f (diff) | |
Clarify ID in verification note.
Diffstat (limited to 'src/dcp.cc')
| -rw-r--r-- | src/dcp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |
