2017-04-24 05:53:20 -07:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2017 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "call/rtp_transport_controller_send.h"
|
2017-04-24 05:53:20 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
RtpTransportControllerSend::RtpTransportControllerSend(
|
|
|
|
|
Clock* clock,
|
|
|
|
|
webrtc::RtcEventLog* event_log)
|
2017-08-22 16:16:44 +02:00
|
|
|
: pacer_(clock, &packet_router_, event_log),
|
|
|
|
|
send_side_cc_(clock, nullptr /* observer */, event_log, &pacer_) {}
|
2017-04-24 05:53:20 -07:00
|
|
|
|
2017-05-31 02:24:52 -07:00
|
|
|
PacketRouter* RtpTransportControllerSend::packet_router() {
|
|
|
|
|
return &packet_router_;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 16:16:44 +02:00
|
|
|
PacedSender* RtpTransportControllerSend::pacer() {
|
|
|
|
|
return &pacer_;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-31 02:24:52 -07:00
|
|
|
SendSideCongestionController* RtpTransportControllerSend::send_side_cc() {
|
|
|
|
|
return &send_side_cc_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TransportFeedbackObserver*
|
|
|
|
|
RtpTransportControllerSend::transport_feedback_observer() {
|
|
|
|
|
return &send_side_cc_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RtpPacketSender* RtpTransportControllerSend::packet_sender() {
|
2017-08-22 16:16:44 +02:00
|
|
|
return &pacer_;
|
2017-05-31 02:24:52 -07:00
|
|
|
}
|
|
|
|
|
|
2017-08-09 06:42:32 -07:00
|
|
|
const RtpKeepAliveConfig& RtpTransportControllerSend::keepalive_config() const {
|
|
|
|
|
return keepalive_;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-22 16:16:44 +02:00
|
|
|
void RtpTransportControllerSend::SetAllocatedSendBitrateLimits(
|
|
|
|
|
int min_send_bitrate_bps,
|
|
|
|
|
int max_padding_bitrate_bps) {
|
|
|
|
|
pacer_.SetSendBitrateLimits(min_send_bitrate_bps, max_padding_bitrate_bps);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-09 06:42:32 -07:00
|
|
|
void RtpTransportControllerSend::SetKeepAliveConfig(
|
|
|
|
|
const RtpKeepAliveConfig& config) {
|
|
|
|
|
keepalive_ = config;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-24 05:53:20 -07:00
|
|
|
} // namespace webrtc
|