| Index: webrtc/modules/congestion_controller/probe_bitrate_estimator.h
|
| diff --git a/webrtc/modules/congestion_controller/probe_bitrate_estimator.h b/webrtc/modules/congestion_controller/probe_bitrate_estimator.h
|
| index 7f0c4569c97f039976e822d94887987d66e8e994..4d58b509407d0545998a55938abcf06f697ee647 100644
|
| --- a/webrtc/modules/congestion_controller/probe_bitrate_estimator.h
|
| +++ b/webrtc/modules/congestion_controller/probe_bitrate_estimator.h
|
| @@ -11,8 +11,9 @@
|
| #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_
|
| #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_
|
|
|
| -#include <map>
|
| #include <limits>
|
| +#include <map>
|
| +#include <set>
|
|
|
| #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
|
|
|
| @@ -40,7 +41,7 @@ class ProbeBitrateEstimator {
|
|
|
| private:
|
| struct AggregatedCluster {
|
| - int num_probes = 0;
|
| + std::set<uint16_t> sequence_numbers;
|
| int64_t first_send_ms = std::numeric_limits<int64_t>::max();
|
| int64_t last_send_ms = 0;
|
| int64_t first_receive_ms = std::numeric_limits<int64_t>::max();
|
|
|