Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dbandwidth_estimator.c832 int32_t MinRate = 0; in WebRtcIsacfix_GetMinBytes() local
842 MinRate = INIT_RATE; in WebRtcIsacfix_GetMinBytes()
844 MinRate = 0; in WebRtcIsacfix_GetMinBytes()
853 MinRate = (512 + SAMPLES_PER_MSEC * ((DelayBuildUp * inv_Q12) >> 3)) * in WebRtcIsacfix_GetMinBytes()
859 MinRate = (512 + SAMPLES_PER_MSEC * (((DelayBuildUp - in WebRtcIsacfix_GetMinBytes()
863 MinRate = 0; in WebRtcIsacfix_GetMinBytes()
865 MinRate = (512 - ((den * inv_Q12) >> 3)) * BottleNeck; in WebRtcIsacfix_GetMinBytes()
870 if (MinRate < WEBRTC_SPL_MUL(532, BottleNeck)) { in WebRtcIsacfix_GetMinBytes()
871 MinRate += WEBRTC_SPL_MUL(22, BottleNeck); in WebRtcIsacfix_GetMinBytes()
882 MinRate += 256; in WebRtcIsacfix_GetMinBytes()
[all …]
/external/webrtc/modules/audio_coding/codecs/isac/main/source/
Dbandwidth_estimator.c791 double MinRate = 0.0; in WebRtcIsac_GetMinBytes() local
804 MinRate = INIT_RATE_WB; in WebRtcIsac_GetMinBytes()
808 MinRate = INIT_RATE_SWB; in WebRtcIsac_GetMinBytes()
813 MinRate = 0; in WebRtcIsac_GetMinBytes()
824 MinRate = (1.0 + (FS/1000) * DelayBuildUp / in WebRtcIsac_GetMinBytes()
831 MinRate = (1.0 + (FS/1000) * (DelayBuildUp - in WebRtcIsac_GetMinBytes()
833 if (MinRate < 1.04 * BottleNeck) in WebRtcIsac_GetMinBytes()
835 MinRate = 1.04 * BottleNeck; in WebRtcIsac_GetMinBytes()
844 MinBytes = (int) (MinRate * FrameSamples / (8.0 * FS)); in WebRtcIsac_GetMinBytes()
/external/webrtc/modules/video_coding/utility/
Dsimulcast_rate_allocator_unittest.cc147 DataRate MinRate(size_t layer_index) const { in MinRate() function in webrtc::SimulcastRateAllocatorTest
583 (TargetRate(0) + TargetRate(1) + MinRate(2)) * 1.1; in TEST_F()
591 GetAllocation(volatile_rate, TargetRate(0) + MinRate(1))); in TEST_F()
598 GetAllocation(volatile_rate, TargetRate(0) + MinRate(1) - in TEST_F()
606 GetAllocation(volatile_rate, TargetRate(0) + MinRate(1))); in TEST_F()
614 (TargetRate(0) + MinRate(1)) * 1.1)); in TEST_F()
632 TargetRate(0) + TargetRate(1) + MinRate(2))); in TEST_F()