diff options
| author | Carl Hetherington <cth@carlh.net> | 2026-05-30 16:46:58 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2026-05-30 16:46:58 +0200 |
| commit | 848c4fa6bcee49a8b23520530ccb2007ec0c0b31 (patch) | |
| tree | 2c438cd1af0f90d0d62ee36a8cf0c4d32e7fa444 /src | |
| parent | 136d53bd07868f5fadd5b6e779aa5a02fe9a2327 (diff) | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/dcp.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -269,7 +269,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) { + if (asset->id() != id && notes) { 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); |
