X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_content.cc;h=fd092593514f76401699efcbbfe62b5f55c7817d;hb=e3bb6707618b6a313a490f387bffbf0b6a064643;hp=18f88b3d3dba31344ed91c6d01d537939caf2124;hpb=35e9a698ba3ca35fd488b3622e441956632261cf;p=dcpomatic.git diff --git a/src/lib/dcp_content.cc b/src/lib/dcp_content.cc index 18f88b3d3..fd0925935 100644 --- a/src/lib/dcp_content.cc +++ b/src/lib/dcp_content.cc @@ -493,7 +493,7 @@ DCPContent::can_reference_audio (list& why_not) const { shared_ptr decoder; try { - decoder.reset (new DCPDecoder (shared_from_this(), film()->log())); + decoder.reset (new DCPDecoder (shared_from_this(), film()->log(), false)); } catch (dcp::DCPReadError) { /* We couldn't read the DCP, so it's probably missing */ return false; @@ -514,7 +514,7 @@ DCPContent::can_reference_subtitle (list& why_not) const { shared_ptr decoder; try { - decoder.reset (new DCPDecoder (shared_from_this(), film()->log())); + decoder.reset (new DCPDecoder (shared_from_this(), film()->log(), false)); } catch (dcp::DCPReadError) { /* We couldn't read the DCP, so it's probably missing */ return false;