其他分享
首页 > 其他分享> > webrtc中Transport-CC带宽计算流程

webrtc中Transport-CC带宽计算流程

作者:互联网

基于丢包 RR报文
RTCPReceiver::IncomingPacket
	|
RTCPReceiver::TriggerCallbacksFromRtcpPacket
	|
BitrateControllerImpl::OnReceivedRtcpReceiverReport
	|
SendSideBandwidthEstimation::UpdateReceiverBlock
	|
SendSideBandwidthEstimation::UpdatePacketsLost
	|
SendSideBandwidthEstimation::UpdateEstimate
	|
SendSideBandwidthEstimation::CapBitrateToThresholds
	|
current_bitrate_bps_ = bitrate_bps;


基于延时 TransportFeedback报文
RTCPReceiver::IncomingPacket
	|
RTCPReceiver::TriggerCallbacksFromRtcpPacket
	|
SendSideCongestionController::OnTransportFeedback
	|
BitrateControllerImpl::OnDelayBasedBweResult
	|
SendSideBandwidthEstimation::UpdateDelayBasedEstimate
	|
SendSideBandwidthEstimation::CapBitrateToThresholds
	|
current_bitrate_bps_ = bitrate_bps;

标签:RTCPReceiver,CC,current,bps,SendSideBandwidthEstimation,TriggerCallbacksFromRtcp
来源: https://blog.csdn.net/airmanisvip/article/details/122606378