| Index: webrtc/modules/audio_processing/aec3/residual_echo_estimator.h
|
| diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h
|
| index a4f85c40c2b18cc50c08b18e042ac35751982664..1f520af48c112e6d4ee8068bdda0b0d46de9b7ed 100644
|
| --- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h
|
| +++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator.h
|
| @@ -19,7 +19,7 @@
|
| #include "webrtc/base/constructormagic.h"
|
| #include "webrtc/modules/audio_processing/aec3/aec3_common.h"
|
| #include "webrtc/modules/audio_processing/aec3/aec_state.h"
|
| -#include "webrtc/modules/audio_processing/aec3/fft_buffer.h"
|
| +#include "webrtc/modules/audio_processing/aec3/render_buffer.h"
|
|
|
| namespace webrtc {
|
|
|
| @@ -30,7 +30,7 @@ class ResidualEchoEstimator {
|
|
|
| void Estimate(bool using_subtractor_output,
|
| const AecState& aec_state,
|
| - const FftBuffer& X_buffer,
|
| + const RenderBuffer& X_buffer,
|
| const std::vector<std::array<float, kFftLengthBy2Plus1>>& H2,
|
| const std::array<float, kFftLengthBy2Plus1>& E2_main,
|
| const std::array<float, kFftLengthBy2Plus1>& E2_shadow,
|
|
|