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

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

Issue 2536753002: Relanding "Pass time constant to bwe smoothing filter." (Closed)
Patch Set: rebasing 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
« no previous file with comments | « webrtc/test/mock_voe_channel_proxy.h ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 f98c5443d79b380593098a860d69615856e02f45..f018b1d7a0b69d1385aa9c885dd2dcb156c180e4 100644
--- a/webrtc/tools/event_log_visualizer/analyzer.cc
+++ b/webrtc/tools/event_log_visualizer/analyzer.cc
@@ -449,9 +449,14 @@ class BitrateObserver : public CongestionController::Observer,
public:
BitrateObserver() : last_bitrate_bps_(0), bitrate_updated_(false) {}
+ // TODO(minyue): remove this when old OnNetworkChanged is deprecated. See
+ // https://bugs.chromium.org/p/webrtc/issues/detail?id=6796
+ using CongestionController::Observer::OnNetworkChanged;
+
void OnNetworkChanged(uint32_t bitrate_bps,
uint8_t fraction_loss,
- int64_t rtt_ms) override {
+ int64_t rtt_ms,
+ int64_t probing_interval_ms) override {
last_bitrate_bps_ = bitrate_bps;
bitrate_updated_ = true;
}
« no previous file with comments | « webrtc/test/mock_voe_channel_proxy.h ('k') | webrtc/video/video_send_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698