HomeSort by relevance Sort by last modified time
    Searched refs:recBwAvg (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
bandwidth_estimator.c 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 *
    [all...]
structs.h 207 uint32_t recBwAvg;

Completed in 47 milliseconds