summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-08 22:47:33 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-08 22:47:33 +0100
commit82d3db851257dbd460cff1c7eed2640a39b8ebfe (patch)
tree3dc74f799bb3d56027ae569a73c5be90bb4349b8 /src/verify.h
parent900ad47ca6e2addab8ac376daed834dd7b28c01d (diff)
Add verification checks too see if reel assets' Duration or IntrinsicDuration are too small.
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 ab9e9aac..c56cfb9d 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+ Copyright (C) 2018-2020 Carl Hetherington <cth@carlh.net>
This file is part of libdcp.
@@ -77,6 +77,10 @@ public:
MISMATCHED_STANDARD,
/** Some XML fails to validate against the XSD/DTD */
XML_VALIDATION_ERROR,
+ /** 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
};
VerificationNote (Type type, Code code)