| Index: webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc
|
| diff --git a/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc b/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc
|
| index 824467d9dd3241a66a50d81e53ed59eae18b35bc..6d341288299fcfef69b89e4fe36637374627159b 100644
|
| --- a/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc
|
| +++ b/webrtc/modules/audio_processing/aec3/residual_echo_estimator_unittest.cc
|
| @@ -22,7 +22,7 @@ namespace webrtc {
|
|
|
| // Verifies that the check for non-null output residual echo power works.
|
| TEST(ResidualEchoEstimator, NullResidualEchoPowerOutput) {
|
| - AecState aec_state;
|
| + AecState aec_state(0.f);
|
| RenderBuffer render_buffer(Aec3Optimization::kNone, 3, 10,
|
| std::vector<size_t>(1, 10));
|
| std::vector<std::array<float, kFftLengthBy2Plus1>> H2;
|
| @@ -37,7 +37,7 @@ TEST(ResidualEchoEstimator, NullResidualEchoPowerOutput) {
|
|
|
| TEST(ResidualEchoEstimator, BasicTest) {
|
| ResidualEchoEstimator estimator;
|
| - AecState aec_state;
|
| + AecState aec_state(0.f);
|
| RenderBuffer render_buffer(Aec3Optimization::kNone, 3, 10,
|
| std::vector<size_t>(1, 10));
|
| std::array<float, kFftLengthBy2Plus1> E2_main;
|
|
|