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

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

Issue 2543753006: AGC: Route clipping parameter from webrtc::Config to AGC (Closed)
Patch Set: Fix a typo Created 4 years 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 4db2272c81c1c195343fa39e068f0e8732da19ab..0375a2532813de083c668f7ba2ab2e8e9b5c8b18 100644
--- a/webrtc/modules/audio_processing/audio_processing_impl.h
+++ b/webrtc/modules/audio_processing/audio_processing_impl.h
@@ -329,11 +329,15 @@ class AudioProcessingImpl : public AudioProcessing {
// APM constants.
const struct ApmConstants {
- ApmConstants(int agc_startup_min_volume, bool use_experimental_agc)
+ ApmConstants(int agc_startup_min_volume,
+ int agc_clipped_level_min,
+ bool use_experimental_agc)
: // Format of processing streams at input/output call sites.
agc_startup_min_volume(agc_startup_min_volume),
+ agc_clipped_level_min(agc_clipped_level_min),
use_experimental_agc(use_experimental_agc) {}
int agc_startup_min_volume;
+ int agc_clipped_level_min;
bool use_experimental_agc;
} constants_;

Powered by Google App Engine
This is Rietveld 408576698