Home
last modified time | relevance | path

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

/external/webrtc/call/
Dbitrate_allocator.cc45 double MediaRatio(uint32_t allocated_bitrate, uint32_t protection_bitrate) { in MediaRatio() argument
46 RTC_DCHECK_GT(allocated_bitrate, 0); in MediaRatio()
50 uint32_t media_bitrate = allocated_bitrate - protection_bitrate; in MediaRatio()
51 return media_bitrate / static_cast<double>(allocated_bitrate); in MediaRatio()
197 int32_t allocated_bitrate = 0; in LowRateAllocation() local
199 allocated_bitrate = observer_config.config.min_bitrate_bps; in LowRateAllocation()
201 allocation[observer_config.observer] = allocated_bitrate; in LowRateAllocation()
202 remaining_bitrate -= allocated_bitrate; in LowRateAllocation()
403 uint32_t allocated_bitrate = allocation[config.observer]; in OnNetworkEstimateChanged() local
407 update.target_bitrate = DataRate::BitsPerSec(allocated_bitrate); in OnNetworkEstimateChanged()
[all …]