summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-03 00:31:40 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:22 +0100
commitf11ff8d4d961d92e994ef0f9beb456aa8ec7c4cb (patch)
treefa69fd7a044bbf02a7971da6434373eb18c83edb /src/verify.h
parente182156f75a74457c4452cc3bfe91d778d0d7148 (diff)
Bv2.1 7.2.3: Check that subtitle <StartTime> exists and is 0.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h
index 170aeb8b..2957654f 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -112,6 +112,10 @@ public:
MISSING_SUBTITLE_LANGUAGE,
/** Not all subtitle assets specify the same <Language> tag [Bv2.1_7.2.2] */
SUBTITLE_LANGUAGES_DIFFER,
+ /** Some SMPTE subtitle XML has no <StartTime> tag [Bv2.1_7.2.3] */
+ MISSING_SUBTITLE_START_TIME,
+ /** Some SMPTE subtitle XML has a non-zero <StartTime> tag [Bv2.1_7.2.3] */
+ SUBTITLE_START_TIME_NON_ZERO,
};
VerificationNote (Type type, Code code)