| Index: webrtc/modules/audio_device/audio_device_impl.cc
|
| diff --git a/webrtc/modules/audio_device/audio_device_impl.cc b/webrtc/modules/audio_device/audio_device_impl.cc
|
| index bfcbb00e48a492bdcffa20b9870411ba3d04ad56..9f141675bce96d6168e2bbfef14e76fd1cefd65e 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);
|
| }
|
|
|
|
|