From 7c14d5bbdf985cf7ad58b12c866da5a6a2db8538 Mon Sep 17 00:00:00 2001 From: Ken Cooke Date: Mon, 16 Oct 2017 11:43:52 -0700 Subject: [PATCH] Remove debug logging --- libraries/audio/src/InboundAudioStream.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libraries/audio/src/InboundAudioStream.cpp b/libraries/audio/src/InboundAudioStream.cpp index 8f64cafc7e..addf572cc3 100644 --- a/libraries/audio/src/InboundAudioStream.cpp +++ b/libraries/audio/src/InboundAudioStream.cpp @@ -138,7 +138,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) { switch (arrivalInfo._status) { case SequenceNumberStats::Unreasonable: { lostAudioData(1); - qDebug(audio) << "Sequence Unreasonable (LOST)"; break; } case SequenceNumberStats::Early: { @@ -148,7 +147,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) { // fall through to the "on time" logic to actually handle this packet int packetsDropped = arrivalInfo._seqDiffFromExpected; lostAudioData(packetsDropped); - qDebug(audio) << "Sequence Early (LOST)"; // fall through to OnTime case } @@ -159,7 +157,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) { // If we recieved a SilentAudioFrame from our sender, we might want to drop // some of the samples in order to catch up to our desired jitter buffer size. writeDroppableSilentFrames(networkFrames); - qDebug(audio) << "OnTime (SILENT)"; } else { // note: PCM and no codec are identical @@ -168,7 +165,6 @@ int InboundAudioStream::parseData(ReceivedMessage& message) { if (codecInPacket == _selectedCodecName || (packetPCM && selectedPCM)) { auto afterProperties = message.readWithoutCopy(message.getBytesLeftToRead()); parseAudioData(message.getType(), afterProperties); - qDebug(audio) << "OnTime (DECODE:" << codecInPacket << afterProperties.size() << ")"; _mismatchedAudioCodecCount = 0; } else {