commit | 9abbf5ae4ec7d688a9b4aa03a405f3faadb74b90 | [log] [tgz] |
---|---|---|
author | michaelt <michaelt@webrtc.org> | Mon Nov 28 07:00:18 2016 -0800 |
committer | Commit bot <commit-bot@chromium.org> | Mon Nov 28 15:00:24 2016 +0000 |
tree | 0cc4ebe773605b5209332a879c0fdacd9a23292c | |
parent | ffc61181d860d9686ab769b6d68e1833309d0944 [diff] [blame] |
Pass time constanct to bwe smoothing filter. BUG=webrtc:6443, webrtc:6303 Review-Url: https://codereview.webrtc.org/2518923003 Cr-Commit-Position: refs/heads/master@{#15266}
diff --git a/webrtc/modules/congestion_controller/include/congestion_controller.h b/webrtc/modules/congestion_controller/include/congestion_controller.h index 8663489..1eb5b34 100644 --- a/webrtc/modules/congestion_controller/include/congestion_controller.h +++ b/webrtc/modules/congestion_controller/include/congestion_controller.h
@@ -48,7 +48,8 @@ public: virtual void OnNetworkChanged(uint32_t bitrate_bps, uint8_t fraction_loss, // 0 - 255. - int64_t rtt_ms) = 0; + int64_t rtt_ms, + int64_t probing_interval_ms) = 0; protected: virtual ~Observer() {}