2015-03-26 11:11:06 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2015-11-16 11:12:24 +01:00
|
|
|
#include "webrtc/modules/pacing/packet_router.h"
|
2015-03-26 11:11:06 +01:00
|
|
|
|
2015-08-03 04:38:41 -07:00
|
|
|
#include "webrtc/base/atomicops.h"
|
2015-03-26 11:11:06 +01:00
|
|
|
#include "webrtc/base/checks.h"
|
2017-04-18 23:38:35 -07:00
|
|
|
#include "webrtc/base/timeutils.h"
|
2015-11-04 08:31:52 +01:00
|
|
|
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
|
|
|
|
|
#include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
2015-09-08 13:25:16 -07:00
|
|
|
#include "webrtc/modules/rtp_rtcp/source/rtcp_packet/transport_feedback.h"
|
2015-03-26 11:11:06 +01:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2017-04-18 23:38:35 -07:00
|
|
|
PacketRouter::PacketRouter()
|
|
|
|
|
: last_remb_time_ms_(rtc::TimeMillis()),
|
|
|
|
|
last_send_bitrate_bps_(0),
|
|
|
|
|
transport_seq_(0) {
|
2016-02-01 04:39:55 -08:00
|
|
|
pacer_thread_checker_.DetachFromThread();
|
2015-12-07 14:29:14 -08:00
|
|
|
}
|
2015-03-26 11:11:06 +01:00
|
|
|
|
|
|
|
|
PacketRouter::~PacketRouter() {
|
2017-03-31 05:44:52 -07:00
|
|
|
RTC_DCHECK(rtp_send_modules_.empty());
|
|
|
|
|
RTC_DCHECK(rtp_receive_modules_.empty());
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
|
|
|
|
|
2017-03-31 05:44:52 -07:00
|
|
|
void PacketRouter::AddSendRtpModule(RtpRtcp* rtp_module) {
|
2016-02-01 04:39:55 -08:00
|
|
|
rtc::CritScope cs(&modules_crit_);
|
2017-03-31 05:44:52 -07:00
|
|
|
RTC_DCHECK(std::find(rtp_send_modules_.begin(), rtp_send_modules_.end(),
|
|
|
|
|
rtp_module) == rtp_send_modules_.end());
|
2017-04-18 23:38:35 -07:00
|
|
|
if (rtp_send_modules_.empty() && !rtp_receive_modules_.empty()) {
|
|
|
|
|
rtp_receive_modules_.front()->SetREMBStatus(false);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-27 07:12:16 -08:00
|
|
|
// Put modules which can use regular payload packets (over rtx) instead of
|
|
|
|
|
// padding first as it's less of a waste
|
|
|
|
|
if ((rtp_module->RtxSendStatus() & kRtxRedundantPayloads) > 0) {
|
2017-04-18 23:38:35 -07:00
|
|
|
if (!rtp_send_modules_.empty()) {
|
|
|
|
|
rtp_send_modules_.front()->SetREMBStatus(false);
|
|
|
|
|
}
|
2017-03-31 05:44:52 -07:00
|
|
|
rtp_send_modules_.push_front(rtp_module);
|
2017-04-18 23:38:35 -07:00
|
|
|
rtp_module->SetREMBStatus(true);
|
2017-01-27 07:12:16 -08:00
|
|
|
} else {
|
2017-04-18 23:38:35 -07:00
|
|
|
if (rtp_send_modules_.empty()) {
|
|
|
|
|
rtp_module->SetREMBStatus(true);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 05:44:52 -07:00
|
|
|
rtp_send_modules_.push_back(rtp_module);
|
2017-01-27 07:12:16 -08:00
|
|
|
}
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
|
|
|
|
|
2017-03-31 05:44:52 -07:00
|
|
|
void PacketRouter::RemoveSendRtpModule(RtpRtcp* rtp_module) {
|
2016-02-01 04:39:55 -08:00
|
|
|
rtc::CritScope cs(&modules_crit_);
|
2017-03-31 05:44:52 -07:00
|
|
|
RTC_DCHECK(std::find(rtp_send_modules_.begin(), rtp_send_modules_.end(),
|
|
|
|
|
rtp_module) != rtp_send_modules_.end());
|
|
|
|
|
rtp_send_modules_.remove(rtp_module);
|
2017-04-18 23:38:35 -07:00
|
|
|
rtp_module->SetREMBStatus(false);
|
|
|
|
|
if (!rtp_send_modules_.empty()) {
|
|
|
|
|
rtp_send_modules_.front()->SetREMBStatus(true);
|
|
|
|
|
} else if (!rtp_receive_modules_.empty()) {
|
|
|
|
|
rtp_receive_modules_.front()->SetREMBStatus(true);
|
|
|
|
|
}
|
2017-03-31 05:44:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PacketRouter::AddReceiveRtpModule(RtpRtcp* rtp_module) {
|
|
|
|
|
rtc::CritScope cs(&modules_crit_);
|
|
|
|
|
RTC_DCHECK(std::find(rtp_receive_modules_.begin(), rtp_receive_modules_.end(),
|
|
|
|
|
rtp_module) == rtp_receive_modules_.end());
|
2017-04-18 23:38:35 -07:00
|
|
|
if (rtp_send_modules_.empty() && rtp_receive_modules_.empty()) {
|
|
|
|
|
rtp_module->SetREMBStatus(true);
|
|
|
|
|
}
|
2017-03-31 05:44:52 -07:00
|
|
|
rtp_receive_modules_.push_back(rtp_module);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PacketRouter::RemoveReceiveRtpModule(RtpRtcp* rtp_module) {
|
|
|
|
|
rtc::CritScope cs(&modules_crit_);
|
|
|
|
|
const auto& it = std::find(rtp_receive_modules_.begin(),
|
|
|
|
|
rtp_receive_modules_.end(), rtp_module);
|
|
|
|
|
RTC_DCHECK(it != rtp_receive_modules_.end());
|
|
|
|
|
rtp_receive_modules_.erase(it);
|
2017-04-18 23:38:35 -07:00
|
|
|
if (rtp_send_modules_.empty()) {
|
|
|
|
|
rtp_module->SetREMBStatus(false);
|
|
|
|
|
if (!rtp_receive_modules_.empty()) {
|
|
|
|
|
rtp_receive_modules_.front()->SetREMBStatus(true);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PacketRouter::TimeToSendPacket(uint32_t ssrc,
|
|
|
|
|
uint16_t sequence_number,
|
|
|
|
|
int64_t capture_timestamp,
|
2016-05-13 11:13:05 +02:00
|
|
|
bool retransmission,
|
2017-02-17 03:59:43 -08:00
|
|
|
const PacedPacketInfo& pacing_info) {
|
2016-02-01 04:39:55 -08:00
|
|
|
RTC_DCHECK(pacer_thread_checker_.CalledOnValidThread());
|
|
|
|
|
rtc::CritScope cs(&modules_crit_);
|
2017-03-31 05:44:52 -07:00
|
|
|
for (auto* rtp_module : rtp_send_modules_) {
|
2016-11-14 05:14:50 -08:00
|
|
|
if (!rtp_module->SendingMedia())
|
|
|
|
|
continue;
|
|
|
|
|
if (ssrc == rtp_module->SSRC() || ssrc == rtp_module->FlexfecSsrc()) {
|
2015-03-26 11:11:06 +01:00
|
|
|
return rtp_module->TimeToSendPacket(ssrc, sequence_number,
|
2016-06-01 06:31:17 -07:00
|
|
|
capture_timestamp, retransmission,
|
2017-02-17 03:59:43 -08:00
|
|
|
pacing_info);
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-01 06:31:17 -07:00
|
|
|
size_t PacketRouter::TimeToSendPadding(size_t bytes_to_send,
|
2017-02-17 03:59:43 -08:00
|
|
|
const PacedPacketInfo& pacing_info) {
|
2016-02-01 04:39:55 -08:00
|
|
|
RTC_DCHECK(pacer_thread_checker_.CalledOnValidThread());
|
2015-08-03 04:38:41 -07:00
|
|
|
size_t total_bytes_sent = 0;
|
2016-02-01 04:39:55 -08:00
|
|
|
rtc::CritScope cs(&modules_crit_);
|
2017-01-27 07:12:16 -08:00
|
|
|
// Rtp modules are ordered by which stream can most benefit from padding.
|
2017-03-31 05:44:52 -07:00
|
|
|
for (RtpRtcp* module : rtp_send_modules_) {
|
2017-02-03 08:13:57 -08:00
|
|
|
if (module->SendingMedia() && module->HasBweExtensions()) {
|
2016-06-01 06:31:17 -07:00
|
|
|
size_t bytes_sent = module->TimeToSendPadding(
|
2017-02-17 03:59:43 -08:00
|
|
|
bytes_to_send - total_bytes_sent, pacing_info);
|
2015-08-03 04:38:41 -07:00
|
|
|
total_bytes_sent += bytes_sent;
|
|
|
|
|
if (total_bytes_sent >= bytes_to_send)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
2015-08-03 04:38:41 -07:00
|
|
|
return total_bytes_sent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PacketRouter::SetTransportWideSequenceNumber(uint16_t sequence_number) {
|
2015-12-07 14:29:14 -08:00
|
|
|
rtc::AtomicOps::ReleaseStore(&transport_seq_, sequence_number);
|
2015-03-26 11:11:06 +01:00
|
|
|
}
|
2015-08-03 04:38:41 -07:00
|
|
|
|
|
|
|
|
uint16_t PacketRouter::AllocateSequenceNumber() {
|
2015-12-07 14:29:14 -08:00
|
|
|
int prev_seq = rtc::AtomicOps::AcquireLoad(&transport_seq_);
|
2015-08-03 04:38:41 -07:00
|
|
|
int desired_prev_seq;
|
|
|
|
|
int new_seq;
|
|
|
|
|
do {
|
|
|
|
|
desired_prev_seq = prev_seq;
|
|
|
|
|
new_seq = (desired_prev_seq + 1) & 0xFFFF;
|
|
|
|
|
// Note: CompareAndSwap returns the actual value of transport_seq at the
|
|
|
|
|
// time the CAS operation was executed. Thus, if prev_seq is returned, the
|
|
|
|
|
// operation was successful - otherwise we need to retry. Saving the
|
|
|
|
|
// return value saves us a load on retry.
|
2015-12-07 14:29:14 -08:00
|
|
|
prev_seq = rtc::AtomicOps::CompareAndSwap(&transport_seq_, desired_prev_seq,
|
2015-08-03 04:38:41 -07:00
|
|
|
new_seq);
|
|
|
|
|
} while (prev_seq != desired_prev_seq);
|
|
|
|
|
|
|
|
|
|
return new_seq;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-18 23:38:35 -07:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
SendRemb(bitrate_bps, ssrcs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PacketRouter::SendRemb(uint32_t bitrate_bps,
|
|
|
|
|
const std::vector<uint32_t>& ssrcs) {
|
|
|
|
|
rtc::CritScope lock(&modules_crit_);
|
|
|
|
|
RtpRtcp* remb_module;
|
|
|
|
|
if (!rtp_send_modules_.empty())
|
|
|
|
|
remb_module = rtp_send_modules_.front();
|
|
|
|
|
else if (!rtp_receive_modules_.empty())
|
|
|
|
|
remb_module = rtp_receive_modules_.front();
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
// The Add* and Remove* methods above ensure that this (and only this) module
|
|
|
|
|
// has REMB enabled. REMB should be disabled on all other modules, because
|
|
|
|
|
// otherwise, they will send REMB with stale info.
|
|
|
|
|
RTC_DCHECK(remb_module->REMB());
|
|
|
|
|
remb_module->SetREMBData(bitrate_bps, ssrcs);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool PacketRouter::SendTransportFeedback(rtcp::TransportFeedback* packet) {
|
2017-03-31 05:44:52 -07:00
|
|
|
RTC_DCHECK(pacer_thread_checker_.CalledOnValidThread());
|
2016-02-01 04:39:55 -08:00
|
|
|
rtc::CritScope cs(&modules_crit_);
|
2017-03-31 05:44:52 -07:00
|
|
|
// Prefer send modules.
|
|
|
|
|
for (auto* rtp_module : rtp_send_modules_) {
|
|
|
|
|
packet->SetSenderSsrc(rtp_module->SSRC());
|
|
|
|
|
if (rtp_module->SendFeedbackPacket(*packet))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
for (auto* rtp_module : rtp_receive_modules_) {
|
2016-09-27 09:27:47 -07:00
|
|
|
packet->SetSenderSsrc(rtp_module->SSRC());
|
2016-02-25 16:56:48 +01:00
|
|
|
if (rtp_module->SendFeedbackPacket(*packet))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2015-09-08 13:25:16 -07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-26 11:11:06 +01:00
|
|
|
} // namespace webrtc
|