Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: webrtc/modules/audio_processing/aec3/residual_echo_estimator.cc

Issue 3003733002: Utilizing the AEC3 config struct for constants. (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 } 73 }
74 } 74 }
75 } 75 }
76 76
77 // Assume a minimum echo path gain of -33 dB for headsets. 77 // Assume a minimum echo path gain of -33 dB for headsets.
78 constexpr float kHeadsetEchoPathGain = 0.0005f; 78 constexpr float kHeadsetEchoPathGain = 0.0005f;
79 79
80 } // namespace 80 } // namespace
81 81
82 ResidualEchoEstimator::ResidualEchoEstimator() { 82 ResidualEchoEstimator::ResidualEchoEstimator(
83 const AudioProcessing::Config::EchoCanceller3& config)
84 : config_(config) {
83 Reset(); 85 Reset();
84 } 86 }
85 87
86 ResidualEchoEstimator::~ResidualEchoEstimator() = default; 88 ResidualEchoEstimator::~ResidualEchoEstimator() = default;
87 89
88 void ResidualEchoEstimator::Estimate( 90 void ResidualEchoEstimator::Estimate(
89 bool using_subtractor_output, 91 bool using_subtractor_output,
90 const AecState& aec_state, 92 const AecState& aec_state,
91 const RenderBuffer& render_buffer, 93 const RenderBuffer& render_buffer,
92 const std::array<float, kFftLengthBy2Plus1>& S2_linear, 94 const std::array<float, kFftLengthBy2Plus1>& S2_linear,
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 return b / a; 182 return b / a;
181 }); 183 });
182 } 184 }
183 185
184 void ResidualEchoEstimator::NonLinearEstimate( 186 void ResidualEchoEstimator::NonLinearEstimate(
185 bool headset_detected, 187 bool headset_detected,
186 const std::array<float, kFftLengthBy2Plus1>& X2, 188 const std::array<float, kFftLengthBy2Plus1>& X2,
187 const std::array<float, kFftLengthBy2Plus1>& Y2, 189 const std::array<float, kFftLengthBy2Plus1>& Y2,
188 std::array<float, kFftLengthBy2Plus1>* R2) { 190 std::array<float, kFftLengthBy2Plus1>* R2) {
189 // Choose gains. 191 // Choose gains.
190 const float echo_path_gain_lf = headset_detected ? kHeadsetEchoPathGain : 100; 192 const float echo_path_gain_lf =
193 headset_detected ? kHeadsetEchoPathGain : config_.param.ep_strength.lf;
191 const float echo_path_gain_mf = 194 const float echo_path_gain_mf =
192 headset_detected ? kHeadsetEchoPathGain : 1000; 195 headset_detected ? kHeadsetEchoPathGain : config_.param.ep_strength.mf;
193 const float echo_path_gain_hf = 196 const float echo_path_gain_hf =
194 headset_detected ? kHeadsetEchoPathGain : 5000; 197 headset_detected ? kHeadsetEchoPathGain : config_.param.ep_strength.hf;
195 198
196 // Compute preliminary residual echo. 199 // Compute preliminary residual echo.
197 std::transform( 200 std::transform(
198 X2.begin(), X2.begin() + 12, R2->begin(), 201 X2.begin(), X2.begin() + 12, R2->begin(),
199 [echo_path_gain_lf](float a) { return a * echo_path_gain_lf; }); 202 [echo_path_gain_lf](float a) { return a * echo_path_gain_lf; });
200 std::transform( 203 std::transform(
201 X2.begin() + 12, X2.begin() + 25, R2->begin() + 12, 204 X2.begin() + 12, X2.begin() + 25, R2->begin() + 12,
202 [echo_path_gain_mf](float a) { return a * echo_path_gain_mf; }); 205 [echo_path_gain_mf](float a) { return a * echo_path_gain_mf; });
203 std::transform( 206 std::transform(
204 X2.begin() + 25, X2.end(), R2->begin() + 25, 207 X2.begin() + 25, X2.end(), R2->begin() + 25,
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 } else { 254 } else {
252 std::copy(S2.begin(), S2.end(), S2_old_[S2_old_index_].begin()); 255 std::copy(S2.begin(), S2.end(), S2_old_[S2_old_index_].begin());
253 } 256 }
254 257
255 // Add the power of the echo reverb to the residual echo power. 258 // Add the power of the echo reverb to the residual echo power.
256 std::transform(R2->begin(), R2->end(), R2_reverb_.begin(), R2->begin(), 259 std::transform(R2->begin(), R2->end(), R2_reverb_.begin(), R2->begin(),
257 std::plus<float>()); 260 std::plus<float>());
258 } 261 }
259 262
260 } // namespace webrtc 263 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698