Mercurial > hg > vamp-plugin-sdk
changeset 65:a712ed15d158
* Remove some (but not all) debug output
author | cannam |
---|---|
date | Fri, 01 Jun 2007 15:11:37 +0000 |
parents | 9d3272c7db60 |
children | 80803674a695 |
files | vamp-sdk/hostext/PluginChannelAdapter.cpp vamp-sdk/hostext/PluginInputDomainAdapter.cpp |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/vamp-sdk/hostext/PluginChannelAdapter.cpp Fri Jun 01 15:10:17 2007 +0000 +++ b/vamp-sdk/hostext/PluginChannelAdapter.cpp Fri Jun 01 15:11:37 2007 +0000 @@ -132,7 +132,7 @@ PluginChannelAdapter::process(const float *const *inputBuffers, RealTime timestamp) { - std::cerr << "PluginChannelAdapter::process: " << m_inputChannels << " -> " << m_pluginChannels << " channels" << std::endl; +// std::cerr << "PluginChannelAdapter::process: " << m_inputChannels << " -> " << m_pluginChannels << " channels" << std::endl; if (m_inputChannels < m_pluginChannels) {
--- a/vamp-sdk/hostext/PluginInputDomainAdapter.cpp Fri Jun 01 15:10:17 2007 +0000 +++ b/vamp-sdk/hostext/PluginInputDomainAdapter.cpp Fri Jun 01 15:11:37 2007 +0000 @@ -219,12 +219,12 @@ // particular that this means some results can differ from those // produced by SV. - std::cerr << "PluginInputDomainAdapter: sampleRate " << m_inputSampleRate << ", blocksize " << m_blockSize << ", adjusting time from " << timestamp; +// std::cerr << "PluginInputDomainAdapter: sampleRate " << m_inputSampleRate << ", blocksize " << m_blockSize << ", adjusting time from " << timestamp; timestamp = timestamp + RealTime::frame2RealTime(m_blockSize/2, m_inputSampleRate); - std::cerr << " to " << timestamp << std::endl; +// std::cerr << " to " << timestamp << std::endl; for (size_t c = 0; c < m_channels; ++c) {