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

Unified Diff: webrtc/modules/audio_processing/aec/aec_core.cc

Issue 1763703002: Changed name for the upcoming AEC from NextGenerationAec to AEC3. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with latest master Created 4 years, 9 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/aec/aec_core.cc
diff --git a/webrtc/modules/audio_processing/aec/aec_core.cc b/webrtc/modules/audio_processing/aec/aec_core.cc
index e7a10cda686ae3ec53ad3fa60434a9bcb6b1ab06..1b5f03fec4e7a255f25c681218bbb7470ebc0770 100644
--- a/webrtc/modules/audio_processing/aec/aec_core.cc
+++ b/webrtc/modules/audio_processing/aec/aec_core.cc
@@ -1439,7 +1439,7 @@ AecCore* WebRtcAec_CreateAec() {
WebRtc_set_lookahead(aec->delay_estimator, kLookaheadBlocks);
#endif
aec->extended_filter_enabled = 0;
- aec->next_generation_aec_enabled = 0;
+ aec->aec3_enabled = 0;
// Assembly optimization
WebRtcAec_FilterFar = FilterFar;
@@ -1873,14 +1873,13 @@ int WebRtcAec_delay_agnostic_enabled(AecCore* self) {
return self->delay_agnostic_enabled;
}
-void WebRtcAec_enable_next_generation_aec(AecCore* self, int enable) {
- self->next_generation_aec_enabled = (enable != 0);
+void WebRtcAec_enable_aec3(AecCore* self, int enable) {
+ self->aec3_enabled = (enable != 0);
}
-int WebRtcAec_next_generation_aec_enabled(AecCore* self) {
- assert(self->next_generation_aec_enabled == 0 ||
- self->next_generation_aec_enabled == 1);
- return self->next_generation_aec_enabled;
+int WebRtcAec_aec3_enabled(AecCore* self) {
+ assert(self->aec3_enabled == 0 || self->aec3_enabled == 1);
+ return self->aec3_enabled;
}
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_core.h ('k') | webrtc/modules/audio_processing/aec/aec_core_internal.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698