changeset 335:d861f86f2b17 livemode

Back out this reduction of duration threshold, I think it makes things too noisy
author Chris Cannam
date Thu, 25 Jun 2015 17:23:31 +0100
parents 806b2ea65416
children d25e4aee73d7
files src/Silvet.cpp
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;