summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-05-25 22:25:05 +0100
committerCarl Hetherington <cth@carlh.net>2015-05-25 22:25:05 +0100
commit484a9009ff684bedca3f2cf4868e7dd03215d8e8 (patch)
tree3c41d4aa1a608ebf147940a9bf892ab75ec566bc /src/types.h
parent6d5c9b454e586ca53c9d59d93fc4b721d6dbf68f (diff)
Add equality option to allow reel annotation texts to differ.
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h
index 133abfd5..3c74c45c 100644
--- a/src/types.h
+++ b/src/types.h
@@ -151,6 +151,7 @@ struct EqualityOptions
, max_audio_sample_error (0)
, cpl_annotation_texts_can_differ (false)
, mxf_filenames_can_differ (false)
+ , reel_annotation_texts_can_differ (false)
, reel_hashes_can_differ (false)
{}
@@ -164,6 +165,8 @@ struct EqualityOptions
bool cpl_annotation_texts_can_differ;
/** true if MXF file leafnames are allowed to differ */
bool mxf_filenames_can_differ;
+ /** true if the <AnnotationText> nodes of Reels are allowed to differ */
+ bool reel_annotation_texts_can_differ;
/** true if <Hash>es in Reels can differ */
bool reel_hashes_can_differ;
};