diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-05-07 01:08:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-05-07 21:29:27 +0200 |
| commit | be71939e858b00d42239a608d9f97918d4d014f6 (patch) | |
| tree | fb9cf892deb8f10cc5068777788fda8a72838f69 /src/verify.h | |
| parent | 7c2dccaa6cfbda041fd1a10a391aab5b184b6267 (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.h | 6 |
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) |
