Remove debug information ouput

This commit is contained in:
Geoffrey Merck 2020-01-29 20:08:20 +01:00
parent f01c44ed53
commit 66eab222c4
1 changed files with 1 additions and 1 deletions

View File

@ -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";
}
////////////////////////////////////////////////////////////////////////////////////////