# HG changeset patch # User Chris Cannam # Date 1159964415 0 # Node ID 0739be12330413b915d3f3b2dae82bddddde0097 # Parent c0ae41c724211c0b53154ad13dbb092ee3db308a ... diff -r c0ae41c72421 -r 0739be123304 audioio/AudioCallbackPlaySource.cpp --- 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; }