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

Unified Diff: webrtc/modules/audio_processing/audio_processing_impl.h

Issue 1678813002: Moved the GainControlForNewAGC class to a separate file. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Changed the locking test to match how the gain control is used in practice and to comply with the n… Created 4 years, 10 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/audio_processing_impl.h
diff --git a/webrtc/modules/audio_processing/audio_processing_impl.h b/webrtc/modules/audio_processing/audio_processing_impl.h
index 5da3996e334be73e7a39d59784e68f20c7f05c9b..8c958068df4e05fcf59a6758f4314a2afb134245 100644
--- a/webrtc/modules/audio_processing/audio_processing_impl.h
+++ b/webrtc/modules/audio_processing/audio_processing_impl.h
@@ -274,14 +274,14 @@ class AudioProcessingImpl : public AudioProcessing {
// APM constants.
const struct ApmConstants {
ApmConstants(int agc_startup_min_volume,
- bool use_new_agc,
+ bool use_experimental_agc,
bool intelligibility_enabled)
: // Format of processing streams at input/output call sites.
agc_startup_min_volume(agc_startup_min_volume),
- use_new_agc(use_new_agc),
+ use_experimental_agc(use_experimental_agc),
intelligibility_enabled(intelligibility_enabled) {}
int agc_startup_min_volume;
- bool use_new_agc;
+ bool use_experimental_agc;
bool intelligibility_enabled;
} constants_;

Powered by Google App Engine
This is Rietveld 408576698