summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-04-08 20:43:17 +0200
committerCarl Hetherington <cth@carlh.net>2021-04-08 20:43:17 +0200
commit00762c2d9a4240d016150cd7555aee3dad8542ae (patch)
treeecbcd94fe724583d8dbfca62c23281fa1e213d72 /src
parent03bfec20fceaf1766f1edfb087e7e2f5a3ab6565 (diff)
Bump libdcp and add some new verification notes.
Diffstat (limited to 'src')
-rw-r--r--src/wx/verify_dcp_dialog.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/verify_dcp_dialog.cc b/src/wx/verify_dcp_dialog.cc
index c8a3ad321..f39f6fa3b 100644
--- a/src/wx/verify_dcp_dialog.cc
+++ b/src/wx/verify_dcp_dialog.cc
@@ -338,6 +338,12 @@ VerifyDCPDialog::VerifyDCPDialog (wxWindow* parent, shared_ptr<VerifyDCPJob> job
case dcp::VerificationNote::Code::SUBTITLE_OVERLAPS_REEL_BOUNDARY:
add(i, _("A subtitle lasts longer than the reel it is in."));
break;
+ case dcp::VerificationNote::Code::MISMATCHED_TIMED_TEXT_RESOURCE_ID:
+ add(i, _("The Resource ID in a timed text MXF did not match the ID of the contained XML."));
+ break;
+ case dcp::VerificationNote::Code::INCORRECT_TIMED_TEXT_ASSET_ID:
+ add(i, _("The Asset ID in a timed text MXF is the same as the Resource ID or that of the contained XML."));
+ break;
}
}