Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c442 if (bwest_str->rec_bw_inv > 1.0f / ((float)MIN_ISAC_BW + in WebRtcIsac_UpdateBandwidthEstimator()
445 bwest_str->rec_bw_inv = 1.0f / ((float)MIN_ISAC_BW + in WebRtcIsac_UpdateBandwidthEstimator()
483 if (bwest_str->rec_bw < (int32_t) MIN_ISAC_BW) in WebRtcIsac_UpdateBandwidthEstimator()
485 bwest_str->rec_bw = (int32_t) MIN_ISAC_BW; in WebRtcIsac_UpdateBandwidthEstimator()
727 if (rec_bw < MIN_ISAC_BW) in WebRtcIsac_GetDownlinkBandwidth()
729 rec_bw = MIN_ISAC_BW; in WebRtcIsac_GetDownlinkBandwidth()
769 : clamp(bwest_str->send_bw_avg, MIN_ISAC_BW, MAX_ISAC_BW); in WebRtcIsac_GetUplinkBandwidth()
Dbandwidth_estimator.h26 #define MIN_ISAC_BW 10000 macro
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c527 if (bweStr->recBw < (int32_t) MIN_ISAC_BW) { in WebRtcIsacfix_UpdateUplinkBwImpl()
528 bweStr->recBw = (int32_t) MIN_ISAC_BW; in WebRtcIsacfix_UpdateUplinkBwImpl()
779 if (recBw < MIN_ISAC_BW) { in WebRtcIsacfix_GetDownlinkBandwidth()
780 recBw = MIN_ISAC_BW; in WebRtcIsacfix_GetDownlinkBandwidth()
814 : clamp(bweStr->sendBwAvg >> 7, MIN_ISAC_BW, MAX_ISAC_BW); in WebRtcIsacfix_GetUplinkBandwidth()
Dsettings.h120 #define MIN_ISAC_BW 10000 /* Minimum bandwidth in bits per sec */ macro