OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:capacitorslow
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/src/modules/audio_processing/agc/
digital_agc.c
267
stt->
capacitorSlow
= 0;
271
stt->
capacitorSlow
= 134217728; // (WebRtc_Word32)(0.125f * 32768.0f * 32768.0f);
438
if (env[k] > stt->
capacitorSlow
)
440
// increase
capacitorSlow
441
stt->
capacitorSlow
442
= AGC_SCALEDIFF32(500, (env[k] - stt->
capacitorSlow
), stt->
capacitorSlow
);
445
// decrease
capacitorSlow
446
stt->
capacitorSlow
447
= AGC_SCALEDIFF32(decay, stt->
capacitorSlow
, stt->capacitorSlow)
[
all
...]
digital_agc.h
41
WebRtc_Word32
capacitorSlow
;
Completed in 106 milliseconds