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

Unified Diff: webrtc/modules/congestion_controller/include/congestion_controller.h

Issue 2553863003: Parse FlexFEC RTP headers in Call and add integration with BWE. (Closed)
Patch Set: Work in progress. 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/include/congestion_controller.h
diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h
index f2bec76f2523c175b90577f24c72f3a1c56040c2..58f012770d1ba8109f4dab2e007f874d150dc5ed 100644
--- a/webrtc/modules/congestion_controller/include/congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -36,6 +36,7 @@ class RateLimiter;
class RemoteBitrateEstimator;
class RemoteBitrateObserver;
class RtcEventLog;
+class RtpHeaderExtensionMap;
class TransportFeedbackObserver;
class CongestionController : public CallStatsObserver, public Module {
@@ -100,6 +101,11 @@ class CongestionController : public CallStatsObserver, public Module {
RateLimiter* GetRetransmissionRateLimiter();
void EnablePeriodicAlrProbing(bool enable);
+ // Are the necessary RTCP and RTP header extensions enabled for send-side BWE?
+ static bool UseSendSideBwe(
+ bool transport_cc,
danilchap 2016/12/06 15:04:30 what does transport_cc mean?
brandtr 2016/12/12 13:51:07 Before this comment, I actually didn't know. Now I
+ const RtpHeaderExtensionMap& rtp_header_extensions);
+
// SetAllocatedSendBitrateLimits sets bitrates limits imposed by send codec
// settings.
// |min_send_bitrate_bps| is the total minimum send bitrate required by all

Powered by Google App Engine
This is Rietveld 408576698