Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 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 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 11 | #ifndef PC_RTP_TRANSCEIVER_H_ |
| 12 | #define PC_RTP_TRANSCEIVER_H_ |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 13 | |
| 14 | #include <string> |
| 15 | #include <vector> |
| 16 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 17 | #include "api/rtp_transceiver_interface.h" |
Ruslan Burakov | 501bfba | 2019-02-11 10:29:19 +0100 | [diff] [blame] | 18 | #include "pc/channel_interface.h" |
Florent Castelli | 2d9d82e | 2019-04-23 19:25:51 +0200 | [diff] [blame] | 19 | #include "pc/channel_manager.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 20 | #include "pc/rtp_receiver.h" |
| 21 | #include "pc/rtp_sender.h" |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 22 | |
| 23 | namespace webrtc { |
| 24 | |
| 25 | // Implementation of the public RtpTransceiverInterface. |
| 26 | // |
| 27 | // The RtpTransceiverInterface is only intended to be used with a PeerConnection |
| 28 | // that enables Unified Plan SDP. Thus, the methods that only need to implement |
| 29 | // public API features and are not used internally can assume exactly one sender |
| 30 | // and receiver. |
| 31 | // |
| 32 | // Since the RtpTransceiver is used internally by PeerConnection for tracking |
| 33 | // RtpSenders, RtpReceivers, and BaseChannels, and PeerConnection needs to be |
| 34 | // backwards compatible with Plan B SDP, this implementation is more flexible |
| 35 | // than that required by the WebRTC specification. |
| 36 | // |
| 37 | // With Plan B SDP, an RtpTransceiver can have any number of senders and |
| 38 | // receivers which map to a=ssrc lines in the m= section. |
| 39 | // With Unified Plan SDP, an RtpTransceiver will have exactly one sender and one |
| 40 | // receiver which are encapsulated by the m= section. |
| 41 | // |
| 42 | // This class manages the RtpSenders, RtpReceivers, and BaseChannel associated |
| 43 | // with this m= section. Since the transceiver, senders, and receivers are |
| 44 | // reference counted and can be referenced from JavaScript (in Chromium), these |
| 45 | // objects must be ready to live for an arbitrary amount of time. The |
| 46 | // BaseChannel is not reference counted and is owned by the ChannelManager, so |
| 47 | // the PeerConnection must take care of creating/deleting the BaseChannel and |
| 48 | // setting the channel reference in the transceiver to null when it has been |
| 49 | // deleted. |
| 50 | // |
| 51 | // The RtpTransceiver is specialized to either audio or video according to the |
| 52 | // MediaType specified in the constructor. Audio RtpTransceivers will have |
| 53 | // AudioRtpSenders, AudioRtpReceivers, and a VoiceChannel. Video RtpTransceivers |
| 54 | // will have VideoRtpSenders, VideoRtpReceivers, and a VideoChannel. |
| 55 | class RtpTransceiver final |
Steve Anton | 6077675 | 2018-01-10 11:51:34 -0800 | [diff] [blame] | 56 | : public rtc::RefCountedObject<RtpTransceiverInterface>, |
| 57 | public sigslot::has_slots<> { |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 58 | public: |
Steve Anton | 79e7960 | 2017-11-20 10:25:56 -0800 | [diff] [blame] | 59 | // Construct a Plan B-style RtpTransceiver with no senders, receivers, or |
| 60 | // channel set. |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 61 | // |media_type| specifies the type of RtpTransceiver (and, by transitivity, |
| 62 | // the type of senders, receivers, and channel). Can either by audio or video. |
| 63 | explicit RtpTransceiver(cricket::MediaType media_type); |
Steve Anton | 79e7960 | 2017-11-20 10:25:56 -0800 | [diff] [blame] | 64 | // Construct a Unified Plan-style RtpTransceiver with the given sender and |
| 65 | // receiver. The media type will be derived from the media types of the sender |
| 66 | // and receiver. The sender and receiver should have the same media type. |
Markus Handell | 0357b3e | 2020-03-16 13:40:51 +0100 | [diff] [blame] | 67 | // |HeaderExtensionsToOffer| is used for initializing the return value of |
| 68 | // HeaderExtensionsToOffer(). |
Steve Anton | 79e7960 | 2017-11-20 10:25:56 -0800 | [diff] [blame] | 69 | RtpTransceiver( |
| 70 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender, |
| 71 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
Florent Castelli | 2d9d82e | 2019-04-23 19:25:51 +0200 | [diff] [blame] | 72 | receiver, |
Markus Handell | 0357b3e | 2020-03-16 13:40:51 +0100 | [diff] [blame] | 73 | cricket::ChannelManager* channel_manager, |
| 74 | std::vector<RtpHeaderExtensionCapability> HeaderExtensionsToOffer); |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 75 | ~RtpTransceiver() override; |
| 76 | |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 77 | // Returns the Voice/VideoChannel set for this transceiver. May be null if |
| 78 | // the transceiver is not in the currently set local/remote description. |
Amit Hilbuch | dd9390c | 2018-11-13 16:26:05 -0800 | [diff] [blame] | 79 | cricket::ChannelInterface* channel() const { return channel_; } |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 80 | |
| 81 | // Sets the Voice/VideoChannel. The caller must pass in the correct channel |
| 82 | // implementation based on the type of the transceiver. |
Amit Hilbuch | dd9390c | 2018-11-13 16:26:05 -0800 | [diff] [blame] | 83 | void SetChannel(cricket::ChannelInterface* channel); |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 84 | |
| 85 | // Adds an RtpSender of the appropriate type to be owned by this transceiver. |
| 86 | // Must not be null. |
| 87 | void AddSender( |
| 88 | rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender); |
| 89 | |
| 90 | // Removes the given RtpSender. Returns false if the sender is not owned by |
| 91 | // this transceiver. |
| 92 | bool RemoveSender(RtpSenderInterface* sender); |
| 93 | |
| 94 | // Returns a vector of the senders owned by this transceiver. |
| 95 | std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>> |
| 96 | senders() const { |
| 97 | return senders_; |
| 98 | } |
| 99 | |
| 100 | // Adds an RtpReceiver of the appropriate type to be owned by this |
| 101 | // transceiver. Must not be null. |
| 102 | void AddReceiver( |
| 103 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>> |
| 104 | receiver); |
| 105 | |
| 106 | // Removes the given RtpReceiver. Returns false if the sender is not owned by |
| 107 | // this transceiver. |
| 108 | bool RemoveReceiver(RtpReceiverInterface* receiver); |
| 109 | |
| 110 | // Returns a vector of the receivers owned by this transceiver. |
| 111 | std::vector< |
| 112 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
| 113 | receivers() const { |
| 114 | return receivers_; |
| 115 | } |
| 116 | |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 117 | // Returns the backing object for the transceiver's Unified Plan sender. |
| 118 | rtc::scoped_refptr<RtpSenderInternal> sender_internal() const; |
| 119 | |
| 120 | // Returns the backing object for the transceiver's Unified Plan receiver. |
| 121 | rtc::scoped_refptr<RtpReceiverInternal> receiver_internal() const; |
| 122 | |
Steve Anton | dcc3c02 | 2017-12-22 16:02:54 -0800 | [diff] [blame] | 123 | // RtpTransceivers are not associated until they have a corresponding media |
| 124 | // section set in SetLocalDescription or SetRemoteDescription. Therefore, |
| 125 | // when setting a local offer we need a way to remember which transceiver was |
| 126 | // used to create which media section in the offer. Storing the mline index |
| 127 | // in CreateOffer is specified in JSEP to allow us to do that. |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 128 | absl::optional<size_t> mline_index() const { return mline_index_; } |
| 129 | void set_mline_index(absl::optional<size_t> mline_index) { |
Steve Anton | dcc3c02 | 2017-12-22 16:02:54 -0800 | [diff] [blame] | 130 | mline_index_ = mline_index; |
| 131 | } |
| 132 | |
| 133 | // Sets the MID for this transceiver. If the MID is not null, then the |
| 134 | // transceiver is considered "associated" with the media section that has the |
| 135 | // same MID. |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 136 | void set_mid(const absl::optional<std::string>& mid) { mid_ = mid; } |
Steve Anton | dcc3c02 | 2017-12-22 16:02:54 -0800 | [diff] [blame] | 137 | |
| 138 | // Sets the intended direction for this transceiver. Intended to be used |
| 139 | // internally over SetDirection since this does not trigger a negotiation |
| 140 | // needed callback. |
| 141 | void set_direction(RtpTransceiverDirection direction) { |
| 142 | direction_ = direction; |
| 143 | } |
| 144 | |
| 145 | // Sets the current direction for this transceiver as negotiated in an offer/ |
| 146 | // answer exchange. The current direction is null before an answer with this |
| 147 | // transceiver has been set. |
| 148 | void set_current_direction(RtpTransceiverDirection direction); |
| 149 | |
Steve Anton | 0f5400a | 2018-07-17 14:25:36 -0700 | [diff] [blame] | 150 | // Sets the fired direction for this transceiver. The fired direction is null |
| 151 | // until SetRemoteDescription is called or an answer is set (either local or |
| 152 | // remote). |
| 153 | void set_fired_direction(RtpTransceiverDirection direction); |
| 154 | |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 155 | // According to JSEP rules for SetRemoteDescription, RtpTransceivers can be |
| 156 | // reused only if they were added by AddTrack. |
| 157 | void set_created_by_addtrack(bool created_by_addtrack) { |
| 158 | created_by_addtrack_ = created_by_addtrack; |
| 159 | } |
Eldar Rello | 353a718 | 2019-11-25 18:49:44 +0200 | [diff] [blame] | 160 | // If AddTrack has been called then transceiver can't be removed during |
| 161 | // rollback. |
| 162 | void set_reused_for_addtrack(bool reused_for_addtrack) { |
| 163 | reused_for_addtrack_ = reused_for_addtrack; |
| 164 | } |
| 165 | |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 166 | bool created_by_addtrack() const { return created_by_addtrack_; } |
| 167 | |
Eldar Rello | 353a718 | 2019-11-25 18:49:44 +0200 | [diff] [blame] | 168 | bool reused_for_addtrack() const { return reused_for_addtrack_; } |
| 169 | |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 170 | // Returns true if this transceiver has ever had the current direction set to |
| 171 | // sendonly or sendrecv. |
| 172 | bool has_ever_been_used_to_send() const { |
| 173 | return has_ever_been_used_to_send_; |
| 174 | } |
| 175 | |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 176 | // Informs the transceiver that its owning |
| 177 | // PeerConnection is closed. |
| 178 | void SetPeerConnectionClosed(); |
| 179 | |
Harald Alvestrand | c75c428 | 2020-08-26 12:17:54 +0000 | [diff] [blame] | 180 | // Executes the "stop the RTCRtpTransceiver" procedure from |
| 181 | // the webrtc-pc specification, described under the stop() method. |
| 182 | void StopTransceiverProcedure(); |
| 183 | |
Steve Anton | 52d8677 | 2018-02-20 15:48:12 -0800 | [diff] [blame] | 184 | // Fired when the RtpTransceiver state changes such that negotiation is now |
| 185 | // needed (e.g., in response to a direction change). |
| 186 | sigslot::signal0<> SignalNegotiationNeeded; |
| 187 | |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 188 | // RtpTransceiverInterface implementation. |
Steve Anton | 6947025 | 2018-02-09 11:43:08 -0800 | [diff] [blame] | 189 | cricket::MediaType media_type() const override; |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 190 | absl::optional<std::string> mid() const override; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 191 | rtc::scoped_refptr<RtpSenderInterface> sender() const override; |
| 192 | rtc::scoped_refptr<RtpReceiverInterface> receiver() const override; |
| 193 | bool stopped() const override; |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 194 | bool stopping() const override; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 195 | RtpTransceiverDirection direction() const override; |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 196 | RTCError SetDirectionWithError( |
| 197 | RtpTransceiverDirection new_direction) override; |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 198 | absl::optional<RtpTransceiverDirection> current_direction() const override; |
Steve Anton | 0f5400a | 2018-07-17 14:25:36 -0700 | [diff] [blame] | 199 | absl::optional<RtpTransceiverDirection> fired_direction() const override; |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 200 | RTCError StopStandard() override; |
| 201 | void StopInternal() override; |
Florent Castelli | 2d9d82e | 2019-04-23 19:25:51 +0200 | [diff] [blame] | 202 | RTCError SetCodecPreferences( |
| 203 | rtc::ArrayView<RtpCodecCapability> codecs) override; |
| 204 | std::vector<RtpCodecCapability> codec_preferences() const override { |
| 205 | return codec_preferences_; |
| 206 | } |
Markus Handell | 0357b3e | 2020-03-16 13:40:51 +0100 | [diff] [blame] | 207 | std::vector<RtpHeaderExtensionCapability> HeaderExtensionsToOffer() |
| 208 | const override; |
Markus Handell | 755c65d | 2020-06-24 01:06:10 +0200 | [diff] [blame] | 209 | RTCError SetOfferedRtpHeaderExtensions( |
| 210 | rtc::ArrayView<const RtpHeaderExtensionCapability> |
| 211 | header_extensions_to_offer) override; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 212 | |
| 213 | private: |
Amit Hilbuch | dd9390c | 2018-11-13 16:26:05 -0800 | [diff] [blame] | 214 | void OnFirstPacketReceived(cricket::ChannelInterface* channel); |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 215 | void StopSendingAndReceiving(); |
Steve Anton | 6077675 | 2018-01-10 11:51:34 -0800 | [diff] [blame] | 216 | |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 217 | // Enforce that this object is created, used and destroyed on one thread. |
| 218 | const TaskQueueBase* thread_; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 219 | const bool unified_plan_; |
| 220 | const cricket::MediaType media_type_; |
| 221 | std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>> |
| 222 | senders_; |
| 223 | std::vector< |
| 224 | rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>> |
| 225 | receivers_; |
| 226 | |
| 227 | bool stopped_ = false; |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 228 | bool stopping_ RTC_GUARDED_BY(thread_) = false; |
| 229 | bool is_pc_closed_ = false; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 230 | RtpTransceiverDirection direction_ = RtpTransceiverDirection::kInactive; |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 231 | absl::optional<RtpTransceiverDirection> current_direction_; |
Steve Anton | 0f5400a | 2018-07-17 14:25:36 -0700 | [diff] [blame] | 232 | absl::optional<RtpTransceiverDirection> fired_direction_; |
Danil Chapovalov | 66cadcc | 2018-06-19 16:47:43 +0200 | [diff] [blame] | 233 | absl::optional<std::string> mid_; |
| 234 | absl::optional<size_t> mline_index_; |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 235 | bool created_by_addtrack_ = false; |
Eldar Rello | 353a718 | 2019-11-25 18:49:44 +0200 | [diff] [blame] | 236 | bool reused_for_addtrack_ = false; |
Steve Anton | f9381f0 | 2017-12-14 10:23:57 -0800 | [diff] [blame] | 237 | bool has_ever_been_used_to_send_ = false; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 238 | |
Amit Hilbuch | dd9390c | 2018-11-13 16:26:05 -0800 | [diff] [blame] | 239 | cricket::ChannelInterface* channel_ = nullptr; |
Florent Castelli | 2d9d82e | 2019-04-23 19:25:51 +0200 | [diff] [blame] | 240 | cricket::ChannelManager* channel_manager_ = nullptr; |
| 241 | std::vector<RtpCodecCapability> codec_preferences_; |
Markus Handell | 755c65d | 2020-06-24 01:06:10 +0200 | [diff] [blame] | 242 | std::vector<RtpHeaderExtensionCapability> header_extensions_to_offer_; |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 243 | }; |
| 244 | |
| 245 | BEGIN_SIGNALING_PROXY_MAP(RtpTransceiver) |
| 246 | PROXY_SIGNALING_THREAD_DESTRUCTOR() |
Tomas Gunnarsson | fc83cdc | 2020-09-10 13:04:50 +0200 | [diff] [blame] | 247 | BYPASS_PROXY_CONSTMETHOD0(cricket::MediaType, media_type) |
Nico Weber | 22f9925 | 2019-02-20 10:13:16 -0500 | [diff] [blame] | 248 | PROXY_CONSTMETHOD0(absl::optional<std::string>, mid) |
| 249 | PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpSenderInterface>, sender) |
| 250 | PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpReceiverInterface>, receiver) |
| 251 | PROXY_CONSTMETHOD0(bool, stopped) |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 252 | PROXY_CONSTMETHOD0(bool, stopping) |
Nico Weber | 22f9925 | 2019-02-20 10:13:16 -0500 | [diff] [blame] | 253 | PROXY_CONSTMETHOD0(RtpTransceiverDirection, direction) |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 254 | PROXY_METHOD1(webrtc::RTCError, SetDirectionWithError, RtpTransceiverDirection) |
Nico Weber | 22f9925 | 2019-02-20 10:13:16 -0500 | [diff] [blame] | 255 | PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, current_direction) |
| 256 | PROXY_CONSTMETHOD0(absl::optional<RtpTransceiverDirection>, fired_direction) |
Harald Alvestrand | 6060df5 | 2020-08-11 09:54:02 +0200 | [diff] [blame] | 257 | PROXY_METHOD0(webrtc::RTCError, StopStandard) |
| 258 | PROXY_METHOD0(void, StopInternal) |
Florent Castelli | 2d9d82e | 2019-04-23 19:25:51 +0200 | [diff] [blame] | 259 | PROXY_METHOD1(webrtc::RTCError, |
| 260 | SetCodecPreferences, |
| 261 | rtc::ArrayView<RtpCodecCapability>) |
| 262 | PROXY_CONSTMETHOD0(std::vector<RtpCodecCapability>, codec_preferences) |
Markus Handell | 0357b3e | 2020-03-16 13:40:51 +0100 | [diff] [blame] | 263 | PROXY_CONSTMETHOD0(std::vector<RtpHeaderExtensionCapability>, |
| 264 | HeaderExtensionsToOffer) |
Markus Handell | 755c65d | 2020-06-24 01:06:10 +0200 | [diff] [blame] | 265 | PROXY_METHOD1(webrtc::RTCError, |
| 266 | SetOfferedRtpHeaderExtensions, |
| 267 | rtc::ArrayView<const RtpHeaderExtensionCapability>) |
Nico Weber | 22f9925 | 2019-02-20 10:13:16 -0500 | [diff] [blame] | 268 | END_PROXY_MAP() |
Steve Anton | 6e634bf | 2017-11-13 10:44:53 -0800 | [diff] [blame] | 269 | |
| 270 | } // namespace webrtc |
| 271 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 272 | #endif // PC_RTP_TRANSCEIVER_H_ |