summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/verify_dcp_result_panel.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_result_panel.cc b/src/wx/verify_dcp_result_panel.cc
index 6f8b1f53a..13ea02091 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -543,6 +543,20 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
_("More JPEG2000 frames (not listed) contain the wrong number of tile parts.")
);
break;
+ case dcp::VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_2K:
+ add(
+ i.second,
+ _("A 2K JPEG2000 frame contains an invalid Rsiz (capabilities) value of %n"),
+ _("More JPEG2000 frames (not listed) contain invalid Rsiz values.")
+ );
+ break;
+ case dcp::VerificationNote::Code::INVALID_JPEG2000_RSIZ_FOR_4K:
+ add(
+ i.second,
+ _("A 4K JPEG2000 frame contains an invalid Rsiz (capabilities) value of %n"),
+ _("More JPEG2000 frames (not listed) contain invalid Rsiz values.")
+ );
+ break;
case dcp::VerificationNote::Code::MISSING_JPEG200_TLM_MARKER:
add(
i.second,