summaryrefslogtreecommitdiff
path: root/src/verify.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-18 00:27:34 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-18 00:27:34 +0100
commit2915c4f48129a4cac2c8ca364b09dd8047364aad (patch)
tree119434688e7d055c89cd9d54d15c6b068755f670 /src/verify.h
parent6af628a0404e7135cb77cfa6d49a8419c883f2bf (diff)
Bv2.1 8.5: FFOC and LFOC should be present and have particular values.
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 5fb46a1b..05a49417 100644
--- a/src/verify.h
+++ b/src/verify.h
@@ -157,6 +157,14 @@ public:
MISSING_FFEC_IN_FEATURE,
/** If ContentKind is Feature there must be a FFMC marker */
MISSING_FFMC_IN_FEATURE,
+ /** There should be a FFOC */
+ MISSING_FFOC,
+ /** There should be a LFOC */
+ MISSING_LFOC,
+ /** The FFOC should be 1 */
+ INCORRECT_FFOC,
+ /** The LFOC should be the last frame in the reel */
+ INCORRECT_LFOC,
};
VerificationNote (Type type, Code code)