Revert "Add logs to debug. Revert later"

This reverts commit 3c49e7783c.
This commit is contained in:
Gabriel Calero 2018-07-24 14:57:48 -03:00
parent 3c49e7783c
commit f24cfebe88
2 changed files with 0 additions and 4 deletions

View file

@ -1639,7 +1639,6 @@ void AudioClient::audioInputStateChanged(QAudio::State state) {
void AudioClient::checkInputTimeout() {
#if defined(Q_OS_ANDROID)
if (_audioInput && _inputReadsSinceLastCheck < MIN_READS_TO_CONSIDER_INPUT_ALIVE) {
qDebug() << "[CHOPPY-AUDIO] " << _inputReadsSinceLastCheck << " < MIN_READS_TO_CONSIDER_INPUT_ALIVE";
_audioInput->stop();
} else {
_inputReadsSinceLastCheck = 0;

View file

@ -138,7 +138,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) {
// handle this packet based on its arrival status.
switch (arrivalInfo._status) {
case SequenceNumberStats::Unreasonable: {
qDebug() << "[CHOPPY-AUDIO] Unreasonable lostAudioData";
lostAudioData(1);
break;
}
@ -148,7 +147,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) {
// also result in allowing the codec to interpolate lost data. Then
// fall through to the "on time" logic to actually handle this packet
int packetsDropped = arrivalInfo._seqDiffFromExpected;
qDebug() << "[CHOPPY-AUDIO] Early lostAudioData " << packetsDropped;
lostAudioData(packetsDropped);
// fall through to OnTime case
@ -183,7 +181,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) {
// Since the data in the stream is using a codec that we aren't prepared for,
// we need to let the codec know that we don't have data for it, this will
// allow the codec to interpolate missing data and produce a fade to silence.
qDebug() << "[CHOPPY-AUDIO] !pcm lostAudioData 1";
lostAudioData(1);
}