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

Unified Diff: webrtc/tools/event_log_visualizer/analyzer.cc

Issue 2422063002: Use bayesian estimate of acked bitrate. (Closed)
Patch Set: . 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/tools/event_log_visualizer/analyzer.cc
diff --git a/webrtc/tools/event_log_visualizer/analyzer.cc b/webrtc/tools/event_log_visualizer/analyzer.cc
index 0664ac007cb729921c92e237ccc13ee95d860a2b..87cac5c86083aa0ed8a15d5967ad472f1676fa8a 100644
--- a/webrtc/tools/event_log_visualizer/analyzer.cc
+++ b/webrtc/tools/event_log_visualizer/analyzer.cc
@@ -990,7 +990,7 @@ void EventLogAnalyzer::CreateBweSimulationGraph(Plot* plot) {
return std::numeric_limits<int64_t>::max();
};
- RateStatistics acked_bitrate(1000, 8000);
+ RateStatistics acked_bitrate(250, 8000);
int64_t time_us = std::min(NextRtpTime(), NextRtcpTime());
while (time_us != std::numeric_limits<int64_t>::max()) {

Powered by Google App Engine
This is Rietveld 408576698