Bump libdcp to version which checks for empty interop subtitle assets.
authorCarl Hetherington <cth@carlh.net>
Sun, 15 Jan 2023 22:35:22 +0000 (23:35 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 16 Jan 2023 08:11:16 +0000 (09:11 +0100)
cscript
src/wx/verify_dcp_dialog.cc

diff --git a/cscript b/cscript
index 86c5d434eacb55a56d5c3d884bf3bb42d4264a94..839405e45a45ee12e8c81bbbad2364078accfd71 100644 (file)
--- a/cscript
+++ b/cscript
@@ -457,7 +457,7 @@ def dependencies(target, options):
         # Use distro-provided FFmpeg on Arch
         deps = []
 
-    deps.append(('libdcp', 'v1.8.50'))
+    deps.append(('libdcp', 'v1.8.51'))
     deps.append(('libsub', 'v1.6.42'))
     deps.append(('leqm-nrt', '93ae9e6'))
     deps.append(('rtaudio', 'f619b76'))
index 82d9ca231c7b876e16ab1a916ab14524e7971f3d..b3184e29fc792eb282a1732d698957c51e467b89 100644 (file)
@@ -389,6 +389,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
                case dcp::VerificationNote::Code::DUPLICATE_ASSET_ID_IN_ASSETMAP:
                        add(i, _("The ASSETMAP %n has more than one asset with the same ID."));
                        break;
+               case dcp::VerificationNote::Code::MISSING_SUBTITLE:
+                       add(i, _("The subtitle asset %n contains no subtitles."));
+                       break;
                }
        }