summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-09-23 23:42:58 +0200
committerCarl Hetherington <cth@carlh.net>2024-09-23 23:42:58 +0200
commit152266f6e65451a03521eb04b6a406b6e309e17a (patch)
tree0ebf358010ba72fdec87e8c64bdceea5a05b2925 /src/verify.h
parentadae04e0984d294aa9a95394bfed584ce7e93469 (diff)
Allow but give an error when seeing a strange PKL namespace.v1.8.110
DoM bug #2868 reports that Resolve made a DCP with the PKL namespace http://www.smpte-ra.org/schemas/2067-2/2016/PKL This seems wrong (google suggests that this is the namespace for IMF PKLs) but let's accept it and log an error instead of throwing an exception.
Diffstat (limited to 'src/verify.h')
-rw-r--r--src/verify.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/verify.h b/src/verify.h
index 204d83b0..218d2ceb 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -487,7 +487,12 @@ public:
* note contains the CPL ID
* file contains the CPL filename
*/
- MISSING_CPL_CONTENT_VERSION
+ MISSING_CPL_CONTENT_VERSION,
+ /** The PKL namespace is not valid.
+ * note contains the invalid namespace
+ * file contains the PKL filename
+ */
+ INVALID_PKL_NAMESPACE
};
VerificationNote (Type type, Code code)