summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-02-02 01:03:27 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-02 01:03:27 +0100
commitb424b9d40a472c00d2ddbe2218375dcbd3d947fc (patch)
tree21e5f3858868b18d6008a3ba5b5169f3218b5381 /src/verify.h
parentb1464249c7b403a66ca63f403c80c39f1af63e65 (diff)
Check IssueDate for Deluxe complaint.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h
index 2e20bc31..1ddb7066 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -415,7 +415,13 @@ public:
* note contains the asset ID
* file contains the asset filename
*/
- MISSING_SUBTITLE
+ MISSING_SUBTITLE,
+ /** A SMPTE subtitle asset as an <IssueDate> which is not of the form yyyy-mm-ddThh:mm:ss
+ * I can find no reference in a standard to this being required, but the Deluxe delivery
+ * specifications require it and their QC will fail DCPs that don't have it.
+ * note contains the incorrect <IssueDate>
+ */
+ INVALID_SUBTITLE_ISSUE_DATE
};
VerificationNote (Type type, Code code)