diff transform/PluginTransform.cpp @ 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 21a76c9ed5c3
children
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;
             }
         }