summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/verify.h1
-rw-r--r--tools/dcpverify.cc3
2 files changed, 4 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h
index 87d52d44..4b4442e4 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -51,6 +51,7 @@ public:
*/
enum Type {
VERIFY_ERROR,
+ VERIFY_BV21_ERROR, ///< may not always be considered an error, but violates a "shall" requirement of Bv2.1
VERIFY_WARNING
};
diff --git a/tools/dcpverify.cc b/tools/dcpverify.cc
index c484516e..c26fe7c4 100644
--- a/tools/dcpverify.cc
+++ b/tools/dcpverify.cc
@@ -142,6 +142,9 @@ main (int argc, char* argv[])
cout << "Error: " << note_to_string(i) << "\n";
failed = true;
break;
+ case dcp::VerificationNote::VERIFY_BV21_ERROR:
+ cout << "Bv2.1 error: " << note_to_string(i) << "\n";
+ break;
case dcp::VerificationNote::VERIFY_WARNING:
cout << "Warning: " << note_to_string(i) << "\n";
break;