# HG changeset patch # User Chris Cannam # Date 1435249411 -3600 # Node ID d861f86f2b1779bea3dde2a3867e4f23047addc1 # Parent 806b2ea65416b320137ce1ab92c4560ce37eb46b Back out this reduction of duration threshold, I think it makes things too noisy diff -r 806b2ea65416 -r d861f86f2b17 src/Silvet.cpp --- a/src/Silvet.cpp Thu Jun 25 14:18:44 2015 +0100 +++ b/src/Silvet.cpp Thu Jun 25 17:23:31 2015 +0100 @@ -1001,7 +1001,6 @@ // only keep notes >= 100ms or thereabouts double durationThrSec = 0.1; - if (m_mode == LiveMode) durationThrSec = 0.07; int durationThreshold = floor(durationThrSec / columnDuration); // in cols if (durationThreshold < 1) durationThreshold = 1;