blob: cec8a745785a333a1fff618008d3c43330f32816 [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
11#ifndef WEBRTC_CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_
12#define WEBRTC_CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_
13
nissecae45d02017-04-24 05:53:20 -070014#include "webrtc/base/constructormagic.h"
15#include "webrtc/call/rtp_transport_controller_send_interface.h"
16#include "webrtc/modules/congestion_controller/include/send_side_congestion_controller.h"
17
nisseb8f9a322017-03-27 05:36:15 -070018namespace webrtc {
nissecae45d02017-04-24 05:53:20 -070019class Clock;
20class RtcEventLog;
nisseb8f9a322017-03-27 05:36:15 -070021
nissecae45d02017-04-24 05:53:20 -070022// TODO(nisse): When we get the underlying transports here, we should
23// have one object implementing RtpTransportControllerSendInterface
24// per transport, sharing the same congestion controller.
25class RtpTransportControllerSend : public RtpTransportControllerSendInterface {
nisseb8f9a322017-03-27 05:36:15 -070026 public:
nissecae45d02017-04-24 05:53:20 -070027 RtpTransportControllerSend(Clock* clock, webrtc::RtcEventLog* event_log);
nisseb8f9a322017-03-27 05:36:15 -070028
nissecae45d02017-04-24 05:53:20 -070029 // Implements RtpTransportControllerSendInterface
nisse76e62b02017-05-31 02:24:52 -070030 PacketRouter* packet_router() override;
31 SendSideCongestionController* send_side_cc() override;
32 TransportFeedbackObserver* transport_feedback_observer() override;
33 RtpPacketSender* packet_sender() override;
nissecae45d02017-04-24 05:53:20 -070034
35 private:
36 PacketRouter packet_router_;
37 SendSideCongestionController send_side_cc_;
38
39 RTC_DISALLOW_COPY_AND_ASSIGN(RtpTransportControllerSend);
nisseb8f9a322017-03-27 05:36:15 -070040};
41
42} // namespace webrtc
43
44#endif // WEBRTC_CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_