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 01:08:51 +0200
commit8eef103a2afd8d00aad08f813c57ac0849ff954e (patch)
treea635673419263bd132de487baa054316f05e4530 /src/verify.h
parent7c2dccaa6cfbda041fd1a10a391aab5b184b6267 (diff)
Untested verification of JPEG2000 frame data sizes.verify-j2k-sizes
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..ba32e999 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_SIZE_TOO_LARGE,
+ /** The JPEG2000 data in at least one picture frame is larger than the equivalent of 230Mbit/s */
+ PICTURE_FRAME_SIZE_NEARLY_TOO_LARGE,
};
VerificationNote (Type type, Code code)