diff --git a/webrtc/modules/audio_device/android/audio_device_template.h b/webrtc/modules/audio_device/android/audio_device_template.h index 31b1cf794f..40e15ca357 100644 --- a/webrtc/modules/audio_device/android/audio_device_template.h +++ b/webrtc/modules/audio_device/android/audio_device_template.h @@ -216,7 +216,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric { } bool Recording() const override { - LOG(LS_VERBOSE) << __FUNCTION__; return input_.Recording() ; } @@ -421,7 +420,6 @@ class AudioDeviceTemplate : public AudioDeviceGeneric { int32_t PlayoutDelay(uint16_t& delay_ms) const override { // Best guess we can do is to use half of the estimated total delay. delay_ms = audio_manager_->GetDelayEstimateInMilliseconds() / 2; - LOG(LS_VERBOSE) << __FUNCTION__ << " delay = " << delay_ms; RTC_DCHECK_GT(delay_ms, 0); return 0; } @@ -440,22 +438,18 @@ class AudioDeviceTemplate : public AudioDeviceGeneric { } bool PlayoutWarning() const override { - LOG(LS_VERBOSE) << __FUNCTION__; return false; } bool PlayoutError() const override { - LOG(LS_VERBOSE) << __FUNCTION__; return false; } bool RecordingWarning() const override { - LOG(LS_VERBOSE) << __FUNCTION__; return false; } bool RecordingError() const override { - LOG(LS_VERBOSE) << __FUNCTION__; return false; } diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc index bfcbb00e48..9f141675bc 100644 --- a/webrtc/modules/audio_device/audio_device_impl.cc +++ b/webrtc/modules/audio_device/audio_device_impl.cc @@ -387,7 +387,6 @@ AudioDeviceModuleImpl::~AudioDeviceModuleImpl() { // ---------------------------------------------------------------------------- int64_t AudioDeviceModuleImpl::TimeUntilNextProcess() { - LOG(LS_VERBOSE) << __FUNCTION__; int64_t now = rtc::TimeMillis(); int64_t deltaProcess = kAdmMaxIdleTimeProcess - (now - _lastProcessTime); return deltaProcess; @@ -401,7 +400,6 @@ int64_t AudioDeviceModuleImpl::TimeUntilNextProcess() { // ---------------------------------------------------------------------------- void AudioDeviceModuleImpl::Process() { - LOG(LS_VERBOSE) << __FUNCTION__; _lastProcessTime = rtc::TimeMillis(); // kPlayoutWarning @@ -1606,7 +1604,6 @@ int32_t AudioDeviceModuleImpl::PlayoutBuffer(BufferType* type, // ---------------------------------------------------------------------------- int32_t AudioDeviceModuleImpl::PlayoutDelay(uint16_t* delayMS) const { - LOG(LS_VERBOSE) << __FUNCTION__; CHECK_INITIALIZED(); uint16_t delay(0); @@ -1617,7 +1614,6 @@ int32_t AudioDeviceModuleImpl::PlayoutDelay(uint16_t* delayMS) const { } *delayMS = delay; - LOG(LS_VERBOSE) << "output: " << *delayMS; return (0); }