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

Unified Diff: webrtc/pc/mediasession.cc

Issue 1880913002: Accept all the media profiles required by JSEP. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rename a local vairable Created 4 years, 8 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 | « no previous file | webrtc/pc/mediasession_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/mediasession.cc
diff --git a/webrtc/pc/mediasession.cc b/webrtc/pc/mediasession.cc
index a9d1b95c22aee6aae9299315a9ecc05586242336..382cdbc44fde55aa251ff5b5f698d39e424be764 100644
--- a/webrtc/pc/mediasession.cc
+++ b/webrtc/pc/mediasession.cc
@@ -57,6 +57,13 @@ const char kMediaProtocolAvpf[] = "RTP/AVPF";
// RFC5124
const char kMediaProtocolDtlsSavpf[] = "UDP/TLS/RTP/SAVPF";
+// The accepted pattern for media protocol (JSEP Section 5.1.3)
+const std::vector<std::string> kMediaProtocols = {"RTP/SAVPF", "RTP/SAVP",
+ "RTP/AVPF", "RTP/AVP"};
Avi (use Gerrit) 2016/04/13 17:42:05 This is a static initializer.
+const std::vector<std::string> kMediaProtocolsDtls = {
+ "UDP/TLS/RTP/SAVPF", "UDP/TLS/RTP/SAVP", "TCP/TLS/RTP/SAVPF",
+ "TCP/TLS/RTP/SAVP"};
Avi (use Gerrit) 2016/04/13 17:42:05 This is a static initializer.
+
// We always generate offers with "UDP/TLS/RTP/SAVPF" when using DTLS-SRTP,
// but we tolerate "RTP/SAVPF" in offers we receive, for compatibility.
const char kMediaProtocolSavpf[] = "RTP/SAVPF";
@@ -1105,6 +1112,12 @@ static bool CreateMediaContentAnswer(
return true;
}
+static bool IsProtocolFound(const std::vector<std::string> protocols,
+ const std::string& protocol) {
+ return std::find(protocols.begin(), protocols.end(), protocol) !=
+ protocols.end();
+}
+
static bool IsMediaProtocolSupported(MediaType type,
const std::string& protocol,
bool secure_transport) {
@@ -1117,9 +1130,8 @@ static bool IsMediaProtocolSupported(MediaType type,
// Since not all applications serialize and deserialize the media protocol,
// we will have to accept |protocol| to be empty.
- return protocol == kMediaProtocolAvpf || protocol.empty() ||
- protocol == kMediaProtocolSavpf ||
- (protocol == kMediaProtocolDtlsSavpf && secure_transport);
+ return protocol.empty() || IsProtocolFound(kMediaProtocols, protocol) ||
+ (IsProtocolFound(kMediaProtocolsDtls, protocol) && secure_transport);
}
static void SetMediaProtocol(bool secure_transport,
« no previous file with comments | « no previous file | webrtc/pc/mediasession_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698