summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-12-13 22:23:07 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-17 20:13:22 +0100
commit9a5db0824d48bac475abbb9ff4dc1c7b5f28edab (patch)
treee00a3fa53ca24532ecd28b04b3bc965da3370505 /src/verify.h
parent588463ca317c588f0dfca046cc52dfe026654527 (diff)
Bv2.1 7.2.1: Check size of closed caption XML is not larger than 256KB.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h
index 500918de..24c19b2b 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -102,6 +102,8 @@ public:
PICTURE_ASSET_INVALID_FRAME_RATE_FOR_4K,
/** A picture asset is 4K but is 3D which is not allowed by Bv2.1 [Bv2.1_7.1] */
PICTURE_ASSET_4K_3D,
+ /** A closed caption's XML file is larger than 256KB [Bv2.1_7.2.1] */
+ CLOSED_CAPTION_XML_TOO_LARGE_IN_BYTES,
};
VerificationNote (Type type, Code code)