blob: 4156683030260444ee1749505d9e05e866063579 [file] [log] [blame]
Steve Anton4ab68ee2017-12-19 22:26:111/*
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 Anton10542f22019-01-11 17:11:0011#ifndef PC_SESSION_DESCRIPTION_H_
12#define PC_SESSION_DESCRIPTION_H_
Steve Anton4ab68ee2017-12-19 22:26:1113
Yves Gerey3e707812018-11-28 15:47:4914#include <stddef.h>
15#include <stdint.h>
16#include <iosfwd>
Steve Anton4ab68ee2017-12-19 22:26:1117#include <string>
18#include <vector>
19
Steve Anton10542f22019-01-11 17:11:0020#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 Anton4ab68ee2017-12-19 22:26:1130
31namespace cricket {
32
Steve Antonafd8e8c2017-12-20 00:35:3533typedef std::vector<AudioCodec> AudioCodecs;
34typedef std::vector<VideoCodec> VideoCodecs;
35typedef std::vector<DataCodec> DataCodecs;
36typedef std::vector<CryptoParams> CryptoParamsVec;
37typedef std::vector<webrtc::RtpExtension> RtpHeaderExtensions;
38
39// RTC4585 RTP/AVPF
40extern const char kMediaProtocolAvpf[];
41// RFC5124 RTP/SAVPF
42extern const char kMediaProtocolSavpf[];
43
44extern const char kMediaProtocolDtlsSavpf[];
45
46extern const char kMediaProtocolRtpPrefix[];
47
48extern const char kMediaProtocolSctp[];
49extern const char kMediaProtocolDtlsSctp[];
50extern const char kMediaProtocolUdpDtlsSctp[];
51extern const char kMediaProtocolTcpDtlsSctp[];
52
53// Options to control how session descriptions are generated.
54const int kAutoBandwidth = -1;
55
Steve Anton5adfafd2017-12-21 00:34:0056class AudioContentDescription;
Steve Anton5adfafd2017-12-21 00:34:0057class DataContentDescription;
Yves Gerey3e707812018-11-28 15:47:4958class VideoContentDescription;
Steve Anton4ab68ee2017-12-19 22:26:1159
Steve Anton5adfafd2017-12-21 00:34:0060// Describes a session description media section. There are subclasses for each
61// media type (audio, video, data) that will have additional information.
62class MediaContentDescription {
Steve Antonafd8e8c2017-12-20 00:35:3563 public:
Steve Anton5adfafd2017-12-21 00:34:0064 MediaContentDescription() = default;
65 virtual ~MediaContentDescription() = default;
Steve Antonafd8e8c2017-12-20 00:35:3566
67 virtual MediaType type() const = 0;
Steve Anton5adfafd2017-12-21 00:34:0068
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 Antonafd8e8c2017-12-20 00:35:3584 virtual bool has_codecs() const = 0;
85
Steve Anton5adfafd2017-12-21 00:34:0086 virtual MediaContentDescription* Copy() const = 0;
87
Steve Antonafd8e8c2017-12-20 00:35:3588 // |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 Hilbuchc57d5732018-12-11 23:30:11143 const StreamParamsVec& streams() const { return send_streams_; }
Steve Antonafd8e8c2017-12-20 00:35:35144 // TODO(pthatcher): Remove this by giving mediamessage.cc access
145 // to MediaContentDescription
Amit Hilbuchc57d5732018-12-11 23:30:11146 StreamParamsVec& mutable_streams() { return send_streams_; }
147 void AddStream(const StreamParams& stream) {
148 send_streams_.push_back(stream);
149 }
Steve Antonafd8e8c2017-12-20 00:35:35150 // Legacy streams have an ssrc, but nothing else.
151 void AddLegacyStream(uint32_t ssrc) {
Amit Hilbuchc57d5732018-12-11 23:30:11152 send_streams_.push_back(StreamParams::CreateLegacy(ssrc));
Steve Antonafd8e8c2017-12-20 00:35:35153 }
154 void AddLegacyStream(uint32_t ssrc, uint32_t fid_ssrc) {
155 StreamParams sp = StreamParams::CreateLegacy(ssrc);
156 sp.AddFidSsrc(ssrc, fid_ssrc);
Amit Hilbuchc57d5732018-12-11 23:30:11157 send_streams_.push_back(sp);
Steve Antonafd8e8c2017-12-20 00:35:35158 }
Amit Hilbuchc57d5732018-12-11 23:30:11159
Steve Antonafd8e8c2017-12-20 00:35:35160 // Sets the CNAME of all StreamParams if it have not been set.
161 void SetCnameIfEmpty(const std::string& cname) {
Amit Hilbuchc57d5732018-12-11 23:30:11162 for (cricket::StreamParamsVec::iterator it = send_streams_.begin();
163 it != send_streams_.end(); ++it) {
Steve Antonafd8e8c2017-12-20 00:35:35164 if (it->cname.empty())
165 it->cname = cname;
166 }
167 }
168 uint32_t first_ssrc() const {
Amit Hilbuchc57d5732018-12-11 23:30:11169 if (send_streams_.empty()) {
Steve Antonafd8e8c2017-12-20 00:35:35170 return 0;
171 }
Amit Hilbuchc57d5732018-12-11 23:30:11172 return send_streams_[0].first_ssrc();
Steve Antonafd8e8c2017-12-20 00:35:35173 }
174 bool has_ssrcs() const {
Amit Hilbuchc57d5732018-12-11 23:30:11175 if (send_streams_.empty()) {
Steve Antonafd8e8c2017-12-20 00:35:35176 return false;
177 }
Amit Hilbuchc57d5732018-12-11 23:30:11178 return send_streams_[0].has_ssrcs();
Steve Antonafd8e8c2017-12-20 00:35:35179 }
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 Kron0854eb62018-10-10 20:33:20194 // Determines if it's allowed to mix one- and two-byte rtp header extensions
195 // within the same rtp stream.
Johannes Kron9581bc42018-10-23 08:17:39196 enum ExtmapAllowMixed { kNo, kSession, kMedia };
197 void set_extmap_allow_mixed_enum(ExtmapAllowMixed new_extmap_allow_mixed) {
Johannes Kron9ac3c912018-10-12 08:54:26198 if (new_extmap_allow_mixed == kMedia &&
Johannes Kron9581bc42018-10-23 08:17:39199 extmap_allow_mixed_enum_ == kSession) {
Johannes Kron0854eb62018-10-10 20:33:20200 // Do not downgrade from session level to media level.
201 return;
202 }
Johannes Kron9581bc42018-10-23 08:17:39203 extmap_allow_mixed_enum_ = new_extmap_allow_mixed;
Johannes Kron0854eb62018-10-10 20:33:20204 }
Johannes Kron9581bc42018-10-23 08:17:39205 ExtmapAllowMixed extmap_allow_mixed_enum() const {
206 return extmap_allow_mixed_enum_;
Johannes Kron9ac3c912018-10-12 08:54:26207 }
Johannes Kron9581bc42018-10-23 08:17:39208 bool extmap_allow_mixed() const { return extmap_allow_mixed_enum_ != kNo; }
Johannes Kron0854eb62018-10-10 20:33:20209
Amit Hilbucha2012042018-12-03 19:35:05210 // 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 Antonafd8e8c2017-12-20 00:35:35221 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 Hilbuchc57d5732018-12-11 23:30:11229 StreamParamsVec send_streams_;
Steve Antonafd8e8c2017-12-20 00:35:35230 bool conference_mode_ = false;
231 webrtc::RtpTransceiverDirection direction_ =
232 webrtc::RtpTransceiverDirection::kSendRecv;
233 rtc::SocketAddress connection_address_;
Johannes Kron0854eb62018-10-10 20:33:20234 // 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 Kron9581bc42018-10-23 08:17:39237 ExtmapAllowMixed extmap_allow_mixed_enum_ = kNo;
Amit Hilbucha2012042018-12-03 19:35:05238
239 SimulcastDescription simulcast_;
Steve Antonafd8e8c2017-12-20 00:35:35240};
241
Steve Anton5adfafd2017-12-21 00:34:00242// TODO(bugs.webrtc.org/8620): Remove this alias once downstream projects have
243// updated.
244using ContentDescription = MediaContentDescription;
245
Steve Antonafd8e8c2017-12-20 00:35:35246template <class C>
247class 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
288class AudioContentDescription : public MediaContentDescriptionImpl<AudioCodec> {
289 public:
290 AudioContentDescription() {}
291
Steve Antonb1c1de12017-12-21 23:14:30292 virtual AudioContentDescription* Copy() const {
Steve Antonafd8e8c2017-12-20 00:35:35293 return new AudioContentDescription(*this);
294 }
295 virtual MediaType type() const { return MEDIA_TYPE_AUDIO; }
Steve Anton5adfafd2017-12-21 00:34:00296 virtual AudioContentDescription* as_audio() { return this; }
297 virtual const AudioContentDescription* as_audio() const { return this; }
Steve Antonafd8e8c2017-12-20 00:35:35298};
299
300class VideoContentDescription : public MediaContentDescriptionImpl<VideoCodec> {
301 public:
Steve Antonb1c1de12017-12-21 23:14:30302 virtual VideoContentDescription* Copy() const {
Steve Antonafd8e8c2017-12-20 00:35:35303 return new VideoContentDescription(*this);
304 }
305 virtual MediaType type() const { return MEDIA_TYPE_VIDEO; }
Steve Anton5adfafd2017-12-21 00:34:00306 virtual VideoContentDescription* as_video() { return this; }
307 virtual const VideoContentDescription* as_video() const { return this; }
Steve Antonafd8e8c2017-12-20 00:35:35308};
309
310class DataContentDescription : public MediaContentDescriptionImpl<DataCodec> {
311 public:
312 DataContentDescription() {}
313
Steve Antonb1c1de12017-12-21 23:14:30314 virtual DataContentDescription* Copy() const {
Steve Antonafd8e8c2017-12-20 00:35:35315 return new DataContentDescription(*this);
316 }
317 virtual MediaType type() const { return MEDIA_TYPE_DATA; }
Steve Anton5adfafd2017-12-21 00:34:00318 virtual DataContentDescription* as_data() { return this; }
319 virtual const DataContentDescription* as_data() const { return this; }
Steve Antonafd8e8c2017-12-20 00:35:35320
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 Anton5adfafd2017-12-21 00:34:00328// 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.).
330enum 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.
338constexpr MediaProtocolType NS_JINGLE_RTP = MediaProtocolType::kRtp;
339constexpr 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 Anton4ab68ee2017-12-19 22:26:11343struct ContentInfo {
Steve Antonb1c1de12017-12-21 23:14:30344 friend class SessionDescription;
345
Steve Anton5adfafd2017-12-21 00:34:00346 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 Anton81712112018-01-05 19:27:54357 void set_media_description(MediaContentDescription* desc) {
358 description = desc;
Steve Anton5adfafd2017-12-21 00:34:00359 }
360
Steve Anton81712112018-01-05 19:27:54361 // TODO(bugs.webrtc.org/8620): Rename this to mid.
Steve Anton4ab68ee2017-12-19 22:26:11362 std::string name;
Steve Anton5adfafd2017-12-21 00:34:00363 MediaProtocolType type;
Steve Anton4ab68ee2017-12-19 22:26:11364 bool rejected = false;
365 bool bundle_only = false;
Steve Anton81712112018-01-05 19:27:54366 // TODO(bugs.webrtc.org/8620): Switch to the getter and setter, and make this
367 // private.
Steve Antonb1c1de12017-12-21 23:14:30368 MediaContentDescription* description = nullptr;
Steve Anton4ab68ee2017-12-19 22:26:11369};
370
371typedef 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.
377class 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
399typedef std::vector<ContentInfo> ContentInfos;
400typedef std::vector<ContentGroup> ContentGroups;
401
402const ContentInfo* FindContentInfoByName(const ContentInfos& contents,
403 const std::string& name);
404const ContentInfo* FindContentInfoByType(const ContentInfos& contents,
405 const std::string& type);
406
Steve Antone831b8c2018-02-01 20:22:16407// Determines how the MSID will be signaled in the SDP. These can be used as
408// flags to indicate both or none.
409enum 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 Anton4ab68ee2017-12-19 22:26:11416// 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.
419class SessionDescription {
420 public:
421 SessionDescription();
Steve Anton4ab68ee2017-12-19 22:26:11422 ~SessionDescription();
423
424 SessionDescription* Copy() const;
425
Piotr (Peter) Slatala13e570f2019-02-27 19:34:26426 struct MediaTransportSetting;
427
Steve Anton4ab68ee2017-12-19 22:26:11428 // 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 Antonb1c1de12017-12-21 23:14:30433 const MediaContentDescription* GetContentDescriptionByName(
Steve Anton4ab68ee2017-12-19 22:26:11434 const std::string& name) const;
Steve Antonb1c1de12017-12-21 23:14:30435 MediaContentDescription* GetContentDescriptionByName(const std::string& name);
Steve Anton5adfafd2017-12-21 00:34:00436 const ContentInfo* FirstContentByType(MediaProtocolType type) const;
Steve Anton4ab68ee2017-12-19 22:26:11437 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 Anton5adfafd2017-12-21 00:34:00442 MediaProtocolType type,
Steve Antonb1c1de12017-12-21 23:14:30443 MediaContentDescription* description);
Steve Anton4ab68ee2017-12-19 22:26:11444 void AddContent(const std::string& name,
Steve Anton5adfafd2017-12-21 00:34:00445 MediaProtocolType type,
Steve Anton4ab68ee2017-12-19 22:26:11446 bool rejected,
Steve Antonb1c1de12017-12-21 23:14:30447 MediaContentDescription* description);
Steve Anton4ab68ee2017-12-19 22:26:11448 void AddContent(const std::string& name,
Steve Anton5adfafd2017-12-21 00:34:00449 MediaProtocolType type,
Steve Anton4ab68ee2017-12-19 22:26:11450 bool rejected,
451 bool bundle_only,
Steve Antonb1c1de12017-12-21 23:14:30452 MediaContentDescription* description);
Johannes Kron9ac3c912018-10-12 08:54:26453 void AddContent(ContentInfo* content);
454
Steve Anton4ab68ee2017-12-19 22:26:11455 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 Anton06817cd2018-12-18 23:55:30473 void AddTransportInfo(const TransportInfo& transport_info);
Steve Anton4ab68ee2017-12-19 22:26:11474 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 Antone831b8c2018-02-01 20:22:16490 // 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 Kron0854eb62018-10-10 20:33:20497 // Determines if it's allowed to mix one- and two-byte rtp header extensions
498 // within the same rtp stream.
Johannes Kron9581bc42018-10-23 08:17:39499 void set_extmap_allow_mixed(bool supported) {
500 extmap_allow_mixed_ = supported;
501 MediaContentDescription::ExtmapAllowMixed media_level_setting =
Johannes Kron0854eb62018-10-10 20:33:20502 supported ? MediaContentDescription::kSession
503 : MediaContentDescription::kNo;
504 for (auto& content : contents_) {
Johannes Kron9ac3c912018-10-12 08:54:26505 // Do not set to kNo if the current setting is kMedia.
Johannes Kron9581bc42018-10-23 08:17:39506 if (supported || content.media_description()->extmap_allow_mixed_enum() !=
507 MediaContentDescription::kMedia) {
508 content.media_description()->set_extmap_allow_mixed_enum(
Johannes Kron9ac3c912018-10-12 08:54:26509 media_level_setting);
510 }
Johannes Kron0854eb62018-10-10 20:33:20511 }
512 }
Johannes Kron9581bc42018-10-23 08:17:39513 bool extmap_allow_mixed() const { return extmap_allow_mixed_; }
Johannes Kron0854eb62018-10-10 20:33:20514
Piotr (Peter) Slatala13e570f2019-02-27 19:34:26515 // 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 Anton4ab68ee2017-12-19 22:26:11541 private:
542 SessionDescription(const SessionDescription&);
543
544 ContentInfos contents_;
545 TransportInfos transport_infos_;
546 ContentGroups content_groups_;
547 bool msid_supported_ = true;
Steve Antone831b8c2018-02-01 20:22:16548 // Default to what Plan B would do.
549 // TODO(bugs.webrtc.org/8530): Change default to kMsidSignalingMediaSection.
550 int msid_signaling_ = kMsidSignalingSsrcAttribute;
Johannes Kron89f874e2018-11-12 09:25:48551 // 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 Kron9581bc42018-10-23 08:17:39556 bool extmap_allow_mixed_ = false;
Piotr (Peter) Slatala13e570f2019-02-27 19:34:26557
558 std::vector<MediaTransportSetting> media_transport_settings_;
Steve Anton4ab68ee2017-12-19 22:26:11559};
560
Steve Antonb1c1de12017-12-21 23:14:30561// Indicates whether a session description was sent by the local client or
562// received from the remote client.
Steve Anton4ab68ee2017-12-19 22:26:11563enum ContentSource { CS_LOCAL, CS_REMOTE };
564
565} // namespace cricket
566
Steve Anton10542f22019-01-11 17:11:00567#endif // PC_SESSION_DESCRIPTION_H_