Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2004 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 17:11:00 | [diff] [blame] | 11 | #ifndef PC_SESSION_DESCRIPTION_H_ |
| 12 | #define PC_SESSION_DESCRIPTION_H_ |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 13 | |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 14 | #include <stddef.h> |
| 15 | #include <stdint.h> |
| 16 | #include <iosfwd> |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 17 | #include <string> |
| 18 | #include <vector> |
| 19 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 20 | #include "api/crypto_params.h" |
| 21 | #include "api/media_types.h" |
| 22 | #include "api/rtp_parameters.h" |
| 23 | #include "api/rtp_transceiver_interface.h" |
| 24 | #include "media/base/media_channel.h" |
| 25 | #include "media/base/stream_params.h" |
| 26 | #include "p2p/base/transport_description.h" |
| 27 | #include "p2p/base/transport_info.h" |
| 28 | #include "pc/simulcast_description.h" |
| 29 | #include "rtc_base/socket_address.h" |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 30 | |
| 31 | namespace cricket { |
| 32 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 33 | typedef std::vector<AudioCodec> AudioCodecs; |
| 34 | typedef std::vector<VideoCodec> VideoCodecs; |
| 35 | typedef std::vector<DataCodec> DataCodecs; |
| 36 | typedef std::vector<CryptoParams> CryptoParamsVec; |
| 37 | typedef std::vector<webrtc::RtpExtension> RtpHeaderExtensions; |
| 38 | |
| 39 | // RTC4585 RTP/AVPF |
| 40 | extern const char kMediaProtocolAvpf[]; |
| 41 | // RFC5124 RTP/SAVPF |
| 42 | extern const char kMediaProtocolSavpf[]; |
| 43 | |
| 44 | extern const char kMediaProtocolDtlsSavpf[]; |
| 45 | |
| 46 | extern const char kMediaProtocolRtpPrefix[]; |
| 47 | |
| 48 | extern const char kMediaProtocolSctp[]; |
| 49 | extern const char kMediaProtocolDtlsSctp[]; |
| 50 | extern const char kMediaProtocolUdpDtlsSctp[]; |
| 51 | extern const char kMediaProtocolTcpDtlsSctp[]; |
| 52 | |
| 53 | // Options to control how session descriptions are generated. |
| 54 | const int kAutoBandwidth = -1; |
| 55 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 56 | class AudioContentDescription; |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 57 | class DataContentDescription; |
Yves Gerey | 3e70781 | 2018-11-28 15:47:49 | [diff] [blame] | 58 | class VideoContentDescription; |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 59 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 60 | // Describes a session description media section. There are subclasses for each |
| 61 | // media type (audio, video, data) that will have additional information. |
| 62 | class MediaContentDescription { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 63 | public: |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 64 | MediaContentDescription() = default; |
| 65 | virtual ~MediaContentDescription() = default; |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 66 | |
| 67 | virtual MediaType type() const = 0; |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 68 | |
| 69 | // Try to cast this media description to an AudioContentDescription. Returns |
| 70 | // nullptr if the cast fails. |
| 71 | virtual AudioContentDescription* as_audio() { return nullptr; } |
| 72 | virtual const AudioContentDescription* as_audio() const { return nullptr; } |
| 73 | |
| 74 | // Try to cast this media description to a VideoContentDescription. Returns |
| 75 | // nullptr if the cast fails. |
| 76 | virtual VideoContentDescription* as_video() { return nullptr; } |
| 77 | virtual const VideoContentDescription* as_video() const { return nullptr; } |
| 78 | |
| 79 | // Try to cast this media description to a DataContentDescription. Returns |
| 80 | // nullptr if the cast fails. |
| 81 | virtual DataContentDescription* as_data() { return nullptr; } |
| 82 | virtual const DataContentDescription* as_data() const { return nullptr; } |
| 83 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 84 | virtual bool has_codecs() const = 0; |
| 85 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 86 | virtual MediaContentDescription* Copy() const = 0; |
| 87 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 88 | // |protocol| is the expected media transport protocol, such as RTP/AVPF, |
| 89 | // RTP/SAVPF or SCTP/DTLS. |
| 90 | std::string protocol() const { return protocol_; } |
| 91 | void set_protocol(const std::string& protocol) { protocol_ = protocol; } |
| 92 | |
| 93 | webrtc::RtpTransceiverDirection direction() const { return direction_; } |
| 94 | void set_direction(webrtc::RtpTransceiverDirection direction) { |
| 95 | direction_ = direction; |
| 96 | } |
| 97 | |
| 98 | bool rtcp_mux() const { return rtcp_mux_; } |
| 99 | void set_rtcp_mux(bool mux) { rtcp_mux_ = mux; } |
| 100 | |
| 101 | bool rtcp_reduced_size() const { return rtcp_reduced_size_; } |
| 102 | void set_rtcp_reduced_size(bool reduced_size) { |
| 103 | rtcp_reduced_size_ = reduced_size; |
| 104 | } |
| 105 | |
| 106 | int bandwidth() const { return bandwidth_; } |
| 107 | void set_bandwidth(int bandwidth) { bandwidth_ = bandwidth; } |
| 108 | |
| 109 | const std::vector<CryptoParams>& cryptos() const { return cryptos_; } |
| 110 | void AddCrypto(const CryptoParams& params) { cryptos_.push_back(params); } |
| 111 | void set_cryptos(const std::vector<CryptoParams>& cryptos) { |
| 112 | cryptos_ = cryptos; |
| 113 | } |
| 114 | |
| 115 | const RtpHeaderExtensions& rtp_header_extensions() const { |
| 116 | return rtp_header_extensions_; |
| 117 | } |
| 118 | void set_rtp_header_extensions(const RtpHeaderExtensions& extensions) { |
| 119 | rtp_header_extensions_ = extensions; |
| 120 | rtp_header_extensions_set_ = true; |
| 121 | } |
| 122 | void AddRtpHeaderExtension(const webrtc::RtpExtension& ext) { |
| 123 | rtp_header_extensions_.push_back(ext); |
| 124 | rtp_header_extensions_set_ = true; |
| 125 | } |
| 126 | void AddRtpHeaderExtension(const cricket::RtpHeaderExtension& ext) { |
| 127 | webrtc::RtpExtension webrtc_extension; |
| 128 | webrtc_extension.uri = ext.uri; |
| 129 | webrtc_extension.id = ext.id; |
| 130 | rtp_header_extensions_.push_back(webrtc_extension); |
| 131 | rtp_header_extensions_set_ = true; |
| 132 | } |
| 133 | void ClearRtpHeaderExtensions() { |
| 134 | rtp_header_extensions_.clear(); |
| 135 | rtp_header_extensions_set_ = true; |
| 136 | } |
| 137 | // We can't always tell if an empty list of header extensions is |
| 138 | // because the other side doesn't support them, or just isn't hooked up to |
| 139 | // signal them. For now we assume an empty list means no signaling, but |
| 140 | // provide the ClearRtpHeaderExtensions method to allow "no support" to be |
| 141 | // clearly indicated (i.e. when derived from other information). |
| 142 | bool rtp_header_extensions_set() const { return rtp_header_extensions_set_; } |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 143 | const StreamParamsVec& streams() const { return send_streams_; } |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 144 | // TODO(pthatcher): Remove this by giving mediamessage.cc access |
| 145 | // to MediaContentDescription |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 146 | StreamParamsVec& mutable_streams() { return send_streams_; } |
| 147 | void AddStream(const StreamParams& stream) { |
| 148 | send_streams_.push_back(stream); |
| 149 | } |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 150 | // Legacy streams have an ssrc, but nothing else. |
| 151 | void AddLegacyStream(uint32_t ssrc) { |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 152 | send_streams_.push_back(StreamParams::CreateLegacy(ssrc)); |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 153 | } |
| 154 | void AddLegacyStream(uint32_t ssrc, uint32_t fid_ssrc) { |
| 155 | StreamParams sp = StreamParams::CreateLegacy(ssrc); |
| 156 | sp.AddFidSsrc(ssrc, fid_ssrc); |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 157 | send_streams_.push_back(sp); |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 158 | } |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 159 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 160 | // Sets the CNAME of all StreamParams if it have not been set. |
| 161 | void SetCnameIfEmpty(const std::string& cname) { |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 162 | for (cricket::StreamParamsVec::iterator it = send_streams_.begin(); |
| 163 | it != send_streams_.end(); ++it) { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 164 | if (it->cname.empty()) |
| 165 | it->cname = cname; |
| 166 | } |
| 167 | } |
| 168 | uint32_t first_ssrc() const { |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 169 | if (send_streams_.empty()) { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 170 | return 0; |
| 171 | } |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 172 | return send_streams_[0].first_ssrc(); |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 173 | } |
| 174 | bool has_ssrcs() const { |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 175 | if (send_streams_.empty()) { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 176 | return false; |
| 177 | } |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 178 | return send_streams_[0].has_ssrcs(); |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | void set_conference_mode(bool enable) { conference_mode_ = enable; } |
| 182 | bool conference_mode() const { return conference_mode_; } |
| 183 | |
| 184 | // https://tools.ietf.org/html/rfc4566#section-5.7 |
| 185 | // May be present at the media or session level of SDP. If present at both |
| 186 | // levels, the media-level attribute overwrites the session-level one. |
| 187 | void set_connection_address(const rtc::SocketAddress& address) { |
| 188 | connection_address_ = address; |
| 189 | } |
| 190 | const rtc::SocketAddress& connection_address() const { |
| 191 | return connection_address_; |
| 192 | } |
| 193 | |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 194 | // Determines if it's allowed to mix one- and two-byte rtp header extensions |
| 195 | // within the same rtp stream. |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 196 | enum ExtmapAllowMixed { kNo, kSession, kMedia }; |
| 197 | void set_extmap_allow_mixed_enum(ExtmapAllowMixed new_extmap_allow_mixed) { |
Johannes Kron | 9ac3c91 | 2018-10-12 08:54:26 | [diff] [blame] | 198 | if (new_extmap_allow_mixed == kMedia && |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 199 | extmap_allow_mixed_enum_ == kSession) { |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 200 | // Do not downgrade from session level to media level. |
| 201 | return; |
| 202 | } |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 203 | extmap_allow_mixed_enum_ = new_extmap_allow_mixed; |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 204 | } |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 205 | ExtmapAllowMixed extmap_allow_mixed_enum() const { |
| 206 | return extmap_allow_mixed_enum_; |
Johannes Kron | 9ac3c91 | 2018-10-12 08:54:26 | [diff] [blame] | 207 | } |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 208 | bool extmap_allow_mixed() const { return extmap_allow_mixed_enum_ != kNo; } |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 209 | |
Amit Hilbuch | a201204 | 2018-12-03 19:35:05 | [diff] [blame] | 210 | // Simulcast functionality. |
| 211 | virtual bool HasSimulcast() const { return !simulcast_.empty(); } |
| 212 | virtual SimulcastDescription& simulcast_description() { return simulcast_; } |
| 213 | virtual const SimulcastDescription& simulcast_description() const { |
| 214 | return simulcast_; |
| 215 | } |
| 216 | virtual void set_simulcast_description( |
| 217 | const SimulcastDescription& simulcast) { |
| 218 | simulcast_ = simulcast; |
| 219 | } |
| 220 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 221 | protected: |
| 222 | bool rtcp_mux_ = false; |
| 223 | bool rtcp_reduced_size_ = false; |
| 224 | int bandwidth_ = kAutoBandwidth; |
| 225 | std::string protocol_; |
| 226 | std::vector<CryptoParams> cryptos_; |
| 227 | std::vector<webrtc::RtpExtension> rtp_header_extensions_; |
| 228 | bool rtp_header_extensions_set_ = false; |
Amit Hilbuch | c57d573 | 2018-12-11 23:30:11 | [diff] [blame] | 229 | StreamParamsVec send_streams_; |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 230 | bool conference_mode_ = false; |
| 231 | webrtc::RtpTransceiverDirection direction_ = |
| 232 | webrtc::RtpTransceiverDirection::kSendRecv; |
| 233 | rtc::SocketAddress connection_address_; |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 234 | // Mixed one- and two-byte header not included in offer on media level or |
| 235 | // session level, but we will respond that we support it. The plan is to add |
| 236 | // it to our offer on session level. See todo in SessionDescription. |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 237 | ExtmapAllowMixed extmap_allow_mixed_enum_ = kNo; |
Amit Hilbuch | a201204 | 2018-12-03 19:35:05 | [diff] [blame] | 238 | |
| 239 | SimulcastDescription simulcast_; |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 240 | }; |
| 241 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 242 | // TODO(bugs.webrtc.org/8620): Remove this alias once downstream projects have |
| 243 | // updated. |
| 244 | using ContentDescription = MediaContentDescription; |
| 245 | |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 246 | template <class C> |
| 247 | class MediaContentDescriptionImpl : public MediaContentDescription { |
| 248 | public: |
| 249 | typedef C CodecType; |
| 250 | |
| 251 | // Codecs should be in preference order (most preferred codec first). |
| 252 | const std::vector<C>& codecs() const { return codecs_; } |
| 253 | void set_codecs(const std::vector<C>& codecs) { codecs_ = codecs; } |
| 254 | virtual bool has_codecs() const { return !codecs_.empty(); } |
| 255 | bool HasCodec(int id) { |
| 256 | bool found = false; |
| 257 | for (typename std::vector<C>::iterator iter = codecs_.begin(); |
| 258 | iter != codecs_.end(); ++iter) { |
| 259 | if (iter->id == id) { |
| 260 | found = true; |
| 261 | break; |
| 262 | } |
| 263 | } |
| 264 | return found; |
| 265 | } |
| 266 | void AddCodec(const C& codec) { codecs_.push_back(codec); } |
| 267 | void AddOrReplaceCodec(const C& codec) { |
| 268 | for (typename std::vector<C>::iterator iter = codecs_.begin(); |
| 269 | iter != codecs_.end(); ++iter) { |
| 270 | if (iter->id == codec.id) { |
| 271 | *iter = codec; |
| 272 | return; |
| 273 | } |
| 274 | } |
| 275 | AddCodec(codec); |
| 276 | } |
| 277 | void AddCodecs(const std::vector<C>& codecs) { |
| 278 | typename std::vector<C>::const_iterator codec; |
| 279 | for (codec = codecs.begin(); codec != codecs.end(); ++codec) { |
| 280 | AddCodec(*codec); |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | private: |
| 285 | std::vector<C> codecs_; |
| 286 | }; |
| 287 | |
| 288 | class AudioContentDescription : public MediaContentDescriptionImpl<AudioCodec> { |
| 289 | public: |
| 290 | AudioContentDescription() {} |
| 291 | |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 292 | virtual AudioContentDescription* Copy() const { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 293 | return new AudioContentDescription(*this); |
| 294 | } |
| 295 | virtual MediaType type() const { return MEDIA_TYPE_AUDIO; } |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 296 | virtual AudioContentDescription* as_audio() { return this; } |
| 297 | virtual const AudioContentDescription* as_audio() const { return this; } |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 298 | }; |
| 299 | |
| 300 | class VideoContentDescription : public MediaContentDescriptionImpl<VideoCodec> { |
| 301 | public: |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 302 | virtual VideoContentDescription* Copy() const { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 303 | return new VideoContentDescription(*this); |
| 304 | } |
| 305 | virtual MediaType type() const { return MEDIA_TYPE_VIDEO; } |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 306 | virtual VideoContentDescription* as_video() { return this; } |
| 307 | virtual const VideoContentDescription* as_video() const { return this; } |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 308 | }; |
| 309 | |
| 310 | class DataContentDescription : public MediaContentDescriptionImpl<DataCodec> { |
| 311 | public: |
| 312 | DataContentDescription() {} |
| 313 | |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 314 | virtual DataContentDescription* Copy() const { |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 315 | return new DataContentDescription(*this); |
| 316 | } |
| 317 | virtual MediaType type() const { return MEDIA_TYPE_DATA; } |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 318 | virtual DataContentDescription* as_data() { return this; } |
| 319 | virtual const DataContentDescription* as_data() const { return this; } |
Steve Anton | afd8e8c | 2017-12-20 00:35:35 | [diff] [blame] | 320 | |
| 321 | bool use_sctpmap() const { return use_sctpmap_; } |
| 322 | void set_use_sctpmap(bool enable) { use_sctpmap_ = enable; } |
| 323 | |
| 324 | private: |
| 325 | bool use_sctpmap_ = true; |
| 326 | }; |
| 327 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 328 | // Protocol used for encoding media. This is the "top level" protocol that may |
| 329 | // be wrapped by zero or many transport protocols (UDP, ICE, etc.). |
| 330 | enum class MediaProtocolType { |
| 331 | kRtp, // Section will use the RTP protocol (e.g., for audio or video). |
| 332 | // https://tools.ietf.org/html/rfc3550 |
| 333 | kSctp // Section will use the SCTP protocol (e.g., for a data channel). |
| 334 | // https://tools.ietf.org/html/rfc4960 |
| 335 | }; |
| 336 | |
| 337 | // TODO(bugs.webrtc.org/8620): Remove once downstream projects have updated. |
| 338 | constexpr MediaProtocolType NS_JINGLE_RTP = MediaProtocolType::kRtp; |
| 339 | constexpr MediaProtocolType NS_JINGLE_DRAFT_SCTP = MediaProtocolType::kSctp; |
| 340 | |
| 341 | // Represents a session description section. Most information about the section |
| 342 | // is stored in the description, which is a subclass of MediaContentDescription. |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 343 | struct ContentInfo { |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 344 | friend class SessionDescription; |
| 345 | |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 346 | explicit ContentInfo(MediaProtocolType type) : type(type) {} |
| 347 | |
| 348 | // Alias for |name|. |
| 349 | std::string mid() const { return name; } |
| 350 | void set_mid(const std::string& mid) { this->name = mid; } |
| 351 | |
| 352 | // Alias for |description|. |
| 353 | MediaContentDescription* media_description() { return description; } |
| 354 | const MediaContentDescription* media_description() const { |
| 355 | return description; |
| 356 | } |
Steve Anton | 8171211 | 2018-01-05 19:27:54 | [diff] [blame] | 357 | void set_media_description(MediaContentDescription* desc) { |
| 358 | description = desc; |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 359 | } |
| 360 | |
Steve Anton | 8171211 | 2018-01-05 19:27:54 | [diff] [blame] | 361 | // TODO(bugs.webrtc.org/8620): Rename this to mid. |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 362 | std::string name; |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 363 | MediaProtocolType type; |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 364 | bool rejected = false; |
| 365 | bool bundle_only = false; |
Steve Anton | 8171211 | 2018-01-05 19:27:54 | [diff] [blame] | 366 | // TODO(bugs.webrtc.org/8620): Switch to the getter and setter, and make this |
| 367 | // private. |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 368 | MediaContentDescription* description = nullptr; |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 369 | }; |
| 370 | |
| 371 | typedef std::vector<std::string> ContentNames; |
| 372 | |
| 373 | // This class provides a mechanism to aggregate different media contents into a |
| 374 | // group. This group can also be shared with the peers in a pre-defined format. |
| 375 | // GroupInfo should be populated only with the |content_name| of the |
| 376 | // MediaDescription. |
| 377 | class ContentGroup { |
| 378 | public: |
| 379 | explicit ContentGroup(const std::string& semantics); |
| 380 | ContentGroup(const ContentGroup&); |
| 381 | ContentGroup(ContentGroup&&); |
| 382 | ContentGroup& operator=(const ContentGroup&); |
| 383 | ContentGroup& operator=(ContentGroup&&); |
| 384 | ~ContentGroup(); |
| 385 | |
| 386 | const std::string& semantics() const { return semantics_; } |
| 387 | const ContentNames& content_names() const { return content_names_; } |
| 388 | |
| 389 | const std::string* FirstContentName() const; |
| 390 | bool HasContentName(const std::string& content_name) const; |
| 391 | void AddContentName(const std::string& content_name); |
| 392 | bool RemoveContentName(const std::string& content_name); |
| 393 | |
| 394 | private: |
| 395 | std::string semantics_; |
| 396 | ContentNames content_names_; |
| 397 | }; |
| 398 | |
| 399 | typedef std::vector<ContentInfo> ContentInfos; |
| 400 | typedef std::vector<ContentGroup> ContentGroups; |
| 401 | |
| 402 | const ContentInfo* FindContentInfoByName(const ContentInfos& contents, |
| 403 | const std::string& name); |
| 404 | const ContentInfo* FindContentInfoByType(const ContentInfos& contents, |
| 405 | const std::string& type); |
| 406 | |
Steve Anton | e831b8c | 2018-02-01 20:22:16 | [diff] [blame] | 407 | // Determines how the MSID will be signaled in the SDP. These can be used as |
| 408 | // flags to indicate both or none. |
| 409 | enum MsidSignaling { |
| 410 | // Signal MSID with one a=msid line in the media section. |
| 411 | kMsidSignalingMediaSection = 0x1, |
| 412 | // Signal MSID with a=ssrc: msid lines in the media section. |
| 413 | kMsidSignalingSsrcAttribute = 0x2 |
| 414 | }; |
| 415 | |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 416 | // Describes a collection of contents, each with its own name and |
| 417 | // type. Analogous to a <jingle> or <session> stanza. Assumes that |
| 418 | // contents are unique be name, but doesn't enforce that. |
| 419 | class SessionDescription { |
| 420 | public: |
| 421 | SessionDescription(); |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 422 | ~SessionDescription(); |
| 423 | |
| 424 | SessionDescription* Copy() const; |
| 425 | |
Piotr (Peter) Slatala | 13e570f | 2019-02-27 19:34:26 | [diff] [blame] | 426 | struct MediaTransportSetting; |
| 427 | |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 428 | // Content accessors. |
| 429 | const ContentInfos& contents() const { return contents_; } |
| 430 | ContentInfos& contents() { return contents_; } |
| 431 | const ContentInfo* GetContentByName(const std::string& name) const; |
| 432 | ContentInfo* GetContentByName(const std::string& name); |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 433 | const MediaContentDescription* GetContentDescriptionByName( |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 434 | const std::string& name) const; |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 435 | MediaContentDescription* GetContentDescriptionByName(const std::string& name); |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 436 | const ContentInfo* FirstContentByType(MediaProtocolType type) const; |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 437 | const ContentInfo* FirstContent() const; |
| 438 | |
| 439 | // Content mutators. |
| 440 | // Adds a content to this description. Takes ownership of ContentDescription*. |
| 441 | void AddContent(const std::string& name, |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 442 | MediaProtocolType type, |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 443 | MediaContentDescription* description); |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 444 | void AddContent(const std::string& name, |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 445 | MediaProtocolType type, |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 446 | bool rejected, |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 447 | MediaContentDescription* description); |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 448 | void AddContent(const std::string& name, |
Steve Anton | 5adfafd | 2017-12-21 00:34:00 | [diff] [blame] | 449 | MediaProtocolType type, |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 450 | bool rejected, |
| 451 | bool bundle_only, |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 452 | MediaContentDescription* description); |
Johannes Kron | 9ac3c91 | 2018-10-12 08:54:26 | [diff] [blame] | 453 | void AddContent(ContentInfo* content); |
| 454 | |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 455 | bool RemoveContentByName(const std::string& name); |
| 456 | |
| 457 | // Transport accessors. |
| 458 | const TransportInfos& transport_infos() const { return transport_infos_; } |
| 459 | TransportInfos& transport_infos() { return transport_infos_; } |
| 460 | const TransportInfo* GetTransportInfoByName(const std::string& name) const; |
| 461 | TransportInfo* GetTransportInfoByName(const std::string& name); |
| 462 | const TransportDescription* GetTransportDescriptionByName( |
| 463 | const std::string& name) const { |
| 464 | const TransportInfo* tinfo = GetTransportInfoByName(name); |
| 465 | return tinfo ? &tinfo->description : NULL; |
| 466 | } |
| 467 | |
| 468 | // Transport mutators. |
| 469 | void set_transport_infos(const TransportInfos& transport_infos) { |
| 470 | transport_infos_ = transport_infos; |
| 471 | } |
| 472 | // Adds a TransportInfo to this description. |
Steve Anton | 06817cd | 2018-12-18 23:55:30 | [diff] [blame] | 473 | void AddTransportInfo(const TransportInfo& transport_info); |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 474 | bool RemoveTransportInfoByName(const std::string& name); |
| 475 | |
| 476 | // Group accessors. |
| 477 | const ContentGroups& groups() const { return content_groups_; } |
| 478 | const ContentGroup* GetGroupByName(const std::string& name) const; |
| 479 | bool HasGroup(const std::string& name) const; |
| 480 | |
| 481 | // Group mutators. |
| 482 | void AddGroup(const ContentGroup& group) { content_groups_.push_back(group); } |
| 483 | // Remove the first group with the same semantics specified by |name|. |
| 484 | void RemoveGroupByName(const std::string& name); |
| 485 | |
| 486 | // Global attributes. |
| 487 | void set_msid_supported(bool supported) { msid_supported_ = supported; } |
| 488 | bool msid_supported() const { return msid_supported_; } |
| 489 | |
Steve Anton | e831b8c | 2018-02-01 20:22:16 | [diff] [blame] | 490 | // Determines how the MSIDs were/will be signaled. Flag value composed of |
| 491 | // MsidSignaling bits (see enum above). |
| 492 | void set_msid_signaling(int msid_signaling) { |
| 493 | msid_signaling_ = msid_signaling; |
| 494 | } |
| 495 | int msid_signaling() const { return msid_signaling_; } |
| 496 | |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 497 | // Determines if it's allowed to mix one- and two-byte rtp header extensions |
| 498 | // within the same rtp stream. |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 499 | void set_extmap_allow_mixed(bool supported) { |
| 500 | extmap_allow_mixed_ = supported; |
| 501 | MediaContentDescription::ExtmapAllowMixed media_level_setting = |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 502 | supported ? MediaContentDescription::kSession |
| 503 | : MediaContentDescription::kNo; |
| 504 | for (auto& content : contents_) { |
Johannes Kron | 9ac3c91 | 2018-10-12 08:54:26 | [diff] [blame] | 505 | // Do not set to kNo if the current setting is kMedia. |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 506 | if (supported || content.media_description()->extmap_allow_mixed_enum() != |
| 507 | MediaContentDescription::kMedia) { |
| 508 | content.media_description()->set_extmap_allow_mixed_enum( |
Johannes Kron | 9ac3c91 | 2018-10-12 08:54:26 | [diff] [blame] | 509 | media_level_setting); |
| 510 | } |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 511 | } |
| 512 | } |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 513 | bool extmap_allow_mixed() const { return extmap_allow_mixed_; } |
Johannes Kron | 0854eb6 | 2018-10-10 20:33:20 | [diff] [blame] | 514 | |
Piotr (Peter) Slatala | 13e570f | 2019-02-27 19:34:26 | [diff] [blame] | 515 | // Adds the media transport setting. |
| 516 | // Media transport name uniquely identifies the type of media transport. |
| 517 | // The name cannot be empty, or repeated in the previously added transport |
| 518 | // settings. |
| 519 | void AddMediaTransportSetting(const std::string& media_transport_name, |
| 520 | const std::string& media_transport_setting) { |
| 521 | RTC_DCHECK(!media_transport_name.empty()); |
| 522 | for (const auto& setting : media_transport_settings_) { |
| 523 | RTC_DCHECK(media_transport_name != setting.transport_name) |
| 524 | << "MediaTransportSetting was already registered, transport_name=" |
| 525 | << setting.transport_name; |
| 526 | } |
| 527 | media_transport_settings_.push_back( |
| 528 | {media_transport_name, media_transport_setting}); |
| 529 | } |
| 530 | |
| 531 | // Gets the media transport settings, in order of preference. |
| 532 | const std::vector<MediaTransportSetting>& MediaTransportSettings() const { |
| 533 | return media_transport_settings_; |
| 534 | } |
| 535 | |
| 536 | struct MediaTransportSetting { |
| 537 | std::string transport_name; |
| 538 | std::string transport_setting; |
| 539 | }; |
| 540 | |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 541 | private: |
| 542 | SessionDescription(const SessionDescription&); |
| 543 | |
| 544 | ContentInfos contents_; |
| 545 | TransportInfos transport_infos_; |
| 546 | ContentGroups content_groups_; |
| 547 | bool msid_supported_ = true; |
Steve Anton | e831b8c | 2018-02-01 20:22:16 | [diff] [blame] | 548 | // Default to what Plan B would do. |
| 549 | // TODO(bugs.webrtc.org/8530): Change default to kMsidSignalingMediaSection. |
| 550 | int msid_signaling_ = kMsidSignalingSsrcAttribute; |
Johannes Kron | 89f874e | 2018-11-12 09:25:48 | [diff] [blame] | 551 | // TODO(webrtc:9985): Activate mixed one- and two-byte header extension in |
| 552 | // offer at session level. It's currently not included in offer by default |
| 553 | // because clients prior to https://bugs.webrtc.org/9712 cannot parse this |
| 554 | // correctly. If it's included in offer to us we will respond that we support |
| 555 | // it. |
Johannes Kron | 9581bc4 | 2018-10-23 08:17:39 | [diff] [blame] | 556 | bool extmap_allow_mixed_ = false; |
Piotr (Peter) Slatala | 13e570f | 2019-02-27 19:34:26 | [diff] [blame] | 557 | |
| 558 | std::vector<MediaTransportSetting> media_transport_settings_; |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 559 | }; |
| 560 | |
Steve Anton | b1c1de1 | 2017-12-21 23:14:30 | [diff] [blame] | 561 | // Indicates whether a session description was sent by the local client or |
| 562 | // received from the remote client. |
Steve Anton | 4ab68ee | 2017-12-19 22:26:11 | [diff] [blame] | 563 | enum ContentSource { CS_LOCAL, CS_REMOTE }; |
| 564 | |
| 565 | } // namespace cricket |
| 566 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 567 | #endif // PC_SESSION_DESCRIPTION_H_ |