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

Side by Side Diff: webrtc/api/webrtcsdp.cc

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback 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 unified diff | Download patch
« no previous file with comments | « webrtc/api/rtpparameters.h ('k') | webrtc/api/webrtcsdp_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2011 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 1279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1290 transport_info->description.identity_fingerprint.get() : NULL; 1290 transport_info->description.identity_fingerprint.get() : NULL;
1291 1291
1292 // Add the m and c lines. 1292 // Add the m and c lines.
1293 InitLine(kLineTypeMedia, type, &os); 1293 InitLine(kLineTypeMedia, type, &os);
1294 os << " " << port << " " << media_desc->protocol() << fmt; 1294 os << " " << port << " " << media_desc->protocol() << fmt;
1295 std::string mline = os.str(); 1295 std::string mline = os.str();
1296 UpdateMediaDefaultDestination(candidates, mline, message); 1296 UpdateMediaDefaultDestination(candidates, mline, message);
1297 1297
1298 // RFC 4566 1298 // RFC 4566
1299 // b=AS:<bandwidth> 1299 // b=AS:<bandwidth>
1300 if (media_desc->bandwidth() >= 1000) { 1300 if (media_desc->bandwidth() && (*media_desc->bandwidth() >= 1000)) {
1301 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os); 1301 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os);
1302 os << kSdpDelimiterColon << (media_desc->bandwidth() / 1000); 1302 os << kSdpDelimiterColon << (*media_desc->bandwidth() / 1000);
1303 AddLine(os.str(), message); 1303 AddLine(os.str(), message);
1304 } 1304 }
1305 1305
1306 // Add the a=rtcp line. 1306 // Add the a=rtcp line.
1307 if (IsRtp(media_desc->protocol())) { 1307 if (IsRtp(media_desc->protocol())) {
1308 std::string rtcp_line = GetRtcpLine(candidates); 1308 std::string rtcp_line = GetRtcpLine(candidates);
1309 if (!rtcp_line.empty()) { 1309 if (!rtcp_line.empty()) {
1310 AddLine(rtcp_line, message); 1310 AddLine(rtcp_line, message);
1311 } 1311 }
1312 } 1312 }
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2551 } 2551 }
2552 2552
2553 // RFC 4566 2553 // RFC 4566
2554 // b=* (zero or more bandwidth information lines) 2554 // b=* (zero or more bandwidth information lines)
2555 if (IsLineType(line, kLineTypeSessionBandwidth)) { 2555 if (IsLineType(line, kLineTypeSessionBandwidth)) {
2556 std::string bandwidth; 2556 std::string bandwidth;
2557 if (HasAttribute(line, kApplicationSpecificMaximum)) { 2557 if (HasAttribute(line, kApplicationSpecificMaximum)) {
2558 if (!GetValue(line, kApplicationSpecificMaximum, &bandwidth, error)) { 2558 if (!GetValue(line, kApplicationSpecificMaximum, &bandwidth, error)) {
2559 return false; 2559 return false;
2560 } else { 2560 } else {
2561 int b = 0; 2561 int bandwidth_value = 0;
2562 if (!GetValueFromString(line, bandwidth, &b, error)) { 2562 if (!GetValueFromString(line, bandwidth, &bandwidth_value, error)) {
2563 return false; 2563 return false;
2564 } 2564 }
2565 if (bandwidth_value < 0) {
2566 std::ostringstream description;
2567 description << "The bandwidth value must not be negative";
2568 return ParseFailed(line, description.str(), error);
2569 }
2570
2565 // We should never use more than the default bandwidth for RTP-based 2571 // We should never use more than the default bandwidth for RTP-based
2566 // data channels. Don't allow SDP to set the bandwidth, because 2572 // data channels. Don't allow SDP to set the bandwidth, because
2567 // that would give JS the opportunity to "break the Internet". 2573 // that would give JS the opportunity to "break the Internet".
2568 // See: https://code.google.com/p/chromium/issues/detail?id=280726 2574 // See: https://code.google.com/p/chromium/issues/detail?id=280726
2569 if (media_type == cricket::MEDIA_TYPE_DATA && IsRtp(protocol) && 2575 if (media_type == cricket::MEDIA_TYPE_DATA && IsRtp(protocol) &&
2570 b > cricket::kDataMaxBandwidth / 1000) { 2576 bandwidth_value > cricket::kDataMaxBandwidth / 1000) {
2571 std::ostringstream description; 2577 std::ostringstream description;
2572 description << "RTP-based data channels may not send more than " 2578 description << "RTP-based data channels may not send more than "
2573 << cricket::kDataMaxBandwidth / 1000 << "kbps."; 2579 << cricket::kDataMaxBandwidth / 1000 << "kbps.";
2574 return ParseFailed(line, description.str(), error); 2580 return ParseFailed(line, description.str(), error);
2575 } 2581 }
2576 media_desc->set_bandwidth(b * 1000); 2582 media_desc->set_bandwidth(rtc::Optional<int>(1000 * bandwidth_value));
2577 } 2583 }
2578 } 2584 }
2579 continue; 2585 continue;
2580 } 2586 }
2581 2587
2582 if (!IsLineType(line, kLineTypeAttributes)) { 2588 if (!IsLineType(line, kLineTypeAttributes)) {
2583 // TODO: Handle other lines if needed. 2589 // TODO: Handle other lines if needed.
2584 LOG(LS_INFO) << "Ignored line: " << line; 2590 LOG(LS_INFO) << "Ignored line: " << line;
2585 continue; 2591 continue;
2586 } 2592 }
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
3156 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( 3162 UpdateCodec<AudioContentDescription, cricket::AudioCodec>(
3157 media_desc, payload_type, feedback_param); 3163 media_desc, payload_type, feedback_param);
3158 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { 3164 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
3159 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( 3165 UpdateCodec<VideoContentDescription, cricket::VideoCodec>(
3160 media_desc, payload_type, feedback_param); 3166 media_desc, payload_type, feedback_param);
3161 } 3167 }
3162 return true; 3168 return true;
3163 } 3169 }
3164 3170
3165 } // namespace webrtc 3171 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/api/rtpparameters.h ('k') | webrtc/api/webrtcsdp_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698