From: Carl Hetherington Date: Sun, 15 Jan 2023 22:35:22 +0000 (+0100) Subject: Bump libdcp to version which checks for empty interop subtitle assets. X-Git-Tag: v2.16.41~38 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=81636ae2043240ff44199ac0c5df61dac31bf5ac Bump libdcp to version which checks for empty interop subtitle assets. --- diff --git a/cscript b/cscript index 86c5d434e..839405e45 100644 --- 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')) diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc index 82d9ca231..b3184e29f 100644 --- a/src/wx/verify_dcp_dialog.cc +++ b/src/wx/verify_dcp_dialog.cc @@ -389,6 +389,9 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr 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; } }