henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 1 | /* |
kjellander | 65c7f67 | 2016-02-12 00:05:01 -0800 | [diff] [blame] | 2 | * Copyright 2004 The WebRTC project authors. All Rights Reserved. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 3 | * |
kjellander | 65c7f67 | 2016-02-12 00:05:01 -0800 | [diff] [blame] | 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. |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | // Types and classes used in media session descriptions. |
| 12 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 13 | #ifndef PC_MEDIASESSION_H_ |
| 14 | #define PC_MEDIASESSION_H_ |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 15 | |
buildbot@webrtc.org | a09a999 | 2014-08-13 17:26:08 +0000 | [diff] [blame] | 16 | #include <algorithm> |
deadbeef | 0ed85b2 | 2016-02-23 17:24:52 -0800 | [diff] [blame] | 17 | #include <map> |
Steve Anton | 1a9d3c3 | 2018-12-10 17:18:54 -0800 | [diff] [blame^] | 18 | #include <memory> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 19 | #include <string> |
| 20 | #include <vector> |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 21 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 22 | #include "api/mediatypes.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 23 | #include "media/base/mediaconstants.h" |
| 24 | #include "media/base/mediaengine.h" // For DataChannelType |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 25 | #include "p2p/base/icecredentialsiterator.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 26 | #include "p2p/base/transportdescriptionfactory.h" |
Zhi Huang | 365381f | 2018-04-13 16:44:34 -0700 | [diff] [blame] | 27 | #include "pc/jseptransport.h" |
Steve Anton | 4ab68ee | 2017-12-19 14:26:11 -0800 | [diff] [blame] | 28 | #include "pc/sessiondescription.h" |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 29 | |
| 30 | namespace cricket { |
| 31 | |
| 32 | class ChannelManager; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 33 | |
zhihuang | 8f65cdf | 2016-05-06 18:40:30 -0700 | [diff] [blame] | 34 | // Default RTCP CNAME for unit tests. |
| 35 | const char kDefaultRtcpCname[] = "DefaultRtcpCname"; |
| 36 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 37 | // Options for an RtpSender contained with an media description/"m=" section. |
| 38 | struct SenderOptions { |
| 39 | std::string track_id; |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 40 | std::vector<std::string> stream_ids; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 41 | int num_sim_layers; |
| 42 | }; |
jiayl@webrtc.org | 742922b | 2014-10-07 21:32:43 +0000 | [diff] [blame] | 43 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 44 | // Options for an individual media description/"m=" section. |
| 45 | struct MediaDescriptionOptions { |
| 46 | MediaDescriptionOptions(MediaType type, |
| 47 | const std::string& mid, |
Steve Anton | 1d03a75 | 2017-11-27 14:30:09 -0800 | [diff] [blame] | 48 | webrtc::RtpTransceiverDirection direction, |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 49 | bool stopped) |
| 50 | : type(type), mid(mid), direction(direction), stopped(stopped) {} |
zhihuang | a77e6bb | 2017-08-14 18:17:48 -0700 | [diff] [blame] | 51 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 52 | // TODO(deadbeef): When we don't support Plan B, there will only be one |
| 53 | // sender per media description and this can be simplified. |
| 54 | void AddAudioSender(const std::string& track_id, |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 55 | const std::vector<std::string>& stream_ids); |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 56 | void AddVideoSender(const std::string& track_id, |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 57 | const std::vector<std::string>& stream_ids, |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 58 | int num_sim_layers); |
zhihuang | a77e6bb | 2017-08-14 18:17:48 -0700 | [diff] [blame] | 59 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 60 | // Internally just uses sender_options. |
| 61 | void AddRtpDataChannel(const std::string& track_id, |
| 62 | const std::string& stream_id); |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 63 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 64 | MediaType type; |
| 65 | std::string mid; |
Steve Anton | 1d03a75 | 2017-11-27 14:30:09 -0800 | [diff] [blame] | 66 | webrtc::RtpTransceiverDirection direction; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 67 | bool stopped; |
| 68 | TransportOptions transport_options; |
| 69 | // Note: There's no equivalent "RtpReceiverOptions" because only send |
| 70 | // stream information goes in the local descriptions. |
| 71 | std::vector<SenderOptions> sender_options; |
| 72 | |
| 73 | private: |
| 74 | // Doesn't DCHECK on |type|. |
| 75 | void AddSenderInternal(const std::string& track_id, |
Steve Anton | 8ffb9c3 | 2017-08-31 15:45:38 -0700 | [diff] [blame] | 76 | const std::vector<std::string>& stream_ids, |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 77 | int num_sim_layers); |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 78 | }; |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 79 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 80 | // Provides a mechanism for describing how m= sections should be generated. |
| 81 | // The m= section with index X will use media_description_options[X]. There |
| 82 | // must be an option for each existing section if creating an answer, or a |
| 83 | // subsequent offer. |
| 84 | struct MediaSessionOptions { |
| 85 | MediaSessionOptions() {} |
olka | 3c74766 | 2017-08-17 06:50:32 -0700 | [diff] [blame] | 86 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 87 | bool has_audio() const { return HasMediaDescription(MEDIA_TYPE_AUDIO); } |
| 88 | bool has_video() const { return HasMediaDescription(MEDIA_TYPE_VIDEO); } |
| 89 | bool has_data() const { return HasMediaDescription(MEDIA_TYPE_DATA); } |
| 90 | |
| 91 | bool HasMediaDescription(MediaType type) const; |
| 92 | |
| 93 | DataChannelType data_channel_type = DCT_NONE; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 94 | bool vad_enabled = true; // When disabled, removes all CN codecs from SDP. |
| 95 | bool rtcp_mux_enabled = true; |
| 96 | bool bundle_enabled = false; |
Johannes Kron | 89f874e | 2018-11-12 10:25:48 +0100 | [diff] [blame] | 97 | bool offer_extmap_allow_mixed = false; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 98 | std::string rtcp_cname = kDefaultRtcpCname; |
Benjamin Wright | a54daf1 | 2018-10-11 15:33:17 -0700 | [diff] [blame] | 99 | webrtc::CryptoOptions crypto_options; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 100 | // List of media description options in the same order that the media |
| 101 | // descriptions will be generated. |
| 102 | std::vector<MediaDescriptionOptions> media_description_options; |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 103 | std::vector<IceParameters> pooled_ice_credentials; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 104 | }; |
| 105 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 106 | // Creates media session descriptions according to the supplied codecs and |
| 107 | // other fields, as well as the supplied per-call options. |
| 108 | // When creating answers, performs the appropriate negotiation |
| 109 | // of the various fields to determine the proper result. |
| 110 | class MediaSessionDescriptionFactory { |
| 111 | public: |
| 112 | // Default ctor; use methods below to set configuration. |
| 113 | // The TransportDescriptionFactory is not owned by MediaSessionDescFactory, |
| 114 | // so it must be kept alive by the user of this class. |
| 115 | explicit MediaSessionDescriptionFactory( |
| 116 | const TransportDescriptionFactory* factory); |
| 117 | // This helper automatically sets up the factory to get its configuration |
| 118 | // from the specified ChannelManager. |
| 119 | MediaSessionDescriptionFactory(ChannelManager* cmanager, |
| 120 | const TransportDescriptionFactory* factory); |
| 121 | |
ossu | dedfd28 | 2016-06-14 07:12:39 -0700 | [diff] [blame] | 122 | const AudioCodecs& audio_sendrecv_codecs() const; |
ossu | 075af92 | 2016-06-14 03:29:38 -0700 | [diff] [blame] | 123 | const AudioCodecs& audio_send_codecs() const; |
| 124 | const AudioCodecs& audio_recv_codecs() const; |
| 125 | void set_audio_codecs(const AudioCodecs& send_codecs, |
| 126 | const AudioCodecs& recv_codecs); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 127 | void set_audio_rtp_header_extensions(const RtpHeaderExtensions& extensions) { |
| 128 | audio_rtp_extensions_ = extensions; |
| 129 | } |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 130 | RtpHeaderExtensions audio_rtp_header_extensions() const { |
Steve Anton | 1b8773d | 2018-04-06 11:13:34 -0700 | [diff] [blame] | 131 | RtpHeaderExtensions extensions = audio_rtp_extensions_; |
| 132 | // If we are Unified Plan, also offer the MID header extension. |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 133 | if (is_unified_plan_) { |
Steve Anton | 1b8773d | 2018-04-06 11:13:34 -0700 | [diff] [blame] | 134 | extensions.push_back(webrtc::RtpExtension( |
| 135 | webrtc::RtpExtension::kMidUri, webrtc::RtpExtension::kMidDefaultId)); |
| 136 | } |
| 137 | return extensions; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 138 | } |
| 139 | const VideoCodecs& video_codecs() const { return video_codecs_; } |
| 140 | void set_video_codecs(const VideoCodecs& codecs) { video_codecs_ = codecs; } |
| 141 | void set_video_rtp_header_extensions(const RtpHeaderExtensions& extensions) { |
| 142 | video_rtp_extensions_ = extensions; |
| 143 | } |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 144 | RtpHeaderExtensions video_rtp_header_extensions() const { |
Steve Anton | 1b8773d | 2018-04-06 11:13:34 -0700 | [diff] [blame] | 145 | RtpHeaderExtensions extensions = video_rtp_extensions_; |
| 146 | // If we are Unified Plan, also offer the MID header extension. |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 147 | if (is_unified_plan_) { |
Steve Anton | 1b8773d | 2018-04-06 11:13:34 -0700 | [diff] [blame] | 148 | extensions.push_back(webrtc::RtpExtension( |
| 149 | webrtc::RtpExtension::kMidUri, webrtc::RtpExtension::kMidDefaultId)); |
| 150 | } |
| 151 | return extensions; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 152 | } |
| 153 | const DataCodecs& data_codecs() const { return data_codecs_; } |
| 154 | void set_data_codecs(const DataCodecs& codecs) { data_codecs_ = codecs; } |
| 155 | SecurePolicy secure() const { return secure_; } |
| 156 | void set_secure(SecurePolicy s) { secure_ = s; } |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 157 | |
jbauch | 5869f50 | 2017-06-29 12:31:36 -0700 | [diff] [blame] | 158 | void set_enable_encrypted_rtp_header_extensions(bool enable) { |
| 159 | enable_encrypted_rtp_header_extensions_ = enable; |
| 160 | } |
| 161 | |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 162 | void set_is_unified_plan(bool is_unified_plan) { |
| 163 | is_unified_plan_ = is_unified_plan; |
| 164 | } |
| 165 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 166 | SessionDescription* CreateOffer( |
| 167 | const MediaSessionOptions& options, |
| 168 | const SessionDescription* current_description) const; |
| 169 | SessionDescription* CreateAnswer( |
zstein | 4b2e082 | 2017-02-17 19:48:38 -0800 | [diff] [blame] | 170 | const SessionDescription* offer, |
| 171 | const MediaSessionOptions& options, |
| 172 | const SessionDescription* current_description) const; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 173 | |
| 174 | private: |
ossu | 075af92 | 2016-06-14 03:29:38 -0700 | [diff] [blame] | 175 | const AudioCodecs& GetAudioCodecsForOffer( |
Steve Anton | 1d03a75 | 2017-11-27 14:30:09 -0800 | [diff] [blame] | 176 | const webrtc::RtpTransceiverDirection& direction) const; |
ossu | 075af92 | 2016-06-14 03:29:38 -0700 | [diff] [blame] | 177 | const AudioCodecs& GetAudioCodecsForAnswer( |
Steve Anton | 1d03a75 | 2017-11-27 14:30:09 -0800 | [diff] [blame] | 178 | const webrtc::RtpTransceiverDirection& offer, |
| 179 | const webrtc::RtpTransceiverDirection& answer) const; |
Steve Anton | 5c72e71 | 2018-12-10 14:25:30 -0800 | [diff] [blame] | 180 | void GetCodecsForOffer( |
| 181 | const std::vector<const ContentInfo*>& current_active_contents, |
| 182 | AudioCodecs* audio_codecs, |
| 183 | VideoCodecs* video_codecs, |
| 184 | DataCodecs* data_codecs) const; |
| 185 | void GetCodecsForAnswer( |
| 186 | const std::vector<const ContentInfo*>& current_active_contents, |
| 187 | const SessionDescription& remote_offer, |
| 188 | AudioCodecs* audio_codecs, |
| 189 | VideoCodecs* video_codecs, |
| 190 | DataCodecs* data_codecs) const; |
| 191 | void GetRtpHdrExtsToOffer( |
| 192 | const std::vector<const ContentInfo*>& current_active_contents, |
Steve Anton | 5c72e71 | 2018-12-10 14:25:30 -0800 | [diff] [blame] | 193 | RtpHeaderExtensions* audio_extensions, |
| 194 | RtpHeaderExtensions* video_extensions) const; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 195 | bool AddTransportOffer(const std::string& content_name, |
| 196 | const TransportOptions& transport_options, |
| 197 | const SessionDescription* current_desc, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 198 | SessionDescription* offer, |
| 199 | IceCredentialsIterator* ice_credentials) const; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 200 | |
Steve Anton | 1a9d3c3 | 2018-12-10 17:18:54 -0800 | [diff] [blame^] | 201 | std::unique_ptr<TransportDescription> CreateTransportAnswer( |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 202 | const std::string& content_name, |
| 203 | const SessionDescription* offer_desc, |
| 204 | const TransportOptions& transport_options, |
deadbeef | b789253 | 2017-02-22 19:35:18 -0800 | [diff] [blame] | 205 | const SessionDescription* current_desc, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 206 | bool require_transport_attributes, |
| 207 | IceCredentialsIterator* ice_credentials) const; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 208 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 209 | bool AddTransportAnswer(const std::string& content_name, |
| 210 | const TransportDescription& transport_desc, |
| 211 | SessionDescription* answer_desc) const; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 212 | |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 213 | // Helpers for adding media contents to the SessionDescription. Returns true |
| 214 | // it succeeds or the media content is not needed, or false if there is any |
| 215 | // error. |
| 216 | |
| 217 | bool AddAudioContentForOffer( |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 218 | const MediaDescriptionOptions& media_description_options, |
| 219 | const MediaSessionOptions& session_options, |
| 220 | const ContentInfo* current_content, |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 221 | const SessionDescription* current_description, |
| 222 | const RtpHeaderExtensions& audio_rtp_extensions, |
| 223 | const AudioCodecs& audio_codecs, |
| 224 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 225 | SessionDescription* desc, |
| 226 | IceCredentialsIterator* ice_credentials) const; |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 227 | |
| 228 | bool AddVideoContentForOffer( |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 229 | const MediaDescriptionOptions& media_description_options, |
| 230 | const MediaSessionOptions& session_options, |
| 231 | const ContentInfo* current_content, |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 232 | const SessionDescription* current_description, |
| 233 | const RtpHeaderExtensions& video_rtp_extensions, |
| 234 | const VideoCodecs& video_codecs, |
| 235 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 236 | SessionDescription* desc, |
| 237 | IceCredentialsIterator* ice_credentials) const; |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 238 | |
| 239 | bool AddDataContentForOffer( |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 240 | const MediaDescriptionOptions& media_description_options, |
| 241 | const MediaSessionOptions& session_options, |
| 242 | const ContentInfo* current_content, |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 243 | const SessionDescription* current_description, |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 244 | const DataCodecs& data_codecs, |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 245 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 246 | SessionDescription* desc, |
| 247 | IceCredentialsIterator* ice_credentials) const; |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 248 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 249 | bool AddAudioContentForAnswer( |
| 250 | const MediaDescriptionOptions& media_description_options, |
| 251 | const MediaSessionOptions& session_options, |
| 252 | const ContentInfo* offer_content, |
| 253 | const SessionDescription* offer_description, |
| 254 | const ContentInfo* current_content, |
| 255 | const SessionDescription* current_description, |
| 256 | const TransportInfo* bundle_transport, |
| 257 | const AudioCodecs& audio_codecs, |
| 258 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 259 | SessionDescription* answer, |
| 260 | IceCredentialsIterator* ice_credentials) const; |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 261 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 262 | bool AddVideoContentForAnswer( |
| 263 | const MediaDescriptionOptions& media_description_options, |
| 264 | const MediaSessionOptions& session_options, |
| 265 | const ContentInfo* offer_content, |
| 266 | const SessionDescription* offer_description, |
| 267 | const ContentInfo* current_content, |
| 268 | const SessionDescription* current_description, |
| 269 | const TransportInfo* bundle_transport, |
| 270 | const VideoCodecs& video_codecs, |
| 271 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 272 | SessionDescription* answer, |
| 273 | IceCredentialsIterator* ice_credentials) const; |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 274 | |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 275 | bool AddDataContentForAnswer( |
| 276 | const MediaDescriptionOptions& media_description_options, |
| 277 | const MediaSessionOptions& session_options, |
| 278 | const ContentInfo* offer_content, |
| 279 | const SessionDescription* offer_description, |
| 280 | const ContentInfo* current_content, |
| 281 | const SessionDescription* current_description, |
| 282 | const TransportInfo* bundle_transport, |
| 283 | const DataCodecs& data_codecs, |
| 284 | StreamParamsVec* current_streams, |
Jonas Oreland | 1cd39fa | 2018-10-11 07:47:12 +0200 | [diff] [blame] | 285 | SessionDescription* answer, |
| 286 | IceCredentialsIterator* ice_credentials) const; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 287 | |
| 288 | void ComputeAudioCodecsIntersectionAndUnion(); |
jiayl@webrtc.org | e7d47a1 | 2014-08-05 19:19:05 +0000 | [diff] [blame] | 289 | |
Steve Anton | 8f66ddb | 2018-12-10 16:08:05 -0800 | [diff] [blame] | 290 | bool is_unified_plan_ = false; |
ossu | 075af92 | 2016-06-14 03:29:38 -0700 | [diff] [blame] | 291 | AudioCodecs audio_send_codecs_; |
| 292 | AudioCodecs audio_recv_codecs_; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 293 | // Intersection of send and recv. |
ossu | 075af92 | 2016-06-14 03:29:38 -0700 | [diff] [blame] | 294 | AudioCodecs audio_sendrecv_codecs_; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 295 | // Union of send and recv. |
| 296 | AudioCodecs all_audio_codecs_; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 297 | RtpHeaderExtensions audio_rtp_extensions_; |
| 298 | VideoCodecs video_codecs_; |
| 299 | RtpHeaderExtensions video_rtp_extensions_; |
| 300 | DataCodecs data_codecs_; |
jbauch | 5869f50 | 2017-06-29 12:31:36 -0700 | [diff] [blame] | 301 | bool enable_encrypted_rtp_header_extensions_ = false; |
zhihuang | 1c378ed | 2017-08-17 14:10:50 -0700 | [diff] [blame] | 302 | // TODO(zhihuang): Rename secure_ to sdec_policy_; rename the related getter |
| 303 | // and setter. |
| 304 | SecurePolicy secure_ = SEC_DISABLED; |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 305 | const TransportDescriptionFactory* transport_desc_factory_; |
| 306 | }; |
| 307 | |
| 308 | // Convenience functions. |
| 309 | bool IsMediaContent(const ContentInfo* content); |
| 310 | bool IsAudioContent(const ContentInfo* content); |
| 311 | bool IsVideoContent(const ContentInfo* content); |
| 312 | bool IsDataContent(const ContentInfo* content); |
deadbeef | 0ed85b2 | 2016-02-23 17:24:52 -0800 | [diff] [blame] | 313 | const ContentInfo* GetFirstMediaContent(const ContentInfos& contents, |
| 314 | MediaType media_type); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 315 | const ContentInfo* GetFirstAudioContent(const ContentInfos& contents); |
| 316 | const ContentInfo* GetFirstVideoContent(const ContentInfos& contents); |
| 317 | const ContentInfo* GetFirstDataContent(const ContentInfos& contents); |
Steve Anton | ad7bffc | 2018-01-22 10:21:56 -0800 | [diff] [blame] | 318 | const ContentInfo* GetFirstMediaContent(const SessionDescription* sdesc, |
| 319 | MediaType media_type); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 320 | const ContentInfo* GetFirstAudioContent(const SessionDescription* sdesc); |
| 321 | const ContentInfo* GetFirstVideoContent(const SessionDescription* sdesc); |
| 322 | const ContentInfo* GetFirstDataContent(const SessionDescription* sdesc); |
| 323 | const AudioContentDescription* GetFirstAudioContentDescription( |
| 324 | const SessionDescription* sdesc); |
| 325 | const VideoContentDescription* GetFirstVideoContentDescription( |
| 326 | const SessionDescription* sdesc); |
| 327 | const DataContentDescription* GetFirstDataContentDescription( |
| 328 | const SessionDescription* sdesc); |
Taylor Brandstetter | dc4eb8c | 2016-05-12 08:14:50 -0700 | [diff] [blame] | 329 | // Non-const versions of the above functions. |
| 330 | // Useful when modifying an existing description. |
Steve Anton | 36b29d1 | 2017-10-30 09:57:42 -0700 | [diff] [blame] | 331 | ContentInfo* GetFirstMediaContent(ContentInfos* contents, MediaType media_type); |
| 332 | ContentInfo* GetFirstAudioContent(ContentInfos* contents); |
| 333 | ContentInfo* GetFirstVideoContent(ContentInfos* contents); |
| 334 | ContentInfo* GetFirstDataContent(ContentInfos* contents); |
Steve Anton | ad7bffc | 2018-01-22 10:21:56 -0800 | [diff] [blame] | 335 | ContentInfo* GetFirstMediaContent(SessionDescription* sdesc, |
| 336 | MediaType media_type); |
Taylor Brandstetter | dc4eb8c | 2016-05-12 08:14:50 -0700 | [diff] [blame] | 337 | ContentInfo* GetFirstAudioContent(SessionDescription* sdesc); |
| 338 | ContentInfo* GetFirstVideoContent(SessionDescription* sdesc); |
| 339 | ContentInfo* GetFirstDataContent(SessionDescription* sdesc); |
| 340 | AudioContentDescription* GetFirstAudioContentDescription( |
| 341 | SessionDescription* sdesc); |
| 342 | VideoContentDescription* GetFirstVideoContentDescription( |
| 343 | SessionDescription* sdesc); |
| 344 | DataContentDescription* GetFirstDataContentDescription( |
| 345 | SessionDescription* sdesc); |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 346 | |
deadbeef | 7914b8c | 2017-04-21 03:23:33 -0700 | [diff] [blame] | 347 | // Helper functions to return crypto suites used for SDES. |
Benjamin Wright | a54daf1 | 2018-10-11 15:33:17 -0700 | [diff] [blame] | 348 | void GetSupportedAudioSdesCryptoSuites( |
| 349 | const webrtc::CryptoOptions& crypto_options, |
| 350 | std::vector<int>* crypto_suites); |
| 351 | void GetSupportedVideoSdesCryptoSuites( |
| 352 | const webrtc::CryptoOptions& crypto_options, |
| 353 | std::vector<int>* crypto_suites); |
| 354 | void GetSupportedDataSdesCryptoSuites( |
| 355 | const webrtc::CryptoOptions& crypto_options, |
| 356 | std::vector<int>* crypto_suites); |
deadbeef | 7914b8c | 2017-04-21 03:23:33 -0700 | [diff] [blame] | 357 | void GetSupportedAudioSdesCryptoSuiteNames( |
Benjamin Wright | a54daf1 | 2018-10-11 15:33:17 -0700 | [diff] [blame] | 358 | const webrtc::CryptoOptions& crypto_options, |
Guo-wei Shieh | 521ed7b | 2015-11-18 19:41:53 -0800 | [diff] [blame] | 359 | std::vector<std::string>* crypto_suite_names); |
deadbeef | 7914b8c | 2017-04-21 03:23:33 -0700 | [diff] [blame] | 360 | void GetSupportedVideoSdesCryptoSuiteNames( |
Benjamin Wright | a54daf1 | 2018-10-11 15:33:17 -0700 | [diff] [blame] | 361 | const webrtc::CryptoOptions& crypto_options, |
Guo-wei Shieh | 521ed7b | 2015-11-18 19:41:53 -0800 | [diff] [blame] | 362 | std::vector<std::string>* crypto_suite_names); |
deadbeef | 7914b8c | 2017-04-21 03:23:33 -0700 | [diff] [blame] | 363 | void GetSupportedDataSdesCryptoSuiteNames( |
Benjamin Wright | a54daf1 | 2018-10-11 15:33:17 -0700 | [diff] [blame] | 364 | const webrtc::CryptoOptions& crypto_options, |
Guo-wei Shieh | 521ed7b | 2015-11-18 19:41:53 -0800 | [diff] [blame] | 365 | std::vector<std::string>* crypto_suite_names); |
| 366 | |
Steve Anton | fa2260d | 2017-12-28 16:38:23 -0800 | [diff] [blame] | 367 | // Returns true if the given media section protocol indicates use of RTP. |
| 368 | bool IsRtpProtocol(const std::string& protocol); |
| 369 | |
henrike@webrtc.org | 28e2075 | 2013-07-10 00:45:36 +0000 | [diff] [blame] | 370 | } // namespace cricket |
| 371 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 372 | #endif // PC_MEDIASESSION_H_ |