Home
last modified time | relevance | path

Searched refs:shiftNum (Results 1 – 2 of 2) sorted by relevance

/external/aac/libSBRenc/src/
Dsbr_misc.cpp247 INT shiftNum = CountLeadingBits(num); in FDKsbrEnc_LSI_divide_scale_fract() local
251 num = num << shiftNum; in FDKsbrEnc_LSI_divide_scale_fract()
256 if ( denom > (tmp >> fixMin(shiftNum+shiftScale-1,(DFRACT_BITS-1))) ) { in FDKsbrEnc_LSI_divide_scale_fract()
259 shiftCommon = fixMin((shiftNum-shiftDenom+shiftScale-1),(DFRACT_BITS-1)); in FDKsbrEnc_LSI_divide_scale_fract()
/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core.c908 int16_t shiftChFar, shiftNum, shift2ResChan; in WebRtcAecm_UpdateChannel() local
986 shiftNum = 0; in WebRtcAecm_UpdateChannel()
989 shiftNum = 32 - (zerosNum + zerosFar); in WebRtcAecm_UpdateChannel()
992 tmp32no2 = (tmp32no1 >> shiftNum) * far_spectrum[i]; in WebRtcAecm_UpdateChannel()
995 tmp32no2 = -((-tmp32no1 >> shiftNum) * far_spectrum[i]); in WebRtcAecm_UpdateChannel()
1001 shift2ResChan = shiftNum + shiftChFar - xfaQ - mu - ((30 - zerosFar) << 1); in WebRtcAecm_UpdateChannel()