diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-05-24 23:49:32 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-24 23:49:32 +0200 |
| commit | 3ff837180e0905653cefce0030c94d987f91a9e4 (patch) | |
| tree | e42806254c3f2269e26fae05d0f0348b1cac3dfb | |
| parent | d2cdc85490d54db2579fced8ac3a751c08402113 (diff) | |
Verify that DCPs have 24-bit audio.
| -rw-r--r-- | cscript | 2 | ||||
| -rw-r--r-- | src/wx/verify_dcp_result_panel.cc | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -533,7 +533,7 @@ def make_spec(filename, version, target, options, requires=None): print('/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :', file=f) def dependencies(target, options): - deps = [('libdcp', 'v1.9.7', {'c++17': target.platform == 'osx'})] + deps = [('libdcp', 'cc6a2fe7ee05718d549e72eb740d0eae290f8ecb', {'c++17': target.platform == 'osx'})] deps.append(('libsub', 'v1.6.47')) deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23')) deps.append(('rtaudio', 'f619b76')) diff --git a/src/wx/verify_dcp_result_panel.cc b/src/wx/verify_dcp_result_panel.cc index eb338b0f8..d10c94350 100644 --- a/src/wx/verify_dcp_result_panel.cc +++ b/src/wx/verify_dcp_result_panel.cc @@ -275,6 +275,9 @@ VerifyDCPResultPanel::fill(shared_ptr<VerifyDCPJob> job) case dcp::VerificationNote::Code::INVALID_SOUND_FRAME_RATE: add(i, _("The sound asset %f has an invalid frame rate of %n.")); break; + case dcp::VerificationNote::Code::INVALID_SOUND_BIT_DEPTH: + add(i, _("The sound asset %f has an invalid bit depth of %n.")); + break; case dcp::VerificationNote::Code::MISSING_CPL_ANNOTATION_TEXT: add(i, _("The CPL %cpl has no <AnnotationText> tag.")); break; |
