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/tools | |
| parent | d7880690e9e6dba3c82cd0e78e32862a1ec43666 (diff) | |
Fix 3D DCP handling in the player.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index d42320bfd..65186d88a 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -189,6 +189,10 @@ public: dcp->subtitle->set_use (true); } + if (dcp->three_d()) { + _film->set_three_d (true); + } + Ratio const * r = Ratio::nearest_from_ratio(dcp->video->size().ratio()); if (r) { _film->set_container(r); |
