Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/agc2/
Dfixed_gain_controller.cc45 void FixedGainController::SetGain(float gain_to_apply_db) { in SetGain() argument
51 RTC_DCHECK_LE(-50.f, gain_to_apply_db); in SetGain()
52 RTC_DCHECK_LE(gain_to_apply_db, 50.f); in SetGain()
54 gain_to_apply_ = DbToRatio(gain_to_apply_db); in SetGain()
56 RTC_DLOG(LS_INFO) << "Gain to apply: " << gain_to_apply_db << " db."; in SetGain()