summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-05-24 23:49:32 +0200
committerCarl Hetherington <cth@carlh.net>2024-05-24 23:49:32 +0200
commit3ff837180e0905653cefce0030c94d987f91a9e4 (patch)
treee42806254c3f2269e26fae05d0f0348b1cac3dfb /src
parentd2cdc85490d54db2579fced8ac3a751c08402113 (diff)
Verify that DCPs have 24-bit audio.
Diffstat (limited to 'src')
-rw-r--r--src/wx/verify_dcp_result_panel.cc3
1 files changed, 3 insertions, 0 deletions
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;