diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-04-11 00:29:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-04-11 00:31:17 +0100 |
| commit | 3db036afaaab4e51bc41224784bf79036a4ff037 (patch) | |
| tree | d9743eef3e8e44bb97aa043a8689c95401bec607 /src/lib | |
| parent | d7880690e9e6dba3c82cd0e78e32862a1ec43666 (diff) | |
Fix 3D DCP handling in the player.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/dcp_content.h | 5 |
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; |
