summaryrefslogtreecommitdiff
path: root/rotord/vampHost.cpp
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-06-05 15:18:54 +0100
committerTim Redfern <tim@eclectronics.org>2013-06-05 15:18:54 +0100
commita8c3d2a9432f397f5098594f0572cc6999b63f3a (patch)
tree7709a215dd0e6b7fe488d34fee2cfe1a04084109 /rotord/vampHost.cpp
parent66210c73084c643c9c7169ca6f46d1cf47489248 (diff)
working version
Diffstat (limited to 'rotord/vampHost.cpp')
-rw-r--r--rotord/vampHost.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/rotord/vampHost.cpp b/rotord/vampHost.cpp
index 70a0c63..3d50c7c 100644
--- a/rotord/vampHost.cpp
+++ b/rotord/vampHost.cpp
@@ -615,7 +615,16 @@ bool vampHost::Analyser::init(const string &soname,const string &id,const int &_
return false;
}
- cerr << "Running plugin: \"" << plugin->getIdentifier() << "\"..." << endl;
+ cerr << "Running plugin: \"" << plugin->getIdentifier() << "\"... Domain:";
+
+ if (plugin->getInputDomain() == Plugin::FrequencyDomain) {
+ cerr << "frequency" << endl;
+ }
+ else {
+
+ cerr << "time" << endl;
+
+ }
blockSize = plugin->getPreferredBlockSize();
stepSize = plugin->getPreferredStepSize();
@@ -628,7 +637,7 @@ bool vampHost::Analyser::init(const string &soname,const string &id,const int &_
stepSize = blockSize/2;
} else {
stepSize = blockSize;
- }
+ }
}
else if (stepSize > blockSize) {
cerr << "WARNING: stepSize " << stepSize << " > blockSize " << blockSize << ", resetting blockSize to ";