Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c720 WebRtc_Word32 bw_adjust; /* Q16 */ in WebRtcIsacfix_GetDownlinkBandwidth() local
749 bw_adjust = (WebRtc_UWord32)65536 + temp; /* (1 << 16) + temp; */ in WebRtcIsacfix_GetDownlinkBandwidth()
751bw_adjust = (WebRtc_UWord32)65536 - WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(jitter_sign, temp), 8);/*… in WebRtcIsacfix_GetDownlinkBandwidth()
756 bw_adjust = WEBRTC_SPL_RSHIFT_W32(bw_adjust, 2);//see if good resolution is maintained in WebRtcIsacfix_GetDownlinkBandwidth()
759 recBw = WEBRTC_SPL_UMUL(bweStr->recBw, bw_adjust); in WebRtcIsacfix_GetDownlinkBandwidth()
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c698 float bw_adjust; in WebRtcIsac_GetDownlinkBandwidth() local
705 bw_adjust = 1.0f - jitter_sign * (0.15f + 0.15f * jitter_sign * jitter_sign); in WebRtcIsac_GetDownlinkBandwidth()
708 rec_bw = (WebRtc_Word32)(bwest_str->rec_bw * bw_adjust); in WebRtcIsac_GetDownlinkBandwidth()