changeset 94:f46864eba7fd

* mess about with chromagram extents
author Chris Cannam <c.cannam@qmul.ac.uk>
date Tue, 17 Mar 2009 15:20:40 +0000
parents 385bec9df059
children e51152b7ee06
files plugins/ChromagramPlugin.cpp
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/ChromagramPlugin.cpp	Fri Feb 27 13:07:07 2009 +0000
+++ b/plugins/ChromagramPlugin.cpp	Tue Mar 17 15:20:40 2009 +0000
@@ -80,7 +80,7 @@
 int
 ChromagramPlugin::getPluginVersion() const
 {
-    return 3;
+    return 4;
 }
 
 string
@@ -121,8 +121,8 @@
     desc.name = "Tuning Frequency";
     desc.unit = "Hz";
     desc.description = "Frequency of concert A";
-    desc.minValue = 420;
-    desc.maxValue = 460;
+    desc.minValue = 360;
+    desc.maxValue = 500;
     desc.defaultValue = 440;
     desc.isQuantized = false;
     list.push_back(desc);
@@ -132,7 +132,7 @@
     desc.unit = "bins";
     desc.description = "Number of constant-Q transform bins per octave, and the number of bins for the chromagram outputs";
     desc.minValue = 2;
-    desc.maxValue = 48;
+    desc.maxValue = 960;
     desc.defaultValue = 12;
     desc.isQuantized = true;
     desc.quantizeStep = 1;