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

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

Issue 2415543002: Set min BWE bitrate form 10kbps to 5kbps and centralize minimum bitrate. (Closed)
Patch Set: Implemented GetMinBitrateBps as static function. Created 4 years, 1 month 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 eb6db3371226352bc921889226084c985b6b3d05..c734a731476d71317db0f80adeaac877e376bc7d 100644
--- a/webrtc/modules/congestion_controller/include/congestion_controller.h
+++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -54,6 +54,9 @@ class CongestionController : public CallStatsObserver, public Module {
protected:
virtual ~Observer() {}
};
+
+ static int GetMinBitrateBps();
stefan-webrtc 2016/11/01 09:09:15 I find it slightly weird that we expose this in th
michaelt 2016/11/01 09:21:55 Moving the CongestionController related classes in
+
CongestionController(Clock* clock,
Observer* observer,
RemoteBitrateObserver* remote_bitrate_observer,

Powered by Google App Engine
This is Rietveld 408576698