Ignore HMAC discrepencies when reading DCPs.
[dcpomatic.git] / src / lib / atmos_mxf_decoder.cc
index 9fcd9d2a6db6f06a4f6b50f1f13e6e7890e89b9e..19a19a8c4b5186189327981a8c400e6677a401ab 100644 (file)
@@ -40,6 +40,7 @@ AtmosMXFDecoder::AtmosMXFDecoder (std::shared_ptr<const Film> film, std::shared_
 
        auto asset = make_shared<dcp::AtmosAsset>(_content->path(0));
        _reader = asset->start_read ();
+       _reader->set_check_hmac (false);
        _metadata = AtmosMetadata (asset);
 }