From 66eab222c42fa1ab3285a20ad25223a7678f6b88 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Wed, 29 Jan 2020 20:08:20 +0100 Subject: [PATCH] Remove debug information ouput --- ambed/cvocodecchannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambed/cvocodecchannel.cpp b/ambed/cvocodecchannel.cpp index 42c3bf8..382c04d 100644 --- a/ambed/cvocodecchannel.cpp +++ b/ambed/cvocodecchannel.cpp @@ -95,7 +95,7 @@ uint8 CVocodecChannel::GetCodecOut(void) const void CVocodecChannel::ApplyAGC(CVoicePacket& voicePacket) { m_AGC.Apply(voicePacket.GetVoice(), voicePacket.GetVoiceSize()); - std::cout << "Gain : " << m_AGC.GetGain() << "\n"; + //std::cout << "Gain : " << m_AGC.GetGain() << "\n"; } ////////////////////////////////////////////////////////////////////////////////////////