diff options
Diffstat (limited to 'rotord/vampHost.cpp')
| -rw-r--r-- | rotord/vampHost.cpp | 13 |
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 "; |
