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

Side by Side Diff: webrtc/modules/congestion_controller/probe_bitrate_estimator.h

Issue 2407143002: Remove GetFeedbackInterval in sender side BWE. (Closed)
Patch Set: Respond to comments Created 3 years, 8 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_ 11 #ifndef WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_
12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_ 12 #define WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_
13 13
14 #include <map> 14 #include <map>
15 #include <limits> 15 #include <limits>
16 16
17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h" 17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h"
18 18
19 namespace webrtc { 19 namespace webrtc {
20 class RtcEventLog; 20 class RtcEventLog;
21 21
22 class ProbeBitrateEstimator { 22 class ProbeBitrateEstimator {
23 public: 23 public:
24 explicit ProbeBitrateEstimator(RtcEventLog* event_log); 24 explicit ProbeBitrateEstimator(RtcEventLog* event_log);
25 25
26 // Should be called for every probe packet we receive feedback about. 26 // Should be called for every probe packet we receive feedback about.
27 // Returns the estimated bitrate if the probe completes a valid cluster. 27 // Returns the estimated bitrate if the probe completes a valid cluster.
28 int HandleProbeAndEstimateBitrate(const PacketFeedback& packet_feedback); 28 int HandleProbeAndEstimateBitrate(const PacketFeedback& packet_feedback);
29 29
30 rtc::Optional<int> FetchAndResetLastEstimatedBitrateBps();
31
30 private: 32 private:
31 struct AggregatedCluster { 33 struct AggregatedCluster {
32 int num_probes = 0; 34 int num_probes = 0;
33 int64_t first_send_ms = std::numeric_limits<int64_t>::max(); 35 int64_t first_send_ms = std::numeric_limits<int64_t>::max();
34 int64_t last_send_ms = 0; 36 int64_t last_send_ms = 0;
35 int64_t first_receive_ms = std::numeric_limits<int64_t>::max(); 37 int64_t first_receive_ms = std::numeric_limits<int64_t>::max();
36 int64_t last_receive_ms = 0; 38 int64_t last_receive_ms = 0;
37 int size_last_send = 0; 39 int size_last_send = 0;
38 int size_first_receive = 0; 40 int size_first_receive = 0;
39 int size_total = 0; 41 int size_total = 0;
40 }; 42 };
41 43
42 // Erases old cluster data that was seen before |timestamp_ms|. 44 // Erases old cluster data that was seen before |timestamp_ms|.
43 void EraseOldClusters(int64_t timestamp_ms); 45 void EraseOldClusters(int64_t timestamp_ms);
44 46
45 std::map<int, AggregatedCluster> clusters_; 47 std::map<int, AggregatedCluster> clusters_;
46 RtcEventLog* const event_log_; 48 RtcEventLog* const event_log_;
49 rtc::Optional<int> estimated_bitrate_bps_;
47 }; 50 };
48 51
49 } // namespace webrtc 52 } // namespace webrtc
50 53
51 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_ 54 #endif // WEBRTC_MODULES_CONGESTION_CONTROLLER_PROBE_BITRATE_ESTIMATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698