diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-15 23:35:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-16 09:11:16 +0100 |
| commit | 81636ae2043240ff44199ac0c5df61dac31bf5ac (patch) | |
| tree | 5caf4aab3e9b1a4a7e097178fd180e4d5ce09bf4 | |
| parent | 12728573fcc511dc0a1824e74e8ab4fcba69067a (diff) | |
Bump libdcp to version which checks for empty interop subtitle assets.
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | src/wx/verify_dcp_dialog.cc | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -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<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; } } |
