summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-11 00:29:58 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-11 00:31:17 +0100
commit3db036afaaab4e51bc41224784bf79036a4ff037 (patch)
treed9743eef3e8e44bb97aa043a8689c95401bec607 /src/lib
parentd7880690e9e6dba3c82cd0e78e32862a1ec43666 (diff)
Fix 3D DCP handling in the player.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_content.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h
index 892b6aa73..6a408299b 100644
--- a/src/lib/dcp_content.h
+++ b/src/lib/dcp_content.h
@@ -129,6 +129,11 @@ public:
return _name;
}
+ bool three_d () const {
+ boost::mutex::scoped_lock lm (_mutex);
+ return _three_d;
+ }
+
private:
friend class reels_test5;