blob: 65990bb07cc8c7028a91c559e5a42fcf18188f97 [file] [log] [blame]
nisseb8f9a322017-03-27 05:36:15 -07001/*
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_
12#define CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_
nisseb8f9a322017-03-27 05:36:15 -070013
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020014#include "call/rtp_transport_controller_send_interface.h"
Mirko Bonadei71207422017-09-15 13:58:09 +020015#include "common_types.h" // NOLINT(build/include)
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020016#include "modules/congestion_controller/include/send_side_congestion_controller.h"
17#include "rtc_base/constructormagic.h"
nissecae45d02017-04-24 05:53:20 -070018
nisseb8f9a322017-03-27 05:36:15 -070019namespace webrtc {
nissecae45d02017-04-24 05:53:20 -070020class Clock;
21class RtcEventLog;
nisseb8f9a322017-03-27 05:36:15 -070022
nissecae45d02017-04-24 05:53:20 -070023// TODO(nisse): When we get the underlying transports here, we should
24// have one object implementing RtpTransportControllerSendInterface
25// per transport, sharing the same congestion controller.
26class RtpTransportControllerSend : public RtpTransportControllerSendInterface {
nisseb8f9a322017-03-27 05:36:15 -070027 public:
nissecae45d02017-04-24 05:53:20 -070028 RtpTransportControllerSend(Clock* clock, webrtc::RtcEventLog* event_log);
nisseb8f9a322017-03-27 05:36:15 -070029
nissecae45d02017-04-24 05:53:20 -070030 // Implements RtpTransportControllerSendInterface
nisse76e62b02017-05-31 02:24:52 -070031 PacketRouter* packet_router() override;
Stefan Holmer5c8942a2017-08-22 16:16:44 +020032 // TODO(holmer): Temporarily exposed, should be removed and the
33 // appropriate methods should be added to this class instead.
34 // In addition the PacedSender should be driven by this class, either
35 // by owning the process thread, or later by using a task queue.
36 PacedSender* pacer() override;
nisse76e62b02017-05-31 02:24:52 -070037 SendSideCongestionController* send_side_cc() override;
38 TransportFeedbackObserver* transport_feedback_observer() override;
39 RtpPacketSender* packet_sender() override;
sprangdb2a9fc2017-08-09 06:42:32 -070040 const RtpKeepAliveConfig& keepalive_config() const override;
41
Stefan Holmer5c8942a2017-08-22 16:16:44 +020042 void SetAllocatedSendBitrateLimits(int min_send_bitrate_bps,
43 int max_padding_bitrate_bps) override;
44
sprangdb2a9fc2017-08-09 06:42:32 -070045 void SetKeepAliveConfig(const RtpKeepAliveConfig& config);
nissecae45d02017-04-24 05:53:20 -070046
47 private:
48 PacketRouter packet_router_;
Stefan Holmer5c8942a2017-08-22 16:16:44 +020049 PacedSender pacer_;
nissecae45d02017-04-24 05:53:20 -070050 SendSideCongestionController send_side_cc_;
sprangdb2a9fc2017-08-09 06:42:32 -070051 RtpKeepAliveConfig keepalive_;
nissecae45d02017-04-24 05:53:20 -070052
53 RTC_DISALLOW_COPY_AND_ASSIGN(RtpTransportControllerSend);
nisseb8f9a322017-03-27 05:36:15 -070054};
55
56} // namespace webrtc
57
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020058#endif // CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_