| Index: webrtc/modules/audio_processing/audio_processing_impl.cc
|
| diff --git a/webrtc/modules/audio_processing/audio_processing_impl.cc b/webrtc/modules/audio_processing/audio_processing_impl.cc
|
| index bf5b5eb9edea440158f4c7b7132f215778c271e8..fd6b2581413138bd5080f874be9df0cf35e6fb1c 100644
|
| --- a/webrtc/modules/audio_processing/audio_processing_impl.cc
|
| +++ b/webrtc/modules/audio_processing/audio_processing_impl.cc
|
| @@ -1000,7 +1000,7 @@ void AudioProcessingImpl::InitializeBeamformer() {
|
| }
|
|
|
| void AudioProcessingImpl::MaybeUpdateHistograms() {
|
| - static const int kMinDiffDelayMs = 50;
|
| + static const int kMinDiffDelayMs = 60;
|
|
|
| if (echo_cancellation()->is_enabled()) {
|
| // Detect a jump in platform reported system delay and log the difference.
|
| @@ -1024,6 +1024,8 @@ void AudioProcessingImpl::MaybeUpdateHistograms() {
|
| 100);
|
| }
|
| last_aec_system_delay_ms_ = aec_system_delay_ms;
|
| + // TODO(bjornv): Consider also logging amount of jumps. This gives a better
|
| + // indication of how frequent jumps are.
|
| }
|
| }
|
|
|
|
|