diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-03 00:31:40 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:22 +0100 |
| commit | f11ff8d4d961d92e994ef0f9beb456aa8ec7c4cb (patch) | |
| tree | fa69fd7a044bbf02a7971da6434373eb18c83edb /src/verify.h | |
| parent | e182156f75a74457c4452cc3bfe91d778d0d7148 (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.h | 4 |
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) |
