OLD | NEW |
(Empty) | |
| 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 |
| 11 #ifndef WEBRTC_ORTC_RTPTRANSPORTCONTROLLERADAPTER_H_ |
| 12 #define WEBRTC_ORTC_RTPTRANSPORTCONTROLLERADAPTER_H_ |
| 13 |
| 14 #include <memory> |
| 15 #include <set> |
| 16 #include <string> |
| 17 #include <vector> |
| 18 |
| 19 #include "webrtc/base/constructormagic.h" |
| 20 #include "webrtc/base/sigslot.h" |
| 21 #include "webrtc/base/thread.h" |
| 22 #include "webrtc/call/call.h" |
| 23 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" |
| 24 #include "webrtc/api/ortc/ortcrtpreceiverinterface.h" |
| 25 #include "webrtc/api/ortc/ortcrtpsenderinterface.h" |
| 26 #include "webrtc/api/ortc/rtptransportcontrollerinterface.h" |
| 27 #include "webrtc/api/ortc/srtptransportinterface.h" |
| 28 #include "webrtc/pc/channelmanager.h" |
| 29 #include "webrtc/pc/mediacontroller.h" |
| 30 #include "webrtc/media/base/mediachannel.h" // For MediaConfig. |
| 31 |
| 32 namespace webrtc { |
| 33 |
| 34 class RtpTransportAdapter; |
| 35 class OrtcRtpSenderAdapter; |
| 36 class OrtcRtpReceiverAdapter; |
| 37 |
| 38 // Implementation of RtpTransportControllerInterface. Wraps a MediaController, |
| 39 // a VoiceChannel and VideoChannel, and maintains a list of dependent RTP |
| 40 // transports. |
| 41 // |
| 42 // When used along with an RtpSenderAdapter or RtpReceiverAdapter, the |
| 43 // sender/receiver passes its parameters along to this class, which turns them |
| 44 // into cricket:: media descriptions (the interface used by BaseChannel). |
| 45 // |
| 46 // Due to the fact that BaseChannel has different subclasses for audio/video, |
| 47 // the actual BaseChannel object is not created until an RtpSender/RtpReceiver |
| 48 // needs them. |
| 49 // |
| 50 // All methods should be called on the signaling thread. |
| 51 // |
| 52 // TODO(deadbeef): When BaseChannel is split apart into separate |
| 53 // "RtpSender"/"RtpTransceiver"/"RtpSender"/"RtpReceiver" objects, this adapter |
| 54 // object can be replaced by a "real" one. |
| 55 class RtpTransportControllerAdapter : public RtpTransportControllerInterface, |
| 56 public sigslot::has_slots<> { |
| 57 public: |
| 58 // Creates a proxy that will call "public interface" methods on the correct |
| 59 // thread. |
| 60 // |
| 61 // Doesn't take ownership of any objects passed in. |
| 62 // |
| 63 // |channel_manager| must not be null. |
| 64 static std::unique_ptr<RtpTransportControllerInterface> CreateProxied( |
| 65 const cricket::MediaConfig& config, |
| 66 cricket::ChannelManager* channel_manager, |
| 67 webrtc::RtcEventLog* event_log, |
| 68 rtc::Thread* signaling_thread, |
| 69 rtc::Thread* worker_thread); |
| 70 |
| 71 ~RtpTransportControllerAdapter() override; |
| 72 |
| 73 // RtpTransportControllerInterface implementation. |
| 74 std::vector<RtpTransportInterface*> GetTransports() const override; |
| 75 |
| 76 // These methods are used by OrtcFactory to create RtpTransports, RtpSenders |
| 77 // and RtpReceivers using this controller. Called "CreateProxied" because |
| 78 // these methods return proxies that will safely call methods on the correct |
| 79 // thread. |
| 80 RTCErrorOr<std::unique_ptr<RtpTransportInterface>> CreateProxiedRtpTransport( |
| 81 const RtcpParameters& rtcp_parameters, |
| 82 PacketTransportInterface* rtp, |
| 83 PacketTransportInterface* rtcp); |
| 84 |
| 85 RTCErrorOr<std::unique_ptr<SrtpTransportInterface>> |
| 86 CreateProxiedSrtpTransport(const RtcpParameters& rtcp_parameters, |
| 87 PacketTransportInterface* rtp, |
| 88 PacketTransportInterface* rtcp); |
| 89 |
| 90 // |transport_proxy| needs to be a proxy to a transport because the |
| 91 // application may call GetTransport() on the returned sender or receiver, |
| 92 // and expects it to return a thread-safe transport proxy. |
| 93 RTCErrorOr<std::unique_ptr<OrtcRtpSenderInterface>> CreateProxiedRtpSender( |
| 94 cricket::MediaType kind, |
| 95 RtpTransportInterface* transport_proxy); |
| 96 RTCErrorOr<std::unique_ptr<OrtcRtpReceiverInterface>> |
| 97 CreateProxiedRtpReceiver(cricket::MediaType kind, |
| 98 RtpTransportInterface* transport_proxy); |
| 99 |
| 100 // Methods used internally by other "adapter" classes. |
| 101 rtc::Thread* signaling_thread() const { return signaling_thread_; } |
| 102 rtc::Thread* worker_thread() const { return worker_thread_; } |
| 103 |
| 104 RTCError SetRtcpParameters(const RtcpParameters& parameters, |
| 105 RtpTransportInterface* inner_transport); |
| 106 |
| 107 cricket::VoiceChannel* voice_channel() { return voice_channel_; } |
| 108 cricket::VideoChannel* video_channel() { return video_channel_; } |
| 109 |
| 110 // |primary_ssrc| out parameter is filled with either |
| 111 // |parameters.encodings[0].ssrc|, or a generated SSRC if that's left unset. |
| 112 RTCError ValidateAndApplyAudioSenderParameters( |
| 113 const RtpParameters& parameters, |
| 114 uint32_t* primary_ssrc); |
| 115 RTCError ValidateAndApplyVideoSenderParameters( |
| 116 const RtpParameters& parameters, |
| 117 uint32_t* primary_ssrc); |
| 118 RTCError ValidateAndApplyAudioReceiverParameters( |
| 119 const RtpParameters& parameters); |
| 120 RTCError ValidateAndApplyVideoReceiverParameters( |
| 121 const RtpParameters& parameters); |
| 122 |
| 123 RTCError SetSrtpSendKey(const cricket::CryptoParams& parametersm, |
| 124 SrtpTransportInterface* inner_transport); |
| 125 RTCError SetSrtpReceiveKey(const cricket::CryptoParams& parametersm, |
| 126 SrtpTransportInterface* inner_transport); |
| 127 |
| 128 protected: |
| 129 RtpTransportControllerAdapter* GetInternal() override { return this; } |
| 130 |
| 131 private: |
| 132 // Only expected to be called by RtpTransportControllerAdapter::CreateProxied. |
| 133 RtpTransportControllerAdapter(const cricket::MediaConfig& config, |
| 134 cricket::ChannelManager* channel_manager, |
| 135 webrtc::RtcEventLog* event_log, |
| 136 rtc::Thread* signaling_thread, |
| 137 rtc::Thread* worker_thread); |
| 138 |
| 139 // These return an error if another of the same type of object is already |
| 140 // attached, or if |transport_proxy| can't be used with the sender/receiver |
| 141 // due to the limitation that the sender/receiver of the same media type must |
| 142 // use the same transport. |
| 143 RTCError AttachAudioSender(OrtcRtpSenderAdapter* sender, |
| 144 RtpTransportInterface* inner_transport); |
| 145 RTCError AttachVideoSender(OrtcRtpSenderAdapter* sender, |
| 146 RtpTransportInterface* inner_transport); |
| 147 RTCError AttachAudioReceiver(OrtcRtpReceiverAdapter* receiver, |
| 148 RtpTransportInterface* inner_transport); |
| 149 RTCError AttachVideoReceiver(OrtcRtpReceiverAdapter* receiver, |
| 150 RtpTransportInterface* inner_transport); |
| 151 |
| 152 void OnRtpTransportDestroyed(RtpTransportAdapter* transport); |
| 153 |
| 154 void OnAudioSenderDestroyed(); |
| 155 void OnVideoSenderDestroyed(); |
| 156 void OnAudioReceiverDestroyed(); |
| 157 void OnVideoReceiverDestroyed(); |
| 158 |
| 159 void CreateVoiceChannel(); |
| 160 void CreateVideoChannel(); |
| 161 void DestroyVoiceChannel(); |
| 162 void DestroyVideoChannel(); |
| 163 |
| 164 void CopyRtcpParametersToDescriptions( |
| 165 const RtcpParameters& params, |
| 166 cricket::MediaContentDescription* local, |
| 167 cricket::MediaContentDescription* remote); |
| 168 |
| 169 // Helper function to generate an SSRC that doesn't match one in any of the |
| 170 // "content description" structs, or in |new_ssrcs| (which is needed since |
| 171 // multiple SSRCs may be generated in one go). |
| 172 uint32_t GenerateUnusedSsrc(std::set<uint32_t>* new_ssrcs) const; |
| 173 |
| 174 // |description| is the matching description where existing SSRCs can be |
| 175 // found. |
| 176 // |
| 177 // This is a member function because it may need to generate SSRCs that don't |
| 178 // match existing ones, which is more than ToStreamParamsVec does. |
| 179 RTCErrorOr<cricket::StreamParamsVec> MakeSendStreamParamsVec( |
| 180 std::vector<RtpEncodingParameters> encodings, |
| 181 const std::string& cname, |
| 182 const cricket::MediaContentDescription& description) const; |
| 183 |
| 184 rtc::Thread* signaling_thread_; |
| 185 rtc::Thread* worker_thread_; |
| 186 // |transport_proxies_| and |inner_audio_transport_|/|inner_audio_transport_| |
| 187 // are somewhat redundant, but the latter are only set when |
| 188 // RtpSenders/RtpReceivers are attached to the transport. |
| 189 std::vector<RtpTransportInterface*> transport_proxies_; |
| 190 RtpTransportInterface* inner_audio_transport_ = nullptr; |
| 191 RtpTransportInterface* inner_video_transport_ = nullptr; |
| 192 std::unique_ptr<MediaControllerInterface> media_controller_; |
| 193 |
| 194 // BaseChannel takes content descriptions as input, so we store them here |
| 195 // such that they can be updated when a new RtpSenderAdapter/ |
| 196 // RtpReceiverAdapter attaches itself. |
| 197 cricket::AudioContentDescription local_audio_description_; |
| 198 cricket::AudioContentDescription remote_audio_description_; |
| 199 cricket::VideoContentDescription local_video_description_; |
| 200 cricket::VideoContentDescription remote_video_description_; |
| 201 cricket::VoiceChannel* voice_channel_ = nullptr; |
| 202 cricket::VideoChannel* video_channel_ = nullptr; |
| 203 bool have_audio_sender_ = false; |
| 204 bool have_video_sender_ = false; |
| 205 bool have_audio_receiver_ = false; |
| 206 bool have_video_receiver_ = false; |
| 207 |
| 208 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RtpTransportControllerAdapter); |
| 209 }; |
| 210 |
| 211 } // namespace webrtc |
| 212 |
| 213 #endif // WEBRTC_ORTC_RTPTRANSPORTCONTROLLERADAPTER_H_ |
OLD | NEW |