summaryrefslogtreecommitdiff
path: root/src/lib/dcp_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-06 01:17:05 +0100
committerCarl Hetherington <cth@carlh.net>2024-03-11 09:25:26 +0100
commit4d2418d26ea16946931dc2024cc7afd4519fc9b9 (patch)
tree5f1b21e5b88a75318ff440f7bb93381504fd226c /src/lib/dcp_examiner.h
parentfcb8747232c817be9a45f007df8571fb2e9bcb89 (diff)
Offer has_non_zero_entry_point() from DCPExaminer.
Diffstat (limited to 'src/lib/dcp_examiner.h')
-rw-r--r--src/lib/dcp_examiner.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h
index 04fa31ea4..425552632 100644
--- a/src/lib/dcp_examiner.h
+++ b/src/lib/dcp_examiner.h
@@ -171,6 +171,10 @@ public:
return _atmos_edit_rate;
}
+ EnumIndexedVector<bool, TextType> has_non_zero_entry_point() const {
+ return _has_non_zero_entry_point;
+ }
+
void add_fonts(std::shared_ptr<TextContent> content);
private:
@@ -206,6 +210,7 @@ private:
bool _has_atmos = false;
Frame _atmos_length = 0;
dcp::Fraction _atmos_edit_rate;
+ EnumIndexedVector<bool, TextType> _has_non_zero_entry_point;
struct Font
{