From 56a6b3277b7acb7fcfac97ef9667467d764ea490 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 17 Aug 2020 20:28:24 +0200 Subject: Make use of HMAC optional. --- src/sound_asset.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sound_asset.cc') diff --git a/src/sound_asset.cc b/src/sound_asset.cc index 7f2bf5e3..2295d138 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2016 Carl Hetherington + Copyright (C) 2012-2020 Carl Hetherington This file is part of libdcp. @@ -203,9 +203,9 @@ SoundAsset::start_write (boost::filesystem::path file, bool atmos_sync) } shared_ptr -SoundAsset::start_read () const +SoundAsset::start_read (bool check_hmac) const { - return shared_ptr (new SoundAssetReader (this, key(), standard())); + return shared_ptr (new SoundAssetReader (this, key(), standard(), check_hmac)); } string -- cgit v1.2.3