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

Unified Diff: webrtc/pc/mediasession.h

Issue 2742903002: Parse the connection data in SDP (c= line). (Closed)
Patch Set: Monior fix according to the style guide. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/pc/jsepsessiondescription_unittest.cc ('k') | webrtc/pc/webrtcsdp.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/mediasession.h
diff --git a/webrtc/pc/mediasession.h b/webrtc/pc/mediasession.h
index a901e1d75a3e75c129f40d1b1c7694eea55ab8ae..9474256ee3cc701b56650960d4aeaaf25ad4c365 100644
--- a/webrtc/pc/mediasession.h
+++ b/webrtc/pc/mediasession.h
@@ -309,6 +309,16 @@ class MediaContentDescription : public ContentDescription {
}
int buffered_mode_latency() const { return buffered_mode_latency_; }
+ // https://tools.ietf.org/html/rfc4566#section-5.7
+ // May be present at the media or session level of SDP. If present at both
+ // levels, the media-level attribute overwrites the session-level one.
+ void set_connection_address(const rtc::SocketAddress& address) {
+ connection_address_ = address;
+ }
+ const rtc::SocketAddress& connection_address() const {
+ return connection_address_;
+ }
+
protected:
bool rtcp_mux_ = false;
bool rtcp_reduced_size_ = false;
@@ -324,6 +334,7 @@ class MediaContentDescription : public ContentDescription {
bool partial_ = false;
int buffered_mode_latency_ = kBufferedModeDisabled;
MediaContentDirection direction_ = MD_SENDRECV;
+ rtc::SocketAddress connection_address_;
};
template <class C>
« no previous file with comments | « webrtc/pc/jsepsessiondescription_unittest.cc ('k') | webrtc/pc/webrtcsdp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698