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

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, 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 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 1273 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 transport_info->description.identity_fingerprint.get() : NULL; 1284 transport_info->description.identity_fingerprint.get() : NULL;
1285 1285
1286 // Add the m and c lines. 1286 // Add the m and c lines.
1287 InitLine(kLineTypeMedia, type, &os); 1287 InitLine(kLineTypeMedia, type, &os);
1288 os << " " << port << " " << media_desc->protocol() << fmt; 1288 os << " " << port << " " << media_desc->protocol() << fmt;
1289 std::string mline = os.str(); 1289 std::string mline = os.str();
1290 UpdateMediaDefaultDestination(candidates, mline, message); 1290 UpdateMediaDefaultDestination(candidates, mline, message);
1291 1291
1292 // RFC 4566 1292 // RFC 4566
1293 // b=AS:<bandwidth> 1293 // b=AS:<bandwidth>
1294 if (media_desc->bandwidth() >= 1000) { 1294 if (media_desc->bandwidth() && (*media_desc->bandwidth() >= 1000)) {
1295 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os); 1295 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os);
1296 os << kSdpDelimiterColon << (media_desc->bandwidth() / 1000); 1296 os << kSdpDelimiterColon << (*media_desc->bandwidth() / 1000);
1297 AddLine(os.str(), message); 1297 AddLine(os.str(), message);
1298 } 1298 }
1299 1299
1300 // Add the a=rtcp line. 1300 // Add the a=rtcp line.
1301 if (IsRtp(media_desc->protocol())) { 1301 if (IsRtp(media_desc->protocol())) {
1302 std::string rtcp_line = GetRtcpLine(candidates); 1302 std::string rtcp_line = GetRtcpLine(candidates);
1303 if (!rtcp_line.empty()) { 1303 if (!rtcp_line.empty()) {
1304 AddLine(rtcp_line, message); 1304 AddLine(rtcp_line, message);
1305 } 1305 }
1306 } 1306 }
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after
2542 } 2542 }
2543 2543
2544 // RFC 4566 2544 // RFC 4566
2545 // b=* (zero or more bandwidth information lines) 2545 // b=* (zero or more bandwidth information lines)
2546 if (IsLineType(line, kLineTypeSessionBandwidth)) { 2546 if (IsLineType(line, kLineTypeSessionBandwidth)) {
2547 std::string bandwidth; 2547 std::string bandwidth;
2548 if (HasAttribute(line, kApplicationSpecificMaximum)) { 2548 if (HasAttribute(line, kApplicationSpecificMaximum)) {
2549 if (!GetValue(line, kApplicationSpecificMaximum, &bandwidth, error)) { 2549 if (!GetValue(line, kApplicationSpecificMaximum, &bandwidth, error)) {
2550 return false; 2550 return false;
2551 } else { 2551 } else {
2552 int b = 0; 2552 int b = 0;
stefan-webrtc 2016/03/18 08:28:40 I'd prefer a better name than "b".
skvlad 2016/03/18 18:01:52 Replaced with "bandwidth_value" ("bandwidth" is us
2553 if (!GetValueFromString(line, bandwidth, &b, error)) { 2553 if (!GetValueFromString(line, bandwidth, &b, error)) {
2554 return false; 2554 return false;
2555 } 2555 }
2556 if (b < 0) {
2557 std::ostringstream description;
2558 description << "The bandwidth value must not be negative";
2559 return ParseFailed(line, description.str(), error);
2560 }
2561
2556 // We should never use more than the default bandwidth for RTP-based 2562 // We should never use more than the default bandwidth for RTP-based
2557 // data channels. Don't allow SDP to set the bandwidth, because 2563 // data channels. Don't allow SDP to set the bandwidth, because
2558 // that would give JS the opportunity to "break the Internet". 2564 // that would give JS the opportunity to "break the Internet".
2559 // See: https://code.google.com/p/chromium/issues/detail?id=280726 2565 // See: https://code.google.com/p/chromium/issues/detail?id=280726
2560 if (media_type == cricket::MEDIA_TYPE_DATA && IsRtp(protocol) && 2566 if (media_type == cricket::MEDIA_TYPE_DATA && IsRtp(protocol) &&
2561 b > cricket::kDataMaxBandwidth / 1000) { 2567 b > cricket::kDataMaxBandwidth / 1000) {
2562 std::ostringstream description; 2568 std::ostringstream description;
2563 description << "RTP-based data channels may not send more than " 2569 description << "RTP-based data channels may not send more than "
2564 << cricket::kDataMaxBandwidth / 1000 << "kbps."; 2570 << cricket::kDataMaxBandwidth / 1000 << "kbps.";
2565 return ParseFailed(line, description.str(), error); 2571 return ParseFailed(line, description.str(), error);
2566 } 2572 }
2567 media_desc->set_bandwidth(b * 1000); 2573 media_desc->set_bandwidth(rtc::Optional<int>(b * 1000));
2568 } 2574 }
2569 } 2575 }
2570 continue; 2576 continue;
2571 } 2577 }
2572 2578
2573 if (!IsLineType(line, kLineTypeAttributes)) { 2579 if (!IsLineType(line, kLineTypeAttributes)) {
2574 // TODO: Handle other lines if needed. 2580 // TODO: Handle other lines if needed.
2575 LOG(LS_INFO) << "Ignored line: " << line; 2581 LOG(LS_INFO) << "Ignored line: " << line;
2576 continue; 2582 continue;
2577 } 2583 }
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after
3147 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( 3153 UpdateCodec<AudioContentDescription, cricket::AudioCodec>(
3148 media_desc, payload_type, feedback_param); 3154 media_desc, payload_type, feedback_param);
3149 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { 3155 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
3150 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( 3156 UpdateCodec<VideoContentDescription, cricket::VideoCodec>(
3151 media_desc, payload_type, feedback_param); 3157 media_desc, payload_type, feedback_param);
3152 } 3158 }
3153 return true; 3159 return true;
3154 } 3160 }
3155 3161
3156 } // namespace webrtc 3162 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698