diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-15 22:04:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:23 +0100 |
| commit | 9a6cf0df676175022f7d0cade7919153207b7910 (patch) | |
| tree | 072586b526913ee73ca2b9515309deb6be5071e9 /src/verify.h | |
| parent | 87a4a9470f0c81f27322f044cf0837fff21ad89e (diff) | |
Bv2.1 8.3.2: text tracks must have <EntryPoint> and it must be zero.
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h index 64232a43..917d5e53 100644 --- a/src/verify.h +++ b/src/verify.h @@ -143,6 +143,14 @@ public: MAIN_SUBTITLE_NOT_IN_ALL_REELS, /** If one reel has at least one ClosedCaption, all reels must have the same number of ClosedCaptions */ CLOSED_CAPTION_ASSET_COUNTS_DIFFER, + /** MainSubtitle in reels must have <EntryPoint> Bv2.1_8.3.2 */ + MISSING_SUBTITLE_ENTRY_POINT, + /** MainSubtitle <EntryPoint> must be zero Bv2.1_8.3.2 */ + SUBTITLE_ENTRY_POINT_NON_ZERO, + /** Closed caption in reels must have <EntryPoint> Bv2.1_8.3.2 */ + MISSING_CLOSED_CAPTION_ENTRY_POINT, + /** Closed caption MainSubtitle <EntryPoint> must be zero Bv2.1_8.3.2 */ + CLOSED_CAPTION_ENTRY_POINT_NON_ZERO, }; VerificationNote (Type type, Code code) |
