| Index: webrtc/voice_engine/voe_audio_processing_impl.cc
|
| diff --git a/webrtc/voice_engine/voe_audio_processing_impl.cc b/webrtc/voice_engine/voe_audio_processing_impl.cc
|
| index 83f70fe68e62d70c6b657460adfac761cc8e343b..c95726339ca3e86041006306830e32c6a962ed2c 100644
|
| --- a/webrtc/voice_engine/voe_audio_processing_impl.cc
|
| +++ b/webrtc/voice_engine/voe_audio_processing_impl.cc
|
| @@ -10,9 +10,9 @@
|
|
|
| #include "webrtc/voice_engine/voe_audio_processing_impl.h"
|
|
|
| +#include "webrtc/base/logging.h"
|
| #include "webrtc/modules/audio_processing/include/audio_processing.h"
|
| #include "webrtc/system_wrappers/include/critical_section_wrapper.h"
|
| -#include "webrtc/system_wrappers/include/logging.h"
|
| #include "webrtc/system_wrappers/include/trace.h"
|
| #include "webrtc/voice_engine/channel.h"
|
| #include "webrtc/voice_engine/include/voe_errors.h"
|
| @@ -317,7 +317,6 @@ int VoEAudioProcessingImpl::GetAgcConfig(AgcConfig& config) {
|
| int VoEAudioProcessingImpl::SetRxNsStatus(int channel,
|
| bool enable,
|
| NsModes mode) {
|
| - LOG_API3(channel, enable, mode);
|
| #ifdef WEBRTC_VOICE_ENGINE_NR
|
| if (!_shared->statistics().Initialized()) {
|
| _shared->SetLastError(VE_NOT_INITED, kTraceError);
|
| @@ -469,7 +468,6 @@ bool VoEAudioProcessing::DriftCompensationSupported() {
|
| }
|
|
|
| int VoEAudioProcessingImpl::EnableDriftCompensation(bool enable) {
|
| - LOG_API1(enable);
|
| WEBRTC_VOICE_INIT_CHECK();
|
|
|
| if (!DriftCompensationSupported()) {
|
| @@ -489,7 +487,6 @@ int VoEAudioProcessingImpl::EnableDriftCompensation(bool enable) {
|
| }
|
|
|
| bool VoEAudioProcessingImpl::DriftCompensationEnabled() {
|
| - LOG_API0();
|
| WEBRTC_VOICE_INIT_CHECK_BOOL();
|
|
|
| EchoCancellation* aec = _shared->audio_processing()->echo_cancellation();
|
| @@ -1038,12 +1035,10 @@ int VoEAudioProcessingImpl::SetTypingDetectionParameters(int timeWindow,
|
| }
|
|
|
| void VoEAudioProcessingImpl::EnableStereoChannelSwapping(bool enable) {
|
| - LOG_API1(enable);
|
| _shared->transmit_mixer()->EnableStereoChannelSwapping(enable);
|
| }
|
|
|
| bool VoEAudioProcessingImpl::IsStereoChannelSwappingEnabled() {
|
| - LOG_API0();
|
| return _shared->transmit_mixer()->IsStereoChannelSwappingEnabled();
|
| }
|
|
|
|
|