Add workaround for 3D DCPs whose picture MXFs are labelled (within the MXF) as mono.
[dcpomatic.git] / src / lib / dcp_decoder.cc
index ae2f8ef9fe19c2d7d0d5e2509de0240295bdff43..f58577c8c1388d9148e67b54a27e6dd2fbb1d4d9 100644 (file)
@@ -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 ()));
        }