| Index: webrtc/modules/audio_processing/audio_processing_impl.h
|
| diff --git a/webrtc/modules/audio_processing/audio_processing_impl.h b/webrtc/modules/audio_processing/audio_processing_impl.h
|
| index 895294dc60bdc8bd0f0452a7b9e47a20e9c3c301..6f237ae4dc84df14917777fdefd6041106875d65 100644
|
| --- a/webrtc/modules/audio_processing/audio_processing_impl.h
|
| +++ b/webrtc/modules/audio_processing/audio_processing_impl.h
|
| @@ -171,6 +171,7 @@ class AudioProcessingImpl : public AudioProcessing {
|
| void InitializeExperimentalAgc() EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
| void InitializeTransient() EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
| void InitializeBeamformer() EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
| + void MaybeUpdateHistograms() EXCLUSIVE_LOCKS_REQUIRED(crit_);
|
|
|
| EchoCancellationImpl* echo_cancellation_;
|
| EchoControlMobileImpl* echo_control_mobile_;
|
| @@ -207,6 +208,8 @@ class AudioProcessingImpl : public AudioProcessing {
|
| int stream_delay_ms_;
|
| int delay_offset_ms_;
|
| bool was_stream_delay_set_;
|
| + int last_stream_delay_ms_;
|
| + int last_aec_system_delay_ms_;
|
|
|
| bool output_will_be_muted_ GUARDED_BY(crit_);
|
|
|
|
|