summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
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 89069bdd..38c9ee75 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.
@@ -79,6 +79,10 @@ public:
XML_VALIDATION_ERROR,
/** No ASSETMAP{.xml} was found */
MISSING_ASSETMAP
+ /** 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)