Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dpitch_filter_c.c31 int16_t tmpW16 = 0; in WebRtcIsacfix_PitchFilterCore() local
44 tmpW16 = (int16_t)(tmpW32 >> 14); in WebRtcIsacfix_PitchFilterCore()
50 gain, tmpW16, 12); in WebRtcIsacfix_PitchFilterCore()
63 tmpW16 = (int16_t)(tmpW32 >> 15); in WebRtcIsacfix_PitchFilterCore()
66 tmpW32 = inputBuf[*index2] - sign * tmpW16; in WebRtcIsacfix_PitchFilterCore()
Dpitch_filter.c151 int16_t cnt = 0, tmpW16; in WebRtcIsacfix_PitchFilterGains() local
207 tmpW16 = tmpW32 >> 14; in WebRtcIsacfix_PitchFilterGains()
208 tmpW32 = tmpW16 * tmpW16; in WebRtcIsacfix_PitchFilterGains()
Dpitch_filter_armv6.S90 @ Saturate to avoid overflow in tmpW16.
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
Danalog_agc.c479 int16_t i, tmpW16; in WebRtcAgc_SaturationCtrl() local
484 tmpW16 = (int16_t)(env[i] >> 20); in WebRtcAgc_SaturationCtrl()
485 if (tmpW16 > 875) in WebRtcAgc_SaturationCtrl()
487 stt->envSum += tmpW16; in WebRtcAgc_SaturationCtrl()