Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(607)

Side by Side Diff: webrtc/pc/mediasession.h

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Parse the c= line. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2004 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 bool conference_mode() const { return conference_mode_; } 302 bool conference_mode() const { return conference_mode_; }
303 303
304 void set_partial(bool partial) { partial_ = partial; } 304 void set_partial(bool partial) { partial_ = partial; }
305 bool partial() const { return partial_; } 305 bool partial() const { return partial_; }
306 306
307 void set_buffered_mode_latency(int latency) { 307 void set_buffered_mode_latency(int latency) {
308 buffered_mode_latency_ = latency; 308 buffered_mode_latency_ = latency;
309 } 309 }
310 int buffered_mode_latency() const { return buffered_mode_latency_; } 310 int buffered_mode_latency() const { return buffered_mode_latency_; }
311 311
312 void set_media_connection_addr(
313 const rtc::Optional<rtc::SocketAddress>& addr) {
314 media_connection_addr_ = addr;
315 }
316 rtc::Optional<rtc::SocketAddress> media_connection_addr() {
Taylor Brandstetter 2017/03/10 22:41:17 This doesn't need to be an Optional since a value
Zhi Huang 2017/03/15 04:04:59 Done.
317 return media_connection_addr_;
318 }
319
312 protected: 320 protected:
313 bool rtcp_mux_ = false; 321 bool rtcp_mux_ = false;
314 bool rtcp_reduced_size_ = false; 322 bool rtcp_reduced_size_ = false;
315 int bandwidth_ = kAutoBandwidth; 323 int bandwidth_ = kAutoBandwidth;
316 std::string protocol_; 324 std::string protocol_;
317 std::vector<CryptoParams> cryptos_; 325 std::vector<CryptoParams> cryptos_;
318 CryptoType crypto_required_ = CT_NONE; 326 CryptoType crypto_required_ = CT_NONE;
319 std::vector<webrtc::RtpExtension> rtp_header_extensions_; 327 std::vector<webrtc::RtpExtension> rtp_header_extensions_;
320 bool rtp_header_extensions_set_ = false; 328 bool rtp_header_extensions_set_ = false;
321 bool multistream_ = false; 329 bool multistream_ = false;
322 StreamParamsVec streams_; 330 StreamParamsVec streams_;
323 bool conference_mode_ = false; 331 bool conference_mode_ = false;
324 bool partial_ = false; 332 bool partial_ = false;
325 int buffered_mode_latency_ = kBufferedModeDisabled; 333 int buffered_mode_latency_ = kBufferedModeDisabled;
326 MediaContentDirection direction_ = MD_SENDRECV; 334 MediaContentDirection direction_ = MD_SENDRECV;
335 // https://tools.ietf.org/html/rfc4566#page-21
Taylor Brandstetter 2017/03/10 22:41:17 nit: Can link directly to the relevant section: ht
Zhi Huang 2017/03/15 04:04:59 Done.
336 // Media level connection address. If this is specified, it will overwrite the
337 // session level address.
338 rtc::Optional<rtc::SocketAddress> media_connection_addr_;
327 }; 339 };
328 340
329 template <class C> 341 template <class C>
330 class MediaContentDescriptionImpl : public MediaContentDescription { 342 class MediaContentDescriptionImpl : public MediaContentDescription {
331 public: 343 public:
332 typedef C CodecType; 344 typedef C CodecType;
333 345
334 // Codecs should be in preference order (most preferred codec first). 346 // Codecs should be in preference order (most preferred codec first).
335 const std::vector<C>& codecs() const { return codecs_; } 347 const std::vector<C>& codecs() const { return codecs_; }
336 void set_codecs(const std::vector<C>& codecs) { codecs_ = codecs; } 348 void set_codecs(const std::vector<C>& codecs) { codecs_ = codecs; }
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
615 void GetSupportedVideoCryptoSuiteNames(const rtc::CryptoOptions& crypto_options, 627 void GetSupportedVideoCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
616 std::vector<std::string>* crypto_suite_names); 628 std::vector<std::string>* crypto_suite_names);
617 void GetSupportedDataCryptoSuiteNames(const rtc::CryptoOptions& crypto_options, 629 void GetSupportedDataCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
618 std::vector<std::string>* crypto_suite_names); 630 std::vector<std::string>* crypto_suite_names);
619 void GetDefaultSrtpCryptoSuiteNames(const rtc::CryptoOptions& crypto_options, 631 void GetDefaultSrtpCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
620 std::vector<std::string>* crypto_suite_names); 632 std::vector<std::string>* crypto_suite_names);
621 633
622 } // namespace cricket 634 } // namespace cricket
623 635
624 #endif // WEBRTC_PC_MEDIASESSION_H_ 636 #endif // WEBRTC_PC_MEDIASESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698