Home | History | Annotate | Download | only in source

Lines Matching refs:recBwAvg

92    * recBwAvg = INIT_BN_EST + INIT_HDR_RATE in Q5
97 bweStr->recBwAvg = INIT_REC_BN_EST_Q5;
353 if ((bweStr->prevRtpRate > (int32_t)bweStr->recBwAvg >> 5) &&
354 (recRtpRate > (int32_t)bweStr->recBwAvg >> 5) &&
421 /* to save resolution compute the inverse of recBwAvg in Q26 by left shifting numerator to 2^31
422 and NOT right shifting recBwAvg 5 bits to an integer
425 recBwAvgInv = (0x80000000 + bweStr->recBwAvg / 2) / bweStr->recBwAvg;
531 bweStr->recBwAvg = (bweStr->recBw + bweStr->recHeaderRate) << 5;
637 /* recBwAvg = 0.9 * recBwAvg + 0.1 * (rate + bweStr->recHeaderRate), 0.9 and 0.1 in Q9 */
638 bweStr->recBwAvg = 922 * bweStr->recBwAvg +
640 bweStr->recBwAvg = WEBRTC_SPL_RSHIFT_U32(bweStr->recBwAvg, 10);