From 5ae8e7eba8196847d897d5a714cc03ad6b232d81 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 20 Apr 2023 12:14:12 +0200 Subject: [PATCH] Bump libdcp to 1.8.67. --- cscript | 2 +- src/wx/verify_dcp_dialog.cc | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/cscript b/cscript index c0c686be2..61c1e03b2 100644 --- a/cscript +++ b/cscript @@ -477,7 +477,7 @@ def dependencies(target, options): # Use distro-provided FFmpeg on Arch deps = [] - deps.append(('libdcp', 'v1.8.66')) + deps.append(('libdcp', 'v1.8.67')) deps.append(('libsub', 'v1.6.44')) deps.append(('leqm-nrt', '4560105773c66ac9216b62313a24093bb0a027ae')) deps.append(('rtaudio', 'f619b76')) diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index d88a030bb..de8982c8d 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -401,6 +401,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr job case dcp::VerificationNote::Code::INVALID_MAIN_SOUND_CONFIGURATION: add(i, _(" describes incorrect number of channels (%n)")); break; + case dcp::VerificationNote::Code::MISSING_FONT: + add(i, _("The font file for font ID \"%n\" was not found, or was not referred to in the ASSETMAP.")); + break; + case dcp::VerificationNote::Code::INVALID_JPEG2000_TILE_PART_SIZE: + add(i, _("Frame %frame has an image component that is too large (component %component is %size bytes in size).")); + break; + case dcp::VerificationNote::Code::INCORRECT_SUBTITLE_NAMESPACE_COUNT: + add(i, _("The XML in the subtitle asset %n has more than one namespace declaration.")); + break; } } -- 2.30.2