OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 } | 47 } |
48 void SetRtcpPacketTransport(rtc::PacketTransportInternal* rtcp); | 48 void SetRtcpPacketTransport(rtc::PacketTransportInternal* rtcp); |
49 | 49 |
50 PacketTransportInterface* GetRtpPacketTransport() const override; | 50 PacketTransportInterface* GetRtpPacketTransport() const override; |
51 PacketTransportInterface* GetRtcpPacketTransport() const override; | 51 PacketTransportInterface* GetRtcpPacketTransport() const override; |
52 | 52 |
53 // TODO(zstein): Use these RtcpParameters for configuration elsewhere. | 53 // TODO(zstein): Use these RtcpParameters for configuration elsewhere. |
54 RTCError SetRtcpParameters(const RtcpParameters& parameters) override; | 54 RTCError SetRtcpParameters(const RtcpParameters& parameters) override; |
55 RtcpParameters GetRtcpParameters() const override; | 55 RtcpParameters GetRtcpParameters() const override; |
56 | 56 |
| 57 RTCError SetRtpTransportParameters( |
| 58 const RtpTransportParameters& parameters) override; |
| 59 RtpTransportParameters GetRtpTransportParameters() const override; |
| 60 |
57 // Called whenever a transport's ready-to-send state changes. The argument | 61 // Called whenever a transport's ready-to-send state changes. The argument |
58 // is true if all used transports are ready to send. This is more specific | 62 // is true if all used transports are ready to send. This is more specific |
59 // than just "writable"; it means the last send didn't return ENOTCONN. | 63 // than just "writable"; it means the last send didn't return ENOTCONN. |
60 sigslot::signal1<bool> SignalReadyToSend; | 64 sigslot::signal1<bool> SignalReadyToSend; |
61 | 65 |
62 bool IsWritable(bool rtcp) const; | 66 bool IsWritable(bool rtcp) const; |
63 | 67 |
64 bool SendPacket(bool rtcp, | 68 bool SendPacket(bool rtcp, |
65 const rtc::CopyOnWriteBuffer* packet, | 69 const rtc::CopyOnWriteBuffer* packet, |
66 const rtc::PacketOptions& options, | 70 const rtc::PacketOptions& options, |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 bool rtcp_mux_enabled_; | 106 bool rtcp_mux_enabled_; |
103 | 107 |
104 rtc::PacketTransportInternal* rtp_packet_transport_ = nullptr; | 108 rtc::PacketTransportInternal* rtp_packet_transport_ = nullptr; |
105 rtc::PacketTransportInternal* rtcp_packet_transport_ = nullptr; | 109 rtc::PacketTransportInternal* rtcp_packet_transport_ = nullptr; |
106 | 110 |
107 bool ready_to_send_ = false; | 111 bool ready_to_send_ = false; |
108 bool rtp_ready_to_send_ = false; | 112 bool rtp_ready_to_send_ = false; |
109 bool rtcp_ready_to_send_ = false; | 113 bool rtcp_ready_to_send_ = false; |
110 | 114 |
111 RtcpParameters rtcp_parameters_; | 115 RtcpParameters rtcp_parameters_; |
| 116 RtpTransportParameters rtp_transport_parameters_; |
112 | 117 |
113 cricket::BundleFilter bundle_filter_; | 118 cricket::BundleFilter bundle_filter_; |
114 }; | 119 }; |
115 | 120 |
116 } // namespace webrtc | 121 } // namespace webrtc |
117 | 122 |
118 #endif // WEBRTC_PC_RTPTRANSPORT_H_ | 123 #endif // WEBRTC_PC_RTPTRANSPORT_H_ |
OLD | NEW |