diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-18 12:08:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-18 12:08:51 +0200 |
| commit | 44a4ff40df50688286e6db8b1fc2c024f6e5834b (patch) | |
| tree | 2611da309cdfa22530b7d4d98df2e3ff80c02bbe /src/wx/verify_dcp_result_panel.cc | |
| parent | af20e21e2363f7c4d5f7031c444984f383c26914 (diff) | |
| parent | d5f5a9d9f5635f84a5e372181dea1c7cbb0ae732 (diff) | |
Merge remote-tracking branch 'origin/main' into v2.17.x
Diffstat (limited to 'src/wx/verify_dcp_result_panel.cc')
| -rw-r--r-- | src/wx/verify_dcp_result_panel.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_result_panel.cc b/src/wx/verify_dcp_result_panel.cc index bfeb14640..1e7e3395f 100644 --- a/src/wx/verify_dcp_result_panel.cc +++ b/src/wx/verify_dcp_result_panel.cc @@ -464,6 +464,12 @@ VerifyDCPResultPanel::fill(shared_ptr<VerifyDCPJob> job) case dcp::VerificationNote::Code::EMPTY_CONTENT_VERSION_LABEL_TEXT: add(i, _("The <LabelText> in a <ContentVersion> in CPL %id is empty")); break; + case dcp::VerificationNote::Code::INVALID_CPL_NAMESPACE: + add(i, _("The CPL %id has an invalid namespace %n")); + break; + case dcp::VerificationNote::Code::MISSING_CPL_CONTENT_VERSION: + add(i, _("The CPL %id has no <ContentVersion> tag")); + break; case dcp::VerificationNote::Code::MATCHING_CPL_HASHES: case dcp::VerificationNote::Code::CORRECT_PICTURE_HASH: case dcp::VerificationNote::Code::VALID_PICTURE_FRAME_SIZES_IN_BYTES: |
