From 725c00236c074739145a0034261dbc94d2ab85ed Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 16 Apr 2021 04:26:47 +0200 Subject: [PATCH] Disambiguate export formats with same loudness but different true-peal Amend 75829d20f238c528941b91c9a64fa2ee11f5a3bd --- libs/ardour/export_graph_builder.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc index 4b8d5d7cfa..63f5dd028e 100644 --- a/libs/ardour/export_graph_builder.cc +++ b/libs/ardour/export_graph_builder.cc @@ -598,6 +598,7 @@ ExportGraphBuilder::SFC::operator== (FileSpec const& other_config) const if (a.normalize_loudness () == b.normalize_loudness ()) { id &= a.normalize_lufs () == b.normalize_lufs (); + id &= a.normalize_dbtp () == b.normalize_dbtp (); } else { return false; }