Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c839 WebRtc_Word32 MinRate = 0; in WebRtcIsacfix_GetMinBytes() local
849 MinRate = INIT_RATE; in WebRtcIsacfix_GetMinBytes()
851 MinRate = 0; in WebRtcIsacfix_GetMinBytes()
859MinRate = WEBRTC_SPL_MUL(512 + WEBRTC_SPL_MUL(SAMPLES_PER_MSEC, WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_M… in WebRtcIsacfix_GetMinBytes()
864MinRate = WEBRTC_SPL_MUL(512 + WEBRTC_SPL_MUL(SAMPLES_PER_MSEC, WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_M… in WebRtcIsacfix_GetMinBytes()
867 MinRate = 0; in WebRtcIsacfix_GetMinBytes()
869MinRate = WEBRTC_SPL_MUL((512 - WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(den, inv_Q12), 3)), BottleNec… in WebRtcIsacfix_GetMinBytes()
874 if (MinRate < WEBRTC_SPL_MUL(532, BottleNeck)) { in WebRtcIsacfix_GetMinBytes()
875 MinRate += WEBRTC_SPL_MUL(22, BottleNeck); in WebRtcIsacfix_GetMinBytes()
886 MinRate += 256; in WebRtcIsacfix_GetMinBytes()
[all …]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c798 double MinRate = 0.0; in WebRtcIsac_GetMinBytes() local
811 MinRate = INIT_RATE_WB; in WebRtcIsac_GetMinBytes()
815 MinRate = INIT_RATE_SWB; in WebRtcIsac_GetMinBytes()
820 MinRate = 0; in WebRtcIsac_GetMinBytes()
831 MinRate = (1.0 + (FS/1000) * DelayBuildUp / in WebRtcIsac_GetMinBytes()
838 MinRate = (1.0 + (FS/1000) * (DelayBuildUp - in WebRtcIsac_GetMinBytes()
840 if (MinRate < 1.04 * BottleNeck) in WebRtcIsac_GetMinBytes()
842 MinRate = 1.04 * BottleNeck; in WebRtcIsac_GetMinBytes()
851 MinBytes = (int) (MinRate * FrameSamples / (8.0 * FS)); in WebRtcIsac_GetMinBytes()