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:29:58 +0100 |
| commit | b6d292349cbe43a97db7d7314a4fe3c0c5cb8566 (patch) | |
| tree | 0b37ea741a6c948015c3a225be053240e8deb4d7 /src/lib/dcp_content.h | |
| parent | 31f9d8691ec467c7b7d977f1950dfbfa98ba73ac (diff) | |
Fix 3D DCP handling in the player.
Diffstat (limited to 'src/lib/dcp_content.h')
| -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 371ec7fff..64642623f 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; |
