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

Side by Side Diff: webrtc/media/base/rtpdataengine.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/media/base/rtpdataengine.h ('k') | webrtc/media/base/rtpdataengine_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 (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "Failed to SetSendCodecs because there is no known codec."; 132 "Failed to SetSendCodecs because there is no known codec.";
133 return false; 133 return false;
134 } 134 }
135 135
136 send_codecs_ = codecs; 136 send_codecs_ = codecs;
137 return true; 137 return true;
138 } 138 }
139 139
140 bool RtpDataMediaChannel::SetSendParameters(const DataSendParameters& params) { 140 bool RtpDataMediaChannel::SetSendParameters(const DataSendParameters& params) {
141 return (SetSendCodecs(params.codecs) && 141 return (SetSendCodecs(params.codecs) &&
142 SetMaxSendBandwidth(params.max_bandwidth_bps)); 142 SetMaxSendBandwidth(params.max_bitrate_bps));
143 } 143 }
144 144
145 bool RtpDataMediaChannel::SetRecvParameters(const DataRecvParameters& params) { 145 bool RtpDataMediaChannel::SetRecvParameters(const DataRecvParameters& params) {
146 return SetRecvCodecs(params.codecs); 146 return SetRecvCodecs(params.codecs);
147 } 147 }
148 148
149 bool RtpDataMediaChannel::AddSendStream(const StreamParams& stream) { 149 bool RtpDataMediaChannel::AddSendStream(const StreamParams& stream) {
150 if (!stream.has_ssrcs()) { 150 if (!stream.has_ssrcs()) {
151 return false; 151 return false;
152 } 152 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 // << ", timestamp=" << header.timestamp 258 // << ", timestamp=" << header.timestamp
259 // << ", len=" << data_len; 259 // << ", len=" << data_len;
260 260
261 ReceiveDataParams params; 261 ReceiveDataParams params;
262 params.ssrc = header.ssrc; 262 params.ssrc = header.ssrc;
263 params.seq_num = header.seq_num; 263 params.seq_num = header.seq_num;
264 params.timestamp = header.timestamp; 264 params.timestamp = header.timestamp;
265 SignalDataReceived(params, data, data_len); 265 SignalDataReceived(params, data, data_len);
266 } 266 }
267 267
268 bool RtpDataMediaChannel::SetMaxSendBandwidth(int bps) { 268 bool RtpDataMediaChannel::SetMaxSendBandwidth(rtc::Optional<int> bitrate) {
269 if (bps <= 0) { 269 int bps = kDataMaxBandwidth;
270 bps = kDataMaxBandwidth; 270 if (bitrate && *bitrate > 0) {
271 bps = *bitrate;
271 } 272 }
272 send_limiter_.reset(new rtc::RateLimiter(bps / 8, 1.0)); 273 send_limiter_.reset(new rtc::RateLimiter(bps / 8, 1.0));
273 LOG(LS_INFO) << "RtpDataMediaChannel::SetSendBandwidth to " << bps << "bps."; 274 LOG(LS_INFO) << "RtpDataMediaChannel::SetSendBandwidth to " << bps << "bps.";
274 return true; 275 return true;
275 } 276 }
276 277
277 bool RtpDataMediaChannel::SendData( 278 bool RtpDataMediaChannel::SendData(
278 const SendDataParams& params, 279 const SendDataParams& params,
279 const rtc::CopyOnWriteBuffer& payload, 280 const rtc::CopyOnWriteBuffer& payload,
280 SendDataResult* result) { 281 SendDataResult* result) {
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 345
345 MediaChannel::SendPacket(&packet, rtc::PacketOptions()); 346 MediaChannel::SendPacket(&packet, rtc::PacketOptions());
346 send_limiter_->Use(packet_len, now); 347 send_limiter_->Use(packet_len, now);
347 if (result) { 348 if (result) {
348 *result = SDR_SUCCESS; 349 *result = SDR_SUCCESS;
349 } 350 }
350 return true; 351 return true;
351 } 352 }
352 353
353 } // namespace cricket 354 } // namespace cricket
OLDNEW
« no previous file with comments | « webrtc/media/base/rtpdataengine.h ('k') | webrtc/media/base/rtpdataengine_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698