| Index: webrtc/modules/audio_processing/aec/echo_cancellation.c
|
| diff --git a/webrtc/modules/audio_processing/aec/echo_cancellation.c b/webrtc/modules/audio_processing/aec/echo_cancellation.c
|
| index 5dfe7ad4d544f9e77b74d88eb8a5460c2930d29a..b31a84a87af34f904863bd51a162df3fc4c8c9d0 100644
|
| --- a/webrtc/modules/audio_processing/aec/echo_cancellation.c
|
| +++ b/webrtc/modules/audio_processing/aec/echo_cancellation.c
|
| @@ -238,7 +238,7 @@ int32_t WebRtcAec_Init(void* aecInst, int32_t sampFreq, int32_t scSampFreq) {
|
| // We skip the startup_phase completely (setting to 0) if DA-AEC is enabled,
|
| // but not extended_filter mode.
|
| aecpc->startup_phase = WebRtcAec_extended_filter_enabled(aecpc->aec) ||
|
| - WebRtcAec_reported_delay_enabled(aecpc->aec);
|
| + !WebRtcAec_delay_agnostic_enabled(aecpc->aec);
|
| aecpc->bufSizeStart = 0;
|
| aecpc->checkBufSizeCtr = 0;
|
| aecpc->msInSndCardBuf = 0;
|
|
|