diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-08-02 00:59:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-08-02 00:59:36 +0100 |
| commit | 4f6b9809ed4c9291e2577ee8e0f3bebf15ca2629 (patch) | |
| tree | afd8890b4b0a0c850ed8dad19e5815a90be83ac8 /src/sound_asset.cc | |
| parent | 12fe692248cfd7f604b8ac7d596bf796c0bf420a (diff) | |
Compare using maximum mean absolute difference and standard deviation.
Diffstat (limited to 'src/sound_asset.cc')
| -rw-r--r-- | src/sound_asset.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sound_asset.cc b/src/sound_asset.cc index ed815eda..2d834957 100644 --- a/src/sound_asset.cc +++ b/src/sound_asset.cc @@ -177,9 +177,9 @@ SoundAsset::write_to_cpl (ostream& s) const } list<string> -SoundAsset::equals (shared_ptr<const Asset> other, EqualityFlags flags) const +SoundAsset::equals (shared_ptr<const Asset> other, EqualityFlags flags, double max_mean, double max_std_dev) const { - list<string> notes = Asset::equals (other, flags); + list<string> notes = Asset::equals (other, flags, max_mean, max_std_dev); if (flags & MXF_INSPECT) { ASDCP::PCM::MXFReader reader_A; |
