Home
last modified time | relevance | path

Searched refs:adaptive_agc_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/modules/audio_processing/
Dgain_controller2.cc32 adaptive_agc_.reset(new AdaptiveAgc(data_dumper_.get())); in GainController2()
53 if (adaptive_agc_) { in Process()
54 adaptive_agc_->Process(float_frame, limiter_.LastAudioLevel()); in Process()
60 if (analog_level_ != level && adaptive_agc_) { in NotifyAnalogLevel()
61 adaptive_agc_->Reset(); in NotifyAnalogLevel()
79 adaptive_agc_.reset(new AdaptiveAgc(data_dumper_.get(), config_)); in ApplyConfig()
81 adaptive_agc_.reset(); in ApplyConfig()
Dgain_controller2.h49 std::unique_ptr<AdaptiveAgc> adaptive_agc_; variable