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

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

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Remove the session level addr from SessionDescription. Modified the unit tests. 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 // https://tools.ietf.org/html/rfc4566#section-5.7
313 // Media level connection address. If this is specified in the SDP, it will
314 // overwrite the session level address.
Taylor Brandstetter 2017/03/15 17:57:20 This comment could be updated. Something like "May
Zhi Huang 2017/03/16 19:47:26 Done.
315 void set_connection_addr(const rtc::SocketAddress& addr) {
Taylor Brandstetter 2017/03/15 17:57:20 nit: I'd prefer spelling out "connection_address"
Zhi Huang 2017/03/16 19:47:26 Done.
316 connection_addr_ = addr;
317 }
318 const rtc::SocketAddress& connection_addr() const { return connection_addr_; }
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 rtc::SocketAddress connection_addr_;
327 }; 336 };
328 337
329 template <class C> 338 template <class C>
330 class MediaContentDescriptionImpl : public MediaContentDescription { 339 class MediaContentDescriptionImpl : public MediaContentDescription {
331 public: 340 public:
332 typedef C CodecType; 341 typedef C CodecType;
333 342
334 // Codecs should be in preference order (most preferred codec first). 343 // Codecs should be in preference order (most preferred codec first).
335 const std::vector<C>& codecs() const { return codecs_; } 344 const std::vector<C>& codecs() const { return codecs_; }
336 void set_codecs(const std::vector<C>& codecs) { codecs_ = codecs; } 345 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, 624 void GetSupportedVideoCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
616 std::vector<std::string>* crypto_suite_names); 625 std::vector<std::string>* crypto_suite_names);
617 void GetSupportedDataCryptoSuiteNames(const rtc::CryptoOptions& crypto_options, 626 void GetSupportedDataCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
618 std::vector<std::string>* crypto_suite_names); 627 std::vector<std::string>* crypto_suite_names);
619 void GetDefaultSrtpCryptoSuiteNames(const rtc::CryptoOptions& crypto_options, 628 void GetDefaultSrtpCryptoSuiteNames(const rtc::CryptoOptions& crypto_options,
620 std::vector<std::string>* crypto_suite_names); 629 std::vector<std::string>* crypto_suite_names);
621 630
622 } // namespace cricket 631 } // namespace cricket
623 632
624 #endif // WEBRTC_PC_MEDIASESSION_H_ 633 #endif // WEBRTC_PC_MEDIASESSION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698