diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-13 17:31:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-13 17:31:16 +0100 |
| commit | 92d48b9531fd2f43d92351fddf5147e31b6d61b2 (patch) | |
| tree | 905869817f618574f4a964d81919a7d806251213 /src | |
| parent | 46d4173180f54450e819a0edcdac0ea76b219fde (diff) | |
More leniancy in comparions.
Diffstat (limited to 'src')
| -rw-r--r-- | src/asset.cc | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/asset.cc b/src/asset.cc index c566a1e5..fb21580e 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -98,18 +98,16 @@ bool Asset::equals (shared_ptr<const Asset> other, EqualityOptions, boost::function<void (NoteType, string)> note) const { if (_edit_rate != other->_edit_rate) { - note (ERROR, "MXF edit rates differ"); + note (ERROR, "asset edit rates differ"); return false; } if (_intrinsic_duration != other->_intrinsic_duration) { - note (ERROR, "MXF intrinsic durations differ"); - return false; + note (ERROR, "asset intrinsic durations differ"); } if (_duration != other->_duration) { - note (ERROR, "MXF durations differ"); - return false; + note (ERROR, "asset durations differ"); } return true; |
