diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-15 00:17:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-17 20:13:23 +0100 |
| commit | 1dc40e9c0e2758619ce5bda802cd32371aee5829 (patch) | |
| tree | a90beb190cd7097d9465d5bd4d82d5874d8095cd /src/verify.h | |
| parent | ecb9344aedd1beac90668cba46e0f22bd7c7bd9f (diff) | |
Bv2.1 8.3.1: MainSubtitles must be in all reels (if they are there at
all) and ClosedCaptions must have the same count on all reels.
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 3b2629f9..64232a43 100644 --- a/src/verify.h +++ b/src/verify.h @@ -139,6 +139,10 @@ public: CPL_ANNOTATION_TEXT_DIFFERS_FROM_CONTENT_TITLE_TEXT, /** At least one asset in a reel does not have the same duration as the others */ MISMATCHED_ASSET_DURATION, + /** If one reel has a MainSubtitle, all must have them */ + 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, }; VerificationNote (Type type, Code code) |
