• WebRTC GCC 拥塞控制算法(REMB-GCC)


    目录

    一. 前言

    二. REMB-GCC算法原理

    1. 接收端基于延时梯度的带宽预估

    (1)Arrival-time filter

    (2)Overuse Detector

    (3)Adaptive threshold

    (4)Remote Rate Controller

    (5)Remb Processing

    2. 发送端基于丢包的带宽预估

    三. 参考资料


    一. 前言

            在网络传输中,所有应用程序都需要拥塞控制以避免网络出现拥塞的情况,对于音视频传输也是如此,假设发送方以某个码率值发送数据,但是网络出现拥塞,此时发送方应该降低发送码率,当网络拥塞情况好转,发送方又可以提升发送码率。

            GCC 算法是出自 Google 的一种结合延时梯度和丢包率的拥塞控制算法,WebRTC 默认使用该算法。

            该算法有两个版本,版本一是由接收端对延时梯度进行估计,计算预估带宽后通过 RTCP REMB 报文反馈给发送端,发送端基于丢包率也进行带宽评估,最终的发送码率选用二者的较小值,这个版本称为 REMB-GCC。

            版本二是将使用延时梯度以及丢包率进行估算的逻辑都放在发送端,接收端仅定时向发送端反馈收包情况,这个版本称为 TFB-GCC。

            本文主要讲解 REMB-GCC,关于 TFB-GCC 也会在后续文章进行讲解。

    二. REMB-GCC算法原理

            如上是 REMB-GCC 的架构图,左边是发送端部分,右边是接收端部分。

            接收端负责收包并计算延时梯度,根据延时梯度评估网络当前处于 overuse/normal/underuse 状态,并评估接收端最大码率,这部分主要分为 Arrival filter,Overuse Detector,Adaptive threshold,Remote Rate Controller 以及 Remb Processing 模块。

            发送端使用丢包率进行带宽预估,最终结合接收端反馈的带宽以及基于丢包率预估的带宽选择较小值作为最终带宽,这个最终带宽会通知给 Encoder,Pacer 和 FEC 模块以供模块内部做一些调整。

    1. 接收端基于延时梯度的带宽预估

            如上所示,发送端在 T(i-1) 和 T(i) 发送了两个数据包,接收端分别在 t(i-1) 和 t(i) 接收到了这两个数据包,那么延时梯度 d(t(i)) = [t(i) - t(i-1)] - [T(i) - T(i-1)]

            在理想状态下的网络传输,d(t(i)) 应该为 0,如果网络发生拥塞,T(i) 时刻发出来的包被接收端接收需要更长的时间,此时 d(t(i)) 大于 0,如果 d(t(i)) 大于 0 且越来越大,说明网络拥塞更严重,如果 d(t(i)) 大于 0 但是越来越小,说明网络拥塞状况处于好转状态。

    (1)Arrival-time filter

            WebRTC 中计算延时梯度并不是以单个包为单位的,而是以一组包为单位。

            为了得到发送端两组包的时间差,发送端在发送每个 RTP 包都需要携带一个 RTP 扩展字段:abs-send-time,这个扩展记录了这个包发送时的时间信息,它的数据长度是 24bit,高 6 bit 表示秒数的整数部分,低 18 bit 表示剩余的秒数部分,这意味着它是每 64s 环绕一次并且单位精度为 3.8us,Absolute Send Time 的字段解释请看这里

            下面是 WebRTC 计算延时梯度的代码。

    1. bool InterArrival::ComputeDeltas(uint32_t timestamp,
    2. int64_t arrival_time_ms,
    3. int64_t system_time_ms,
    4. size_t packet_size,
    5. uint32_t* timestamp_delta,
    6. int64_t* arrival_time_delta_ms,
    7. int* packet_size_delta) {
    8. assert(timestamp_delta != NULL);
    9. assert(arrival_time_delta_ms != NULL);
    10. assert(packet_size_delta != NULL);
    11. bool calculated_deltas = false;
    12. if (current_timestamp_group_.IsFirstPacket()) {
    13. // We don't have enough data to update the filter, so we store it until we
    14. // have two frames of data to process.
    15. current_timestamp_group_.timestamp = timestamp;
    16. current_timestamp_group_.first_timestamp = timestamp;
    17. current_timestamp_group_.first_arrival_ms = arrival_time_ms;
    18. } else if (!PacketInOrder(timestamp)) {
    19. return false;
    20. } else if (NewTimestampGroup(arrival_time_ms, timestamp)) {
    21. // First packet of a later frame, the previous frame sample is ready.
    22. if (prev_timestamp_group_.complete_time_ms >= 0) {
    23. *timestamp_delta =
    24. current_timestamp_group_.timestamp - prev_timestamp_group_.timestamp;
    25. *arrival_time_delta_ms = current_timestamp_group_.complete_time_ms -
    26. prev_timestamp_group_.complete_time_ms;
    27. // Check system time differences to see if we have an unproportional jump
    28. // in arrival time. In that case reset the inter-arrival computations.
    29. int64_t system_time_delta_ms =
    30. current_timestamp_group_.last_system_time_ms -
    31. prev_timestamp_group_.last_system_time_ms;
    32. if (*arrival_time_delta_ms - system_time_delta_ms >=
    33. kArrivalTimeOffsetThresholdMs) {
    34. RTC_LOG(LS_WARNING)
    35. << "The arrival time clock offset has changed (diff = "
    36. << *arrival_time_delta_ms - system_time_delta_ms
    37. << " ms), resetting.";
    38. Reset();
    39. return false;
    40. }
    41. if (*arrival_time_delta_ms < 0) {
    42. // The group of packets has been reordered since receiving its local
    43. // arrival timestamp.
    44. ++num_consecutive_reordered_packets_;
    45. if (num_consecutive_reordered_packets_ >= kReorderedResetThreshold) {
    46. RTC_LOG(LS_WARNING)
    47. << "Packets are being reordered on the path from the "
    48. "socket to the bandwidth estimator. Ignoring this "
    49. "packet for bandwidth estimation, resetting.";
    50. Reset();
    51. }
    52. return false;
    53. } else {
    54. num_consecutive_reordered_packets_ = 0;
    55. }
    56. assert(*arrival_time_delta_ms >= 0);
    57. *packet_size_delta = static_cast<int>(current_timestamp_group_.size) -
    58. static_cast<int>(prev_timestamp_group_.size);
    59. calculated_deltas = true;
    60. }
    61. prev_timestamp_group_ = current_timestamp_group_;
    62. // The new timestamp is now the current frame.
    63. current_timestamp_group_.first_timestamp = timestamp;
    64. current_timestamp_group_.timestamp = timestamp;
    65. current_timestamp_group_.first_arrival_ms = arrival_time_ms;
    66. current_timestamp_group_.size = 0;
    67. } else {
    68. current_timestamp_group_.timestamp =
    69. LatestTimestamp(current_timestamp_group_.timestamp, timestamp);
    70. }
    71. // Accumulate the frame size.
    72. current_timestamp_group_.size += packet_size;
    73. current_timestamp_group_.complete_time_ms = arrival_time_ms;
    74. current_timestamp_group_.last_system_time_ms = system_time_ms;
    75. return calculated_deltas;
    76. }

            current_timestamp_group_ 是当前收包的这组包的信息,prev_timestamp_group_ 为上一组收齐的包的信息,它们的类型为 TimestampGroup,字段含义解释如下。

            首先如果是这组包的第一个包,先记录 first_timestamp,first_arrival_ms 等信息,并更新这组包的 size,timetamp,complete_time_ms,last_system_time_ms,之后再收到包会先判断该包的发送时间戳是否大于这组包首包的发送时间戳,如果是则会统计到这组包中,更新 timestamp,size,complete_time_ms 和 last_system_time_ms 信息,否则忽略该包。

            如果判断到 NewTimestampGroup(arrival_time_ms, timestamp),说明该包已经是新的一组包了,此时计算 current_timestamp_group_ 与 prev_timestamp_group_ 的接收时间差(arrival_time_delta_ms),发送时间差(timestamp_delta)以及组包间的包大小差值(packet_size_delta),之后送入 OveruseEstimator 判断当前延时梯度

    备注:包属于新的一组包的判断逻辑是当前包的发送时间戳与这组包首包发送时间戳绝对时间大于 5ms,之所以这样判断是因为 WebRTC 发送端有个平滑发送模块,它的发送时间间隔是 5ms 发送一批包。

            OveruseEstimator::Update 函数用于估计延时梯度,它并不是直接使用上一次计算得到的延时梯度值,而是将延时梯度传入该函数,通过卡尔曼滤波算法后得到延时梯度值,本文不讲解卡尔曼滤波算法细节,后续文章会单独说明该算法实现。

    1. void OveruseEstimator::Update(int64_t t_delta,
    2. double ts_delta,
    3. int size_delta,
    4. BandwidthUsage current_hypothesis,
    5. int64_t now_ms) {
    6. // 代码省略,详见 src/modules/remote_bitrate_estimator/overuse_estimator.cc
    7. }

    (2)Overuse Detector

            OveruseDetector::Detect 函数会判断当前带宽的使用状态,它根据延时梯度 T 与动态阈值的大小关系判断当前处于链路带宽处于 overuse/normal/underuse 状态,动态阈值 threshold_ 将在下一小节 Adaptive threshold 中讲解。

    a. 如果 T > threshold_,说明网络网络拥塞队列在增大,目前处于拥塞状态,如果拥塞持续时间大于 overusing_time_threshold_,并且延时梯度比上一次延时梯度大,判断处于 overuse 状态,注意不是一旦大于阈值就判断处于 overuse,需要持续一段时间并且延时梯度在变大才判断处于 overuse

    b. 如果 T < -threshold_,说明网络拥塞队列在变小,拥塞情况在改善,判断处于 underuse 状态

    c. 如果 -threshold_ <= T <= threshold_,判断处于 normal 状态

    (3)Adaptive threshold

            如上所述,过载检测器通过比较延时梯度与阈值的大小关系判断当前的带宽使用状况,理想网络情况下延时梯度为 0,但是即便正常的带宽占用情况下,延时梯度也可能在 0 上下波动,因此阈值的设置很重要,如果阈值是固定值,设置太大可能检测不到网络拥塞,设置太小可能又太过敏感,因此 WebRTC 使用了一种自适应动态阈值的方式。

    计算方式:threshold(t(i)) = threshold(t(i-1)) + k * [t(i) - t(i-1)] * ( | d(t(i)) | - threshold(t(i-1)) )

    其中 k 表示变化率,当 | d(t(i)) | < threshold(t(i-1)) 时,k 值为 0.00018,否则 k 值为 0.01,

    threshold(t(i)) 表示当我们计算第 i 组包后需要新确定的阈值,threshold(t(i-1)) 表示计算第 i-1 组包后确定的阈值,t(i) - t(i-1) 表示两组包计算延时梯度的时间差,d(t(i)) 表示当前算出的延时梯度。

            从计算方式可以看到,当处于 normal 状态时,阈值会以一个较小的变化率减小,当处于 overuse/underuse 时,阈值会以一个相对大一点的变化率增大。

    (4)Remote Rate Controller

    通过 Overuse Detector 确定当前处于 overuse/normal/underuse 状态后,需要根据当前状态对最大码率值做出调整,如下图所示。

    当处于 overuse 状态,对应处于 Decr 状态,此时应该降低最大码率值,降低为过去 500ms 时间窗内最大 acked_bitrate 的 0.85 倍,acked_bitrate 可以通过 RTCP 反馈报文的包接收情况并结合本地维护的发送列表得到

    当处于 underuse 状态,对应 Hold 状态,此时应该维持当前最大码率不变

    当处于 normal 状态,对应 Incr,此时可以适当增大码率,增大为原来最大码率值的 1.08 倍

    WebRTC 对应的 Rate Controller 调整最大码率的代码如下。

    1. void AimdRateControl::ChangeBitrate(const RateControlInput& input,
    2. Timestamp at_time) {
    3. absl::optional new_bitrate;
    4. DataRate estimated_throughput =
    5. input.estimated_throughput.value_or(latest_estimated_throughput_);
    6. if (input.estimated_throughput)
    7. latest_estimated_throughput_ = *input.estimated_throughput;
    8. // An over-use should always trigger us to reduce the bitrate, even though
    9. // we have not yet established our first estimate. By acting on the over-use,
    10. // we will end up with a valid estimate.
    11. if (!bitrate_is_initialized_ &&
    12. input.bw_state != BandwidthUsage::kBwOverusing)
    13. return;
    14. ChangeState(input, at_time);
    15. // We limit the new bitrate based on the troughput to avoid unlimited bitrate
    16. // increases. We allow a bit more lag at very low rates to not too easily get
    17. // stuck if the encoder produces uneven outputs.
    18. const DataRate troughput_based_limit =
    19. 1.5 * estimated_throughput + DataRate::KilobitsPerSec(10);
    20. switch (rate_control_state_) {
    21. case kRcHold:
    22. break;
    23. case kRcIncrease:
    24. if (estimated_throughput > link_capacity_.UpperBound())
    25. link_capacity_.Reset();
    26. // Do not increase the delay based estimate in alr since the estimator
    27. // will not be able to get transport feedback necessary to detect if
    28. // the new estimate is correct.
    29. // If we have previously increased above the limit (for instance due to
    30. // probing), we don't allow further changes.
    31. if (current_bitrate_ < troughput_based_limit &&
    32. !(send_side_ && in_alr_ && no_bitrate_increase_in_alr_)) {
    33. DataRate increased_bitrate = DataRate::MinusInfinity();
    34. if (link_capacity_.has_estimate()) {
    35. // The link_capacity estimate is reset if the measured throughput
    36. // is too far from the estimate. We can therefore assume that our
    37. // target rate is reasonably close to link capacity and use additive
    38. // increase.
    39. DataRate additive_increase =
    40. AdditiveRateIncrease(at_time, time_last_bitrate_change_);
    41. increased_bitrate = current_bitrate_ + additive_increase;
    42. } else {
    43. // If we don't have an estimate of the link capacity, use faster ramp
    44. // up to discover the capacity.
    45. DataRate multiplicative_increase = MultiplicativeRateIncrease(
    46. at_time, time_last_bitrate_change_, current_bitrate_);
    47. increased_bitrate = current_bitrate_ + multiplicative_increase;
    48. }
    49. new_bitrate = std::min(increased_bitrate, troughput_based_limit);
    50. }
    51. time_last_bitrate_change_ = at_time;
    52. break;
    53. case kRcDecrease: {
    54. DataRate decreased_bitrate = DataRate::PlusInfinity();
    55. // Set bit rate to something slightly lower than the measured throughput
    56. // to get rid of any self-induced delay.
    57. decreased_bitrate = estimated_throughput * beta_;
    58. if (decreased_bitrate > current_bitrate_ && !link_capacity_fix_) {
    59. // TODO(terelius): The link_capacity estimate may be based on old
    60. // throughput measurements. Relying on them may lead to unnecessary
    61. // BWE drops.
    62. if (link_capacity_.has_estimate()) {
    63. decreased_bitrate = beta_ * link_capacity_.estimate();
    64. }
    65. }
    66. if (estimate_bounded_backoff_ && network_estimate_) {
    67. decreased_bitrate = std::max(
    68. decreased_bitrate, network_estimate_->link_capacity_lower * beta_);
    69. }
    70. // Avoid increasing the rate when over-using.
    71. if (decreased_bitrate < current_bitrate_) {
    72. new_bitrate = decreased_bitrate;
    73. }
    74. if (bitrate_is_initialized_ && estimated_throughput < current_bitrate_) {
    75. if (!new_bitrate.has_value()) {
    76. last_decrease_ = DataRate::Zero();
    77. } else {
    78. last_decrease_ = current_bitrate_ - *new_bitrate;
    79. }
    80. }
    81. if (estimated_throughput < link_capacity_.LowerBound()) {
    82. // The current throughput is far from the estimated link capacity. Clear
    83. // the estimate to allow an immediate update in OnOveruseDetected.
    84. link_capacity_.Reset();
    85. }
    86. bitrate_is_initialized_ = true;
    87. link_capacity_.OnOveruseDetected(estimated_throughput);
    88. // Stay on hold until the pipes are cleared.
    89. rate_control_state_ = kRcHold;
    90. time_last_bitrate_change_ = at_time;
    91. time_last_bitrate_decrease_ = at_time;
    92. break;
    93. }
    94. default:
    95. assert(false);
    96. }
    97. current_bitrate_ = ClampBitrate(new_bitrate.value_or(current_bitrate_));
    98. }

    (5)Remb Processing

            接收端根据 Remote Rate Controller 确定好新的最大接收码率值后需要通过 RTCP REMB 报文反馈给发送端。

            REMB 报文使用的是 PT=206,FMT=15 的 RTCP 报文,具体格式如下。

    SSRC of packet sender:接收端反馈该报文时,该值可以填为 0

    SSRC of media source:一般都为 0

    Unique identifier:REMB 报文的特殊标识,固定为 0x52454D42

    Num SSRC:SSRC feedback 字段中 SSRC 的个数

    BR Exp,BR Mantissa:二者共同表示反馈的最大码率值,Exp 表示指数部分,Mantissa 表示尾数部分

    SSRC feedback:发送端发送的流的 SSRC 列表

            WebRTC 中 RTCP REMB 报文一般是每 200ms 反馈一次,但是当检测到可用带宽小于上次预估的 97% 时则会立刻反馈。

    2. 发送端基于丢包的带宽预估

            发送端基于丢包的带宽预估思想主要是根据丢包率来判断是否拥塞。

            当丢包率大于 10% 时认为拥塞,此时应该主动降低发送码率减少拥塞;当丢包率小于 2% 时认为网络状况较好,可以适当提高发送码率,探测是否有更多的可用带宽;当丢包率介于 2% ~ 10% 时认为网络状况一般,此时保持与上一次相同的发送码率即可。

            对于丢包率的获取,发送端通过 RTCP RR 报文的 fraction lost 来判断,它描述了从上一次 RR 报文发送后到本次 RR 报文期间的丢包率。

             对于目标码率的调整方式,WebRTC 处理代码如下所示。 

            至此 REMB-GCC 接收端和发送端预估码率并确定最终码率的逻辑已经讲解完成,目前 Google 已经放弃维护 REMB-GCC 算法,因为其预估逻辑分布在发送端和接收端,Google 推出了 TFB-GCC 以取代 REMB-GCC,TFB-GCC 接收端仅需要定期反馈收包的状况,不需要进行带宽预估。预估带宽的逻辑都放在发送端计算,带宽预估的原理基本类似,TFB-GCC 介绍请参考这篇文章

    三. 参考资料

    A Google Congestion Control Algorithm for Real-Time Communication

    RTCP message for Receiver Estimated Maximum Bitrate

  • 相关阅读:
    通过代码查看EFCore的SQL语句
    百度发布Q3财报:AI原生应用驱动业绩增长 公司股价应声涨超5%
    Java武侠文字游戏
    类和对象【下】
    牵着她——表白代码(Python实现)
    Ubuntu16.04 设置静态 ip
    B站季报图解:营收58亿净亏收窄36% 日活突破9000万
    好书推荐《数据血缘分析原理与实践 》:数据治理神兵利器
    数论1---整除
    html——常用标签
  • 原文地址:https://blog.csdn.net/weixin_38102771/article/details/127780907