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

Unified Diff: webrtc/modules/audio_processing/aec3/power_echo_model.h

Issue 2784023002: Major AEC3 render pipeline changes (Closed)
Patch Set: Disabled one more DEATH test that caused issues due to bug on bots Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/aec3/power_echo_model.h
diff --git a/webrtc/modules/audio_processing/aec3/power_echo_model.h b/webrtc/modules/audio_processing/aec3/power_echo_model.h
index 8df82f0982c1bc2e6636b3df5fbbfda82376e315..9487e92e05578283c08b534ed420db740859396b 100644
--- a/webrtc/modules/audio_processing/aec3/power_echo_model.h
+++ b/webrtc/modules/audio_processing/aec3/power_echo_model.h
@@ -18,7 +18,7 @@
#include "webrtc/modules/audio_processing/aec3/aec3_common.h"
#include "webrtc/modules/audio_processing/aec3/aec_state.h"
#include "webrtc/modules/audio_processing/aec3/echo_path_variability.h"
-#include "webrtc/modules/audio_processing/aec3/fft_buffer.h"
+#include "webrtc/modules/audio_processing/aec3/render_buffer.h"
namespace webrtc {
@@ -34,7 +34,7 @@ class PowerEchoModel {
// Updates the echo model and estimates the echo spectrum.
void EstimateEcho(
- const FftBuffer& render_buffer,
+ const RenderBuffer& render_buffer,
const std::array<float, kFftLengthBy2Plus1>& capture_spectrum,
const AecState& aec_state,
std::array<float, kFftLengthBy2Plus1>* echo_spectrum);

Powered by Google App Engine
This is Rietveld 408576698