Removing echo warning because it seems to be flooding the logs

anytime there is any echo. Secondly, this should be treated as
a warning in the sense that echo in the signal does not mean
something is wrong with the engine.f
Review URL: http://webrtc-codereview.appspot.com/139018

git-svn-id: http://webrtc.googlecode.com/svn/trunk@572 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
punyabrata@webrtc.org 2011-09-09 16:28:51 +00:00
parent 0ada410d37
commit 955d0eed2f

View File

@ -1296,7 +1296,7 @@ WebRtc_Word32 TransmitMixer::APMProcessStream(
captureLevel) == -1)
{
WEBRTC_TRACE(kTraceWarning, kTraceVoice, VoEId(_instanceId, -1),
"AudioProcessingModule::set_stream_analog_level"
"AudioProcessingModule::set_stream_analog_level "
"(captureLevel=%u,) => error",
captureLevel);
}
@ -1341,7 +1341,7 @@ WebRtc_Word32 TransmitMixer::APMProcessStream(
} else
{
WEBRTC_TRACE(kTraceWarning, kTraceVoice, VoEId(_instanceId, -1),
"TransmitMixer::APMProcessStream() failed to"
"TransmitMixer::APMProcessStream() failed to "
"retrieve level metrics");
_audioLevel_dBov = 100;
}
@ -1353,21 +1353,15 @@ WebRtc_Word32 TransmitMixer::APMProcessStream(
if (_saturationWarning == 1)
{
WEBRTC_TRACE(kTraceWarning, kTraceVoice, VoEId(_instanceId, -1),
"TransmitMixer::APMProcessStream() pending"
"TransmitMixer::APMProcessStream() pending "
"saturation warning exists");
}
_saturationWarning = 1; // triggers callback from moduleprocess thread
WEBRTC_TRACE(kTraceWarning, kTraceVoice, VoEId(_instanceId, -1),
"TransmitMixer::APMProcessStream() VE_SATURATION_WARNING"
"TransmitMixer::APMProcessStream() VE_SATURATION_WARNING "
"message has been posted for callback");
}
if (_audioProcessingModulePtr->echo_cancellation()->stream_has_echo())
{
WEBRTC_TRACE(kTraceWarning, kTraceVoice, VoEId(_instanceId, -1),
"AudioProcessingModule notification: Echo");
}
return 0;
}