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