diff --git a/src/audio/pulselayer.cpp b/src/audio/pulselayer.cpp index 3a1ec8167a6dead4212e760ba4c59c22941fe245..b4718928360b2a74a1b47a2a3d4cff6c5138be1d 100644 --- a/src/audio/pulselayer.cpp +++ b/src/audio/pulselayer.cpp @@ -296,7 +296,7 @@ void PulseLayer::writeToSpeaker( void ) urgentAvail = _urgentRingBuffer.AvailForGet(); if (urgentAvail > 0) { // Urgent data (dtmf, incoming call signal) come first. - _debug("Play urgent!: %i\n" , urgentAvail); + //_debug("Play urgent!: %i\n" , urgentAvail); toGet = (urgentAvail < (int)(framesPerBuffer * sizeof(SFLDataFormat))) ? urgentAvail : framesPerBuffer * sizeof(SFLDataFormat); out = (SFLDataFormat*)pa_xmalloc(toGet * sizeof(SFLDataFormat) ); _urgentRingBuffer.Get(out, toGet, 100);