nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 14 | #include "webrtc/call/rtp_transport_controller_send_interface.h" |
sprang | db2a9fc | 2017-08-09 06:42:32 -0700 | [diff] [blame^] | 15 | #include "webrtc/common_types.h" |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 16 | #include "webrtc/modules/congestion_controller/include/send_side_congestion_controller.h" |
Edward Lemur | c20978e | 2017-07-06 19:44:34 +0200 | [diff] [blame] | 17 | #include "webrtc/rtc_base/constructormagic.h" |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 18 | |
nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 19 | namespace webrtc { |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 20 | class Clock; |
| 21 | class RtcEventLog; |
nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 22 | |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 23 | // 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. |
| 26 | class RtpTransportControllerSend : public RtpTransportControllerSendInterface { |
nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 27 | public: |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 28 | RtpTransportControllerSend(Clock* clock, webrtc::RtcEventLog* event_log); |
nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 29 | |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 30 | // Implements RtpTransportControllerSendInterface |
nisse | 76e62b0 | 2017-05-31 02:24:52 -0700 | [diff] [blame] | 31 | PacketRouter* packet_router() override; |
| 32 | SendSideCongestionController* send_side_cc() override; |
| 33 | TransportFeedbackObserver* transport_feedback_observer() override; |
| 34 | RtpPacketSender* packet_sender() override; |
sprang | db2a9fc | 2017-08-09 06:42:32 -0700 | [diff] [blame^] | 35 | const RtpKeepAliveConfig& keepalive_config() const override; |
| 36 | |
| 37 | void SetKeepAliveConfig(const RtpKeepAliveConfig& config); |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 38 | |
| 39 | private: |
| 40 | PacketRouter packet_router_; |
| 41 | SendSideCongestionController send_side_cc_; |
sprang | db2a9fc | 2017-08-09 06:42:32 -0700 | [diff] [blame^] | 42 | RtpKeepAliveConfig keepalive_; |
nisse | cae45d0 | 2017-04-24 05:53:20 -0700 | [diff] [blame] | 43 | |
| 44 | RTC_DISALLOW_COPY_AND_ASSIGN(RtpTransportControllerSend); |
nisse | b8f9a32 | 2017-03-27 05:36:15 -0700 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | } // namespace webrtc |
| 48 | |
| 49 | #endif // WEBRTC_CALL_RTP_TRANSPORT_CONTROLLER_SEND_H_ |