Index: webrtc/modules/pacing/packet_router.cc |
diff --git a/webrtc/modules/pacing/packet_router.cc b/webrtc/modules/pacing/packet_router.cc |
index ab86bfa4bd82551f8014cd5652540e743577ce8d..c0320875fefac8f932b90f1cb74b72075a1e7fd2 100644 |
--- a/webrtc/modules/pacing/packet_router.cc |
+++ b/webrtc/modules/pacing/packet_router.cc |
@@ -12,6 +12,7 @@ |
#include "webrtc/base/atomicops.h" |
#include "webrtc/base/checks.h" |
+#include "webrtc/base/timeutils.h" |
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h" |
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
#include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h" |
@@ -121,7 +122,52 @@ uint16_t PacketRouter::AllocateSequenceNumber() { |
return new_seq; |
} |
-bool PacketRouter::SendFeedback(rtcp::TransportFeedback* packet) { |
+void PacketRouter::OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs, |
+ uint32_t bitrate_bps) { |
+ const int kRembSendIntervalMs = 200; |
+ |
+ // % threshold for if we should send a new REMB asap. |
+ const uint32_t kSendThresholdPercent = 97; |
+ |
+ int64_t now_ms = rtc::TimeMillis(); |
+ { |
+ rtc::CritScope lock(&remb_crit_); |
+ |
+ // If we already have an estimate, check if the new total estimate is below |
+ // kSendThresholdPercent of the previous estimate. |
+ if (last_send_bitrate_bps_ > 0) { |
+ uint32_t new_remb_bitrate_bps = |
+ last_send_bitrate_bps_ - bitrate_bps_ + bitrate_bps; |
+ |
+ if (new_remb_bitrate_bps < |
+ kSendThresholdPercent * last_send_bitrate_bps_ / 100) { |
+ // The new bitrate estimate is less than kSendThresholdPercent % of the |
+ // last report. Send a REMB asap. |
+ last_remb_time_ms_ = now_ms - kRembSendIntervalMs; |
+ } |
+ } |
+ bitrate_bps_ = bitrate_bps; |
+ |
+ if (now_ms - last_remb_time_ms_ < kRembSendIntervalMs) { |
+ return; |
+ } |
+ // NOTE: Updated if we intend to send the data; we might not have |
+ // a module to actually send it. |
+ last_remb_time_ms_ = now_ms; |
+ last_send_bitrate_bps_ = bitrate_bps; |
+ } |
+ { |
danilchap
2017/04/03 16:31:34
Do you mind splitting this block into own public f
nisse-webrtc
2017/04/04 09:46:44
Not at all. (If possible, I'd actually prefer to n
danilchap
2017/04/04 10:18:27
not strictly needed, but this is one of the way to
|
+ rtc::CritScope lock(&modules_crit_); |
+ // TODO(nisse): Check REMB status of the modules? Or add a loop, |
+ // similar to SendTransportFeedback below? |
+ if (!rtp_send_modules_.empty()) |
+ rtp_send_modules_.front()->SetREMBData(bitrate_bps, ssrcs); |
+ else if (!rtp_receive_modules_.empty()) |
+ rtp_receive_modules_.front()->SetREMBData(bitrate_bps, ssrcs); |
+ } |
+} |
+ |
+bool PacketRouter::SendTransportFeedback(rtcp::TransportFeedback* packet) { |
RTC_DCHECK(pacer_thread_checker_.CalledOnValidThread()); |
rtc::CritScope cs(&modules_crit_); |
// Prefer send modules. |