Mercurial > hg > sonic-visualiser
changeset 43:0739be123304
...
author | Chris Cannam |
---|---|
date | Wed, 04 Oct 2006 12:20:15 +0000 |
parents | c0ae41c72421 |
children | 5a72bf7490ae |
files | audioio/AudioCallbackPlaySource.cpp |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/audioio/AudioCallbackPlaySource.cpp Wed Oct 04 11:54:32 2006 +0000 +++ b/audioio/AudioCallbackPlaySource.cpp Wed Oct 04 12:20:15 2006 +0000 @@ -887,21 +887,21 @@ if (!plugin) return; if (plugin->getAudioInputCount() != getTargetChannelCount()) { - std::cerr << "plugin input count " << plugin->getAudioInputCount() - << " != our channel count " << getTargetChannelCount() - << std::endl; +// std::cerr << "plugin input count " << plugin->getAudioInputCount() +// << " != our channel count " << getTargetChannelCount() +// << std::endl; return; } if (plugin->getAudioOutputCount() != getTargetChannelCount()) { - std::cerr << "plugin output count " << plugin->getAudioOutputCount() - << " != our channel count " << getTargetChannelCount() - << std::endl; +// std::cerr << "plugin output count " << plugin->getAudioOutputCount() +// << " != our channel count " << getTargetChannelCount() +// << std::endl; return; } if (plugin->getBufferSize() != count) { - std::cerr << "plugin buffer size " << plugin->getBufferSize() - << " != our block size " << count - << std::endl; +// std::cerr << "plugin buffer size " << plugin->getBufferSize() +// << " != our block size " << count +// << std::endl; return; }