Searched refs:inVal (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.c811 // - inVal : New input value.
819 WebRtc_Word16 WebRtcAecm_AsymFilt(const WebRtc_Word16 filtOld, const WebRtc_Word16 inVal, argument
827 return inVal;
830 if (filtOld > inVal)
832 retVal -= WEBRTC_SPL_RSHIFT_W16(filtOld - inVal, stepSizeNeg);
835 retVal += WEBRTC_SPL_RSHIFT_W16(inVal - filtOld, stepSizePos);
/external/svox/pico/lib/
H A Dpicopam.c1578 * @param inVal : the value to be compressed
1583 static picoos_uint8 pamCompressComponent(picoos_uint8 inVal) argument
1585 if (inVal <= 5)
1586 return inVal;
1587 if ((5 < inVal) && (inVal <= 10))
1589 if ((10 < inVal) && (inVal <= 20))
1591 if ((20 < inVal) && (inVal <
[all...]

Completed in 110 milliseconds