OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:power_target
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.cc
183
const float
power_target
= std::accumulate(
local
185
AnalyzeClearBlock(
power_target
);
196
void IntelligibilityEnhancer::AnalyzeClearBlock(float
power_target
) {
206
if (
power_target
>= power_bot &&
power_target
<= power_top) {
207
SolveForLambda(
power_target
, power_bot, power_top);
212
void IntelligibilityEnhancer::SolveForLambda(float
power_target
,
218
const float reciprocal_power_target = 1.f /
power_target
;
229
if (power <
power_target
) {
intelligibility_enhancer.h
112
void AnalyzeClearBlock(float
power_target
);
115
void SolveForLambda(float
power_target
, float power_bot, float power_top);
Completed in 107 milliseconds