summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-04-12 22:42:32 +0200
committerCarl Hetherington <cth@carlh.net>2025-04-14 18:42:09 +0200
commitec02427b46e95fa2a63ad680e0a9787f2d306305 (patch)
treea68ea22ad9cdc31a4141be2122d017bff80497b5 /src
parentc6c81128909add9908c5a13e156cd91dde001eec (diff)
Bump libdcp for very invalid subtitle duration checks.
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 13ea02091..07ae65e84 100644
--- a/src/wx/verify_dcp_result_panel.cc
+++ b/src/wx/verify_dcp_result_panel.cc
@@ -361,6 +361,9 @@ VerifyDCPResultPanel::add(shared_ptr<const VerifyDCPJob> job, bool many)
add(i.second, _("The first subtitle or closed caption happens before 4s into the first reel."));
break;
case dcp::VerificationNote::Code::INVALID_SUBTITLE_DURATION:
+ add(i.second, _("At least one subtitle has zero or negative duration."));
+ break;
+ case dcp::VerificationNote::Code::INVALID_SUBTITLE_DURATION_BV21:
add(i.second, _("At least one subtitle lasts less than 15 frames."));
break;
case dcp::VerificationNote::Code::INVALID_SUBTITLE_SPACING: