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

Side by Side Diff: webrtc/modules/congestion_controller/congestion_controller.cc

Issue 2553863003: Parse FlexFEC RTP headers in Call and add integration with BWE. (Closed)
Patch Set: nisse comments 1. Created 4 years 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 (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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 } 256 }
257 257
258 RateLimiter* CongestionController::GetRetransmissionRateLimiter() { 258 RateLimiter* CongestionController::GetRetransmissionRateLimiter() {
259 return retransmission_rate_limiter_.get(); 259 return retransmission_rate_limiter_.get();
260 } 260 }
261 261
262 void CongestionController::EnablePeriodicAlrProbing(bool enable) { 262 void CongestionController::EnablePeriodicAlrProbing(bool enable) {
263 probe_controller_->EnablePeriodicAlrProbing(enable); 263 probe_controller_->EnablePeriodicAlrProbing(enable);
264 } 264 }
265 265
266 bool CongestionController::UseSendSideBwe(
philipel 2016/12/13 13:58:27 If this function is still used, could it be moved
brandtr 2016/12/14 12:55:49 Moved it back to video_receive_stream.cc. When the
267 bool transport_cc,
268 const RtpHeaderExtensionMap& rtp_header_extensions) {
269 // Has the RTCP feedback message been negotiated?
270 if (!transport_cc)
271 return false;
272 // Has the RTP header extension been negotiated?
nisse-webrtc 2016/12/13 11:46:42 Do you still need it? The version I deleted didn't
brandtr 2016/12/13 12:37:36 Ok, I understand. In this CL, I moved the implemen
nisse-webrtc 2016/12/13 12:59:14 I'm afraid I don't understand why the logic is dif
brandtr 2016/12/14 12:55:49 The audio path has simpler logic because only send
273 return rtp_header_extensions.IsRegistered(
274 kRtpExtensionTransportSequenceNumber);
275 }
276
266 void CongestionController::SetAllocatedSendBitrateLimits( 277 void CongestionController::SetAllocatedSendBitrateLimits(
267 int min_send_bitrate_bps, 278 int min_send_bitrate_bps,
268 int max_padding_bitrate_bps) { 279 int max_padding_bitrate_bps) {
269 pacer_->SetSendBitrateLimits(min_send_bitrate_bps, max_padding_bitrate_bps); 280 pacer_->SetSendBitrateLimits(min_send_bitrate_bps, max_padding_bitrate_bps);
270 } 281 }
271 282
272 int64_t CongestionController::GetPacerQueuingDelayMs() const { 283 int64_t CongestionController::GetPacerQueuingDelayMs() const {
273 return IsNetworkDown() ? 0 : pacer_->QueueInMs(); 284 return IsNetworkDown() ? 0 : pacer_->QueueInMs();
274 } 285 }
275 286
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 bool CongestionController::IsSendQueueFull() const { 371 bool CongestionController::IsSendQueueFull() const {
361 return pacer_->ExpectedQueueTimeMs() > PacedSender::kMaxQueueLengthMs; 372 return pacer_->ExpectedQueueTimeMs() > PacedSender::kMaxQueueLengthMs;
362 } 373 }
363 374
364 bool CongestionController::IsNetworkDown() const { 375 bool CongestionController::IsNetworkDown() const {
365 rtc::CritScope cs(&critsect_); 376 rtc::CritScope cs(&critsect_);
366 return network_state_ == kNetworkDown; 377 return network_state_ == kNetworkDown;
367 } 378 }
368 379
369 } // namespace webrtc 380 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698