HomeSort by relevance Sort by last modified time
    Searched refs:meanLongTerm (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/agc/legacy/
digital_agc.h 31 int16_t meanLongTerm; // Q10
digital_agc.c 613 state->meanLongTerm = 15 << 10;
731 tmp32 = state->meanLongTerm * state->counter + dB;
732 state->meanLongTerm = WebRtcSpl_DivW32W16ResW16(
742 tmp32 = state->meanLongTerm * state->meanLongTerm;
748 // TODO(bjornv): (dB - state->meanLongTerm) can overflow, e.g., in
753 tmp32 = tmp16 * (int16_t)(dB - state->meanLongTerm);

Completed in 2078 milliseconds