Mercurial > hg > qm-vamp-plugins
diff plugins/ConstantQSpectrogram.cpp @ 118:4a354c18e688
* Make chromagram and constant-Q plugins start at a somewhat higher
low frequency, by default, for speed
* Add adaptive spectrogram and DWT to the RDF descriptions, and update
version numbers, copyrights etc
(Version numbers should now all be correct for the next, 1.6 release)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 05 Jun 2009 15:22:04 +0000 |
parents | b3a809bb964e |
children | c655fa61884f |
line wrap: on
line diff
--- a/plugins/ConstantQSpectrogram.cpp Tue Jun 02 11:26:31 2009 +0000 +++ b/plugins/ConstantQSpectrogram.cpp Fri Jun 05 15:22:04 2009 +0000 @@ -80,13 +80,13 @@ int ConstantQSpectrogram::getPluginVersion() const { - return 2; + return 3; } string ConstantQSpectrogram::getCopyright() const { - return "Plugin by Chris Cannam and Christian Landone. Copyright (c) 2006-2008 QMUL - All Rights Reserved"; + return "Plugin by Chris Cannam and Christian Landone. Copyright (c) 2006-2009 QMUL - All Rights Reserved"; } ConstantQSpectrogram::ParameterList @@ -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"; desc.minValue = 2; - desc.maxValue = 48; + desc.maxValue = 480; desc.defaultValue = 12; desc.isQuantized = true; desc.quantizeStep = 1;