diff options
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | src/wx/verify_dcp_result_panel.cc | 14 |
2 files changed, 15 insertions, 1 deletions
@@ -436,7 +436,7 @@ def build_with_cpp17(target): def dependencies(target, options): - deps = [('libdcp', 'v1.10.16', {'c++17': build_with_cpp17(target)})] + deps = [('libdcp', 'v1.10.17', {'c++17': build_with_cpp17(target)})] deps.append(('libsub', 'v1.6.53')) deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23')) deps.append(('rtaudio', 'f619b76')) 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, |
