Home | History | Annotate | Download | only in source

Lines Matching refs:weight

150   WebRtc_UWord16  weight = 0;
354 /* constant weight after initiation part, 0.01 in Q13 */
355 weight = (WebRtc_UWord16) 82;
357 /* weight decreases with number of updates, 1/countUpdates in Q13 */
358 weight = (WebRtc_UWord16) WebRtcSpl_DivW32W16(
404 bweStr->recBwInv = WEBRTC_SPL_UMUL(weight, currBwInv) +
405 WEBRTC_SPL_UMUL((WebRtc_UWord32) 8192 - weight, bweStr->recBwInv);
408 up to 30 bits used with Q13 weight */
449 weight = WEBRTC_SPL_RSHIFT_W32(weight, 3);
450 bweStr->recJitter = WEBRTC_SPL_MUL(weight, WEBRTC_SPL_LSHIFT_W32(arrTimeNoiseAbs, 5))
451 + WEBRTC_SPL_MUL(1024 - weight, bweStr->recJitter);