Index: webrtc/modules/audio_processing/level_controller/peak_level_estimator.h |
diff --git a/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h b/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h |
index 941dd36be398202d46d594d99b9080e832b8d63f..270bbc3ad0a1e9e7960a36892033b2ea5947d778 100644 |
--- a/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h |
+++ b/webrtc/modules/audio_processing/level_controller/peak_level_estimator.h |
@@ -12,7 +12,6 @@ |
#define WEBRTC_MODULES_AUDIO_PROCESSING_LEVEL_CONTROLLER_PEAK_LEVEL_ESTIMATOR_H_ |
#include "webrtc/base/constructormagic.h" |
-#include "webrtc/modules/audio_processing/level_controller/lc_constants.h" |
#include "webrtc/modules/audio_processing/level_controller/signal_classifier.h" |
namespace webrtc { |
@@ -24,11 +23,9 @@ |
void Initialize(); |
float Analyze(SignalClassifier::SignalType signal_type, |
float frame_peak_level); |
- void SetInitialPeakLevel(float level); |
private: |
float peak_level_; |
- float initial_peak_level_ = kTargetLcPeakLevel; |
int hold_counter_; |
bool initialization_phase_; |