Remove output buffer starvation log warnings

This commit is contained in:
Ryan Huffman 2015-01-07 11:06:36 -08:00
parent 19639367bf
commit 50fcf4ba8f

View file

@ -953,8 +953,6 @@ bool Audio::switchInputToAudioDevice(const QAudioDeviceInfo& inputDeviceInfo) {
void Audio::outputNotify() {
int recentUnfulfilled = _audioOutputIODevice.getRecentUnfulfilledReads();
if (recentUnfulfilled > 0) {
qDebug() << "WARNING --- WE HAD at least:" << recentUnfulfilled << "recently unfulfilled readData() calls";
if (_outputStarveDetectionEnabled) {
quint64 now = usecTimestampNow() / 1000;
quint64 dt = now - _outputStarveDetectionStartTimeMsec;