Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c93 bweStr->recBw = INIT_BN_EST; in WebRtcIsacfix_InitBandwidthEstimator()
199 bweStr->recBwInv = WEBRTC_SPL_UDIV(1073741824, (bweStr->recBw + bweStr->recHeaderRate)); in WebRtcIsacfix_UpdateUplinkBwImpl()
214 bweStr->recBwInv = WEBRTC_SPL_UDIV(1073741824, (bweStr->recBw + bweStr->recHeaderRate)); in WebRtcIsacfix_UpdateUplinkBwImpl()
516 bweStr->recBw = WEBRTC_SPL_UDIV(1073741824, bweStr->recBwInv) - bweStr->recHeaderRate; in WebRtcIsacfix_UpdateUplinkBwImpl()
520 bweStr->recBw = WEBRTC_SPL_UMUL(delayCorrFactor, bweStr->recBw); in WebRtcIsacfix_UpdateUplinkBwImpl()
521 bweStr->recBw = WEBRTC_SPL_RSHIFT_U32(bweStr->recBw, 10); in WebRtcIsacfix_UpdateUplinkBwImpl()
523 if (bweStr->recBw < (WebRtc_Word32) MIN_ISAC_BW) { in WebRtcIsacfix_UpdateUplinkBwImpl()
524 bweStr->recBw = (WebRtc_Word32) MIN_ISAC_BW; in WebRtcIsacfix_UpdateUplinkBwImpl()
527 bweStr->recBwAvg = WEBRTC_SPL_LSHIFT_U32(bweStr->recBw + bweStr->recHeaderRate, 5); in WebRtcIsacfix_UpdateUplinkBwImpl()
529 bweStr->recBwAvgQ = WEBRTC_SPL_LSHIFT_U32(bweStr->recBw, 7); in WebRtcIsacfix_UpdateUplinkBwImpl()
[all …]
Dstructs.h203 WebRtc_UWord32 recBw; member