Mercurial > hg > sonic-visualiser
changeset 191:1ded52c7f31c
* fix misbehaving apply-to-selection-only checkbox, fix default step size for
frequency domain plugins
author | Chris Cannam |
---|---|
date | Tue, 09 Oct 2007 16:21:59 +0000 |
parents | 89a41f3d24d1 |
children | d3477f673fb4 |
files | transform/PluginTransform.cpp |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/transform/PluginTransform.cpp Tue Oct 09 16:21:10 2007 +0000 +++ b/transform/PluginTransform.cpp Tue Oct 09 16:21:59 2007 +0000 @@ -108,8 +108,10 @@ if (!blockSize) blockSize = 1024; if (!stepSize) { if (domain == Vamp::Plugin::FrequencyDomain) { +// std::cerr << "frequency domain, step = " << blockSize/2 << std::endl; stepSize = blockSize/2; } else { +// std::cerr << "time domain, step = " << blockSize/2 << std::endl; stepSize = blockSize; } }