Home | History | Annotate | Download | only in source

Lines Matching refs:recBwAvg

90    * recBwAvg = INIT_BN_EST + INIT_HDR_RATE in Q5
95 bweStr->recBwAvg = INIT_REC_BN_EST_Q5;
348 if ((bweStr->prevRtpRate > WEBRTC_SPL_RSHIFT_W32((int32_t) bweStr->recBwAvg, 5)) &&
349 (recRtpRate > WEBRTC_SPL_RSHIFT_W32((int32_t)bweStr->recBwAvg, 5)) &&
416 /* to save resolution compute the inverse of recBwAvg in Q26 by left shifting numerator to 2^31
417 and NOT right shifting recBwAvg 5 bits to an integer
420 recBwAvgInv = (0x80000000 + bweStr->recBwAvg / 2) / bweStr->recBwAvg;
526 bweStr->recBwAvg = WEBRTC_SPL_LSHIFT_U32(bweStr->recBw + bweStr->recHeaderRate, 5);
627 /* recBwAvg = 0.9 * recBwAvg + 0.1 * (rate + bweStr->recHeaderRate), 0.9 and 0.1 in Q9 */
628 bweStr->recBwAvg = WEBRTC_SPL_UMUL(922, bweStr->recBwAvg) +
630 bweStr->recBwAvg = WEBRTC_SPL_RSHIFT_U32(bweStr->recBwAvg, 10);