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

Unified Diff: webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h

Issue 2415543002: Set min BWE bitrate form 10kbps to 5kbps and centralize minimum bitrate. (Closed)
Patch Set: Fixed unittest Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h
diff --git a/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h b/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h
index fc2278e8419d4974aebd2369143ee30c4c473972..627a96b86cac57781846dbeea80f0801668efce5 100644
--- a/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h
+++ b/webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h
@@ -19,6 +19,10 @@
namespace webrtc {
+namespace remote_bitrate_estimator_defines {
+constexpr int kMinBitrateBps = 5000;
stefan-webrtc 2016/10/17 18:05:04 The description doesn't say that this CL changes t
michaelt 2016/10/25 09:40:56 Done.
+} // remote_bitrate_estimator_defines
+
static const int64_t kBitrateWindowMs = 1000;
extern const char* kBweTypeHistogram;

Powered by Google App Engine
This is Rietveld 408576698