summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h
index 4b967d1d..e219c6ec 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -69,6 +69,12 @@ public:
SOUND_HASH_INCORRECT,
/** The hash of a main sound is different in the CPL and PKL */
PKL_CPL_SOUND_HASHES_DISAGREE,
+ /** An assetmap's <Path> entry is empty */
+ EMPTY_ASSET_PATH,
+ /** An file mentioned in an assetmap cannot be found */
+ MISSING_ASSET,
+ /** The DCP contains both SMPTE and Interop-standard components */
+ MISMATCHED_STANDARD,
};
VerificationNote (Type type, Code code)
@@ -117,6 +123,8 @@ std::list<VerificationNote> verify (
boost::function<void (float)> progress
);
+std::string note_to_string (dcp::VerificationNote note);
+
}
#endif