diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-10-18 08:55:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-10-24 20:52:11 +0200 |
| commit | d5ab7ecf942405bcaa7fd8d367e09f95d6c0c978 (patch) | |
| tree | aa947c1cc41bb4de56b22ba628567f9357a6c72b /src/verify.h | |
| parent | 4d708138f22aa70370494f226497542cad0f0bb4 (diff) | |
Order subtitles in the XML according to their vertical position (DoM bug #2106).v1.8.4
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h index c10a0e7e..424b29e7 100644 --- a/src/verify.h +++ b/src/verify.h @@ -387,7 +387,11 @@ public: /** Something could not be verified because content is encrypted and no key is available */ MISSED_CHECK_OF_ENCRYPTED, /** Some timed-text XML has an empty <_Text_> node */ - EMPTY_TEXT + EMPTY_TEXT, + /** Some closed captions do not have the same vertical alignment within a <_Subtitle_> node */ + MISMATCHED_CLOSED_CAPTION_VALIGN, + /** Some closed captions are not listed in the XML in the order of their vertical position */ + INCORRECT_CLOSED_CAPTION_ORDERING, }; VerificationNote (Type type, Code code) |
