aboutsummaryrefslogtreecommitdiff
path: root/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h
diff options
context:
space:
mode:
authorStefan Holmer <stefan@webrtc.org>2015-04-29 14:27:35 +0200
committerStefan Holmer <stefan@webrtc.org>2015-04-29 12:27:38 +0000
commitdea11f9c4351b8cea0ee351d66376ad6dde123de (patch)
tree8156853d3c2f759f5c1004224689e3f08f5c82c6 /webrtc/modules/remote_bitrate_estimator/test/bwe_test.h
parent94cc1fe4af57a01a99a1f76f0ad3d48edf981321 (diff)
downloadwebrtc-dea11f9c4351b8cea0ee351d66376ad6dde123de.tar.gz
Add per flow throughput and delay metrics.
BUG=4548 R=pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/48299004 Cr-Commit-Position: refs/heads/master@{#9112}
Diffstat (limited to 'webrtc/modules/remote_bitrate_estimator/test/bwe_test.h')
-rw-r--r--webrtc/modules/remote_bitrate_estimator/test/bwe_test.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h
index 2de5ac6cef..303aca528c 100644
--- a/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h
+++ b/webrtc/modules/remote_bitrate_estimator/test/bwe_test.h
@@ -78,8 +78,14 @@ class BweTest {
void PrintResults(double max_throughput_kbps,
Stats<double> throughput_kbps,
- Stats<double> delay_ms,
- std::vector<Stats<double>> flow_throughput_kbps);
+ int flow_id,
+ Stats<double> flow_delay_ms,
+ Stats<double> flow_throughput_kbps);
+
+ void PrintResults(double max_throughput_kbps,
+ Stats<double> throughput_kbps,
+ std::map<int, Stats<double>> flow_delay_ms,
+ std::map<int, Stats<double>> flow_throughput_kbps);
void RunFairnessTest(BandwidthEstimatorType bwe_type,
size_t num_media_flows,