| Index: webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc
|
| diff --git a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc
|
| index 539832df03b309c898dbac45dd9234481cb9aa4a..6472bcb1fb034ce446abcf4a48ac09cd4e8bf8e6 100644
|
| --- a/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc
|
| +++ b/webrtc/modules/audio_processing/aec3/echo_path_delay_estimator.cc
|
| @@ -13,7 +13,7 @@
|
| #include <array>
|
|
|
| #include "webrtc/base/checks.h"
|
| -#include "webrtc/modules/audio_processing/aec3/aec3_constants.h"
|
| +#include "webrtc/modules/audio_processing/aec3/aec3_common.h"
|
| #include "webrtc/modules/audio_processing/include/audio_processing.h"
|
| #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h"
|
|
|
| @@ -32,6 +32,7 @@ constexpr int kDownSamplingFactor = 4;
|
| EchoPathDelayEstimator::EchoPathDelayEstimator(ApmDataDumper* data_dumper)
|
| : data_dumper_(data_dumper),
|
| matched_filter_(data_dumper_,
|
| + DetectOptimization(),
|
| kMatchedFilterWindowSizeSubBlocks,
|
| kNumMatchedFilters,
|
| kMatchedFilterAlignmentShiftSizeSubBlocks),
|
|
|