summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-05-07 01:08:51 +0200
committerCarl Hetherington <cth@carlh.net>2020-05-07 21:29:27 +0200
commitbe71939e858b00d42239a608d9f97918d4d014f6 (patch)
treefb9cf892deb8f10cc5068777788fda8a72838f69 /src/verify.h
parent7c2dccaa6cfbda041fd1a10a391aab5b184b6267 (diff)
Check that JPEG2000 frames aren't too big (i.e. too
many bytes).
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h
index 8d29df6b..4bd91f55 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -82,7 +82,11 @@ public:
/** An asset's IntrinsicDuration is less than 1 second */
INTRINSIC_DURATION_TOO_SMALL,
/** An asset's Duration is less than 1 second */
- DURATION_TOO_SMALL
+ DURATION_TOO_SMALL,
+ /** The JPEG2000 data in at least one picture frame is larger than the equivalent of 250Mbit/s */
+ PICTURE_FRAME_TOO_LARGE,
+ /** The JPEG2000 data in at least one picture frame is larger than the equivalent of 230Mbit/s */
+ PICTURE_FRAME_NEARLY_TOO_LARGE,
};
VerificationNote (Type type, Code code)