| Index: webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.cc
|
| diff --git a/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.cc b/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.cc
|
| index 9df378c64b8f24165703eb738e5078b6b7db5fb3..3fa3ac9995b0cbeb168ff2e6466ef6cdcfe49178 100644
|
| --- a/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.cc
|
| +++ b/webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.cc
|
| @@ -12,6 +12,7 @@
|
|
|
| #include <cmath>
|
|
|
| +#include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h"
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
|
|
| namespace webrtc {
|
| @@ -73,6 +74,8 @@ void AcknowledgedBitrateEstimator::Update(int64_t now_ms, int bytes) {
|
| (sample_var + pred_bitrate_estimate_var);
|
| bitrate_estimate_var_ = sample_var * pred_bitrate_estimate_var /
|
| (sample_var + pred_bitrate_estimate_var);
|
| + BWE_TEST_LOGGING_PLOT(1, "acknowledged_bitrate", now_ms,
|
| + bitrate_estimate_ * 1000);
|
| }
|
|
|
| float AcknowledgedBitrateEstimator::UpdateWindow(int64_t now_ms,
|
|
|