summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-13 00:53:38 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:23 +0100
commit5c57052dfeda55dc218001b089ebcdaaf6bedc3b (patch)
treedf73c99b6b3b970939ae433e169ca51bc911d64e /src/verify.h
parent845a6f2855541112e33ba6b07ea8e7e641c1b0d0 (diff)
Bv2.1 7.2.{6,7}: various limits on subtitle line and character counts.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h
index 526b767a..0398c909 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -121,6 +121,16 @@ public:
SUBTITLE_TOO_SHORT,
/** At least one pair of subtitles are separated by less than the the minimum of 2 frames suggested by [Bv2.1_7.2.5] */
SUBTITLE_TOO_CLOSE,
+ /** There are more than 3 subtitle lines in at least one place [Bv2.1_7.2.7] */
+ TOO_MANY_SUBTITLE_LINES,
+ /** There are more than 52 characters in at least one subtitle line [Bv2.1_7.2.7] */
+ SUBTITLE_LINE_LONGER_THAN_RECOMMENDED,
+ /** There are more than 79 characters in at least one subtitle line [Bv2.1_7.2.7] */
+ SUBTITLE_LINE_TOO_LONG,
+ /** There are more than 3 closed caption lines in at least one place [Bv2.1_7.2.6] */
+ TOO_MANY_CLOSED_CAPTION_LINES,
+ /** There are more than 32 characters in at least one closed caption line [Bv2.1_7.2.6] */
+ CLOSED_CAPTION_LINE_TOO_LONG,
};
VerificationNote (Type type, Code code)