summaryrefslogtreecommitdiff
path: root/src/lib/dcp_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-29 00:13:49 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-29 00:13:49 +0100
commit92f024ea58c7279b8096e5e9f60f9cb2613e8a91 (patch)
tree02c3b4a91effa6ca53ba511b60d6451c1b1f2009 /src/lib/dcp_examiner.h
parentd6825b500b89430cb018d311c090d794ec18faf3 (diff)
swaroop: Disable play/stop/pause and slider during ad content.
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 4b93bfa42..f54f02c36 100644
--- a/src/lib/dcp_examiner.h
+++ b/src/lib/dcp_examiner.h
@@ -99,6 +99,10 @@ public:
return _three_d;
}
+ dcp::ContentKind content_kind () const {
+ return _content_kind;
+ }
+
std::string cpl () const {
return _cpl;
}
@@ -125,6 +129,7 @@ private:
bool _kdm_valid;
boost::optional<dcp::Standard> _standard;
bool _three_d;
+ dcp::ContentKind _content_kind;
std::string _cpl;
std::list<int64_t> _reel_lengths;
};