changeset 11:ccb271dd0b84 tip

More sensible defaults
author Chris Cannam
date Wed, 12 Mar 2014 13:23:29 +0000
parents 0a56b08b373f
children
files LowFreq.cpp
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/LowFreq.cpp	Wed Mar 12 13:06:14 2014 +0000
+++ b/LowFreq.cpp	Wed Mar 12 13:23:29 2014 +0000
@@ -44,15 +44,15 @@
 
 static float minFmin = 0;
 static float maxFmin = 500;
-static float defaultFmin = 0.1;
+static float defaultFmin = 0.5;
 
 static float minFmax = 0.1;
 static float maxFmax = 500;
-static float defaultFmax = 10;
+static float defaultFmax = 40;
 
 static int minN = 1;
 static int maxN = 2048;
-static int defaultN = 64;
+static int defaultN = 79;
 
 LowFreq::LowFreq(float inputSampleRate) :
     Plugin(inputSampleRate),