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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/congestion_controller/congestion_controller.cc
diff --git a/webrtc/modules/congestion_controller/congestion_controller.cc b/webrtc/modules/congestion_controller/congestion_controller.cc
index 44b2f41e86b85117b1e121ec6c56de1a028c29d4..9f38e5bf674b3d2dd1234c02db1b5e38e8f72d28 100644
--- a/webrtc/modules/congestion_controller/congestion_controller.cc
+++ b/webrtc/modules/congestion_controller/congestion_controller.cc
@@ -263,6 +263,17 @@ void CongestionController::EnablePeriodicAlrProbing(bool enable) {
probe_controller_->EnablePeriodicAlrProbing(enable);
}
+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
+ bool transport_cc,
+ const RtpHeaderExtensionMap& rtp_header_extensions) {
+ // Has the RTCP feedback message been negotiated?
+ if (!transport_cc)
+ return false;
+ // 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
+ return rtp_header_extensions.IsRegistered(
+ kRtpExtensionTransportSequenceNumber);
+}
+
void CongestionController::SetAllocatedSendBitrateLimits(
int min_send_bitrate_bps,
int max_padding_bitrate_bps) {

Powered by Google App Engine
This is Rietveld 408576698