diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-26 00:00:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-26 00:03:39 +0100 |
| commit | 93d5ea42dfc864fae94d1fb1d2b3176e3d2bf37a (patch) | |
| tree | f347c8e1be7a7e6325c937995a2361f4a438cbcc /src | |
| parent | 920668c0e09b373a6c52dde30e8133cf894c1d2a (diff) | |
Bump libdcp for some MPEG2 fixes, verify bits, Fedora 42 build fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/verify_dcp_result_panel.cc | 14 |
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, |
