summaryrefslogtreecommitdiff
path: root/src/lib/dcp_decoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-29 01:01:04 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-29 01:01:04 +0000
commitbd81f33a39c6d20e78fce0d5be3b2d487b6df344 (patch)
tree4aa94856fde5dcc2e9c22cd0f296db42779d5683 /src/lib/dcp_decoder.cc
parentf3b35c291d36d4c74906d2716ac598ab442518ab (diff)
Add workaround for 3D DCPs whose picture MXFs are labelled (within the MXF) as mono.
Diffstat (limited to 'src/lib/dcp_decoder.cc')
-rw-r--r--src/lib/dcp_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_decoder.cc b/src/lib/dcp_decoder.cc
index ae2f8ef9f..f58577c8c 100644
--- a/src/lib/dcp_decoder.cc
+++ b/src/lib/dcp_decoder.cc
@@ -49,7 +49,7 @@ DCPDecoder::DCPDecoder (shared_ptr<const DCPContent> c, bool fast)
, _dcp_content (c)
{
dcp::DCP dcp (c->directory ());
- dcp.read ();
+ dcp.read (false, 0, true);
if (c->kdm ()) {
dcp.add (dcp::DecryptedKDM (c->kdm().get (), Config::instance()->decryption_chain()->key().get ()));
}