Bump libdcp to 1.8.67.
authorCarl Hetherington <cth@carlh.net>
Thu, 20 Apr 2023 10:14:12 +0000 (12:14 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 20 Apr 2023 23:11:31 +0000 (01:11 +0200)
cscript
src/wx/verify_dcp_dialog.cc

diff --git a/cscript b/cscript
index c0c686be27dbc313f60ac2fdd71d63e0dbaeb5ea..61c1e03b2aa53110bc76f5b4e49a419b169a6eb1 100644 (file)
--- a/cscript
+++ b/cscript
@@ -477,7 +477,7 @@ def dependencies(target, options):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
         # 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'))
     deps.append(('libsub', 'v1.6.44'))
     deps.append(('leqm-nrt', '4560105773c66ac9216b62313a24093bb0a027ae'))
     deps.append(('rtaudio', 'f619b76'))
index d88a030bb40b817eb4767a8d054ca0abcb95ac23..de8982c8dbec4d07e56576ae91a7a50d3f481faa 100644 (file)
@@ -401,6 +401,15 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                case dcp::VerificationNote::Code::INVALID_MAIN_SOUND_CONFIGURATION:
                        add(i, _("<MainSoundConfiguration> describes incorrect number of channels (%n)"));
                        break;
                case dcp::VerificationNote::Code::INVALID_MAIN_SOUND_CONFIGURATION:
                        add(i, _("<MainSoundConfiguration> 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;
                }
        }
 
                }
        }