Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c793 WebRtc_Word16 send_bw; in WebRtcIsacfix_GetUplinkBandwidth() local
795 send_bw = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_U32(bweStr->sendBwAvg, 7); in WebRtcIsacfix_GetUplinkBandwidth()
798 if (send_bw < MIN_ISAC_BW) { in WebRtcIsacfix_GetUplinkBandwidth()
799 send_bw = MIN_ISAC_BW; in WebRtcIsacfix_GetUplinkBandwidth()
800 } else if (send_bw > MAX_ISAC_BW) { in WebRtcIsacfix_GetUplinkBandwidth()
801 send_bw = MAX_ISAC_BW; in WebRtcIsacfix_GetUplinkBandwidth()
804 return send_bw; in WebRtcIsacfix_GetUplinkBandwidth()