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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_filter_c.c 31 int16_t tmpW16 = 0;
41 /* Saturate to avoid overflow in tmpW16. */
44 tmpW16 = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32, 14);
50 gain, tmpW16, 12);
60 /* Saturate to avoid overflow in tmpW16. */
63 tmpW16 = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32, 15);
66 tmpW32 = inputBuf[*index2] - WEBRTC_SPL_MUL_16_16(sign, tmpW16);
pitch_filter.c 174 int16_t cnt = 0, frcQQ, indW16 = 0, tmpW16;
208 tmpW16 = WEBRTC_SPL_LSHIFT_W16(indW16, 7);
209 tmpW16 -= curLagQ7;
210 frcQQ = WEBRTC_SPL_RSHIFT_W16(tmpW16, 4);
233 tmpW16 = (int16_t)WEBRTC_SPL_RSHIFT_W32(tmpW32, 14);
234 tmpW32 = WEBRTC_SPL_MUL_16_16(tmpW16, tmpW16);
pitch_filter_armv6.S 90 @ Saturate to avoid overflow in tmpW16.
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
analog_agc.c 592 int16_t i, tmpW16;
597 tmpW16 = (int16_t)WEBRTC_SPL_RSHIFT_W32(env[i], 20);
598 if (tmpW16 > 875)
600 stt->envSum += tmpW16;
    [all...]

Completed in 151 milliseconds