diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-04-17 22:19:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-04-17 22:19:02 +0200 |
| commit | 869462070671b273ac528e075ac1c00a417cc8a0 (patch) | |
| tree | c6a98899ff9a7f86ab061730a5fdc9b52d787a2c /src/verify.h | |
| parent | 0a8f2a1a2058f0461a7f978295e31af34a03bb40 (diff) | |
Make some not-so-important CPL read errors non-fatal (DoM #2797).v1.8.99
Diffstat (limited to 'src/verify.h')
| -rw-r--r-- | src/verify.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/verify.h b/src/verify.h index 4ca3297a..b5d913bd 100644 --- a/src/verify.h +++ b/src/verify.h @@ -475,6 +475,16 @@ public: * file contains the CPL filename */ EMPTY_CONTENT_VERSION_LABEL_TEXT, + /** The CPL namespace is not valid. + * note contains the invalid namespace + * file contains the CPL filename + */ + INVALID_CPL_NAMESPACE, + /** A SMPTE CPL does not contain a _<ContentVersion>_ tag + * note contains the CPL ID + * file contains the CPL filename + */ + MISSING_CPL_CONTENT_VERSION }; VerificationNote (Type type, Code code) |
