Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/agc2/
Dinput_volume_controller.cc144 int rms_error_db = 0; in GetSpeechLevelRmsErrorDb() local
146 rms_error_db = std::round(target_range_max_dbfs - speech_level_dbfs); in GetSpeechLevelRmsErrorDb()
148 rms_error_db = std::round(target_range_min_dbfs - speech_level_dbfs); in GetSpeechLevelRmsErrorDb()
151 return rms_error_db; in GetSpeechLevelRmsErrorDb()
198 void MonoInputVolumeController::Process(absl::optional<int> rms_error_db, in Process() argument
225 if (rms_error_db.has_value()) { in Process()
226 UpdateInputVolume(*rms_error_db); in Process()
359 void MonoInputVolumeController::UpdateInputVolume(int rms_error_db) { in UpdateInputVolume() argument
360 RTC_DLOG(LS_INFO) << "[AGC2] RMS error: " << rms_error_db << " dB"; in UpdateInputVolume()
363 rms_error_db = in UpdateInputVolume()
[all …]
/external/webrtc/modules/audio_processing/agc/
Dagc_manager_direct.h242 void UpdateGain(int rms_error_db);
Dagc_manager_direct.cc363 void MonoAgc::UpdateGain(int rms_error_db) { in UpdateGain() argument
364 int rms_error = rms_error_db; in UpdateGain()