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

Unified Diff: webrtc/modules/congestion_controller/probe_bitrate_estimator.cc

Issue 2710093004: Rename webrtc::PacketInfo to webrtc::PacketFeedback (Closed)
Patch Set: Rebased Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
diff --git a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
index 0a48a2ee3883621a494341b2202bda27fd25835d..6ce84d26cf2f388134c57019680e81fc7dd1f687 100644
--- a/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
+++ b/webrtc/modules/congestion_controller/probe_bitrate_estimator.cc
@@ -37,28 +37,28 @@ namespace webrtc {
ProbeBitrateEstimator::ProbeBitrateEstimator() {}
int ProbeBitrateEstimator::HandleProbeAndEstimateBitrate(
- const PacketInfo& packet_info) {
- int cluster_id = packet_info.pacing_info.probe_cluster_id;
+ const PacketFeedback& packet_feedback) {
+ int cluster_id = packet_feedback.pacing_info.probe_cluster_id;
RTC_DCHECK_NE(cluster_id, PacedPacketInfo::kNotAProbe);
- EraseOldClusters(packet_info.arrival_time_ms - kMaxClusterHistoryMs);
+ EraseOldClusters(packet_feedback.arrival_time_ms - kMaxClusterHistoryMs);
- int payload_size_bits = packet_info.payload_size * 8;
+ int payload_size_bits = packet_feedback.payload_size * 8;
AggregatedCluster* cluster = &clusters_[cluster_id];
- if (packet_info.send_time_ms < cluster->first_send_ms) {
- cluster->first_send_ms = packet_info.send_time_ms;
+ if (packet_feedback.send_time_ms < cluster->first_send_ms) {
+ cluster->first_send_ms = packet_feedback.send_time_ms;
}
- if (packet_info.send_time_ms > cluster->last_send_ms) {
- cluster->last_send_ms = packet_info.send_time_ms;
+ if (packet_feedback.send_time_ms > cluster->last_send_ms) {
+ cluster->last_send_ms = packet_feedback.send_time_ms;
cluster->size_last_send = payload_size_bits;
}
- if (packet_info.arrival_time_ms < cluster->first_receive_ms) {
- cluster->first_receive_ms = packet_info.arrival_time_ms;
+ if (packet_feedback.arrival_time_ms < cluster->first_receive_ms) {
+ cluster->first_receive_ms = packet_feedback.arrival_time_ms;
cluster->size_first_receive = payload_size_bits;
}
- if (packet_info.arrival_time_ms > cluster->last_receive_ms) {
- cluster->last_receive_ms = packet_info.arrival_time_ms;
+ if (packet_feedback.arrival_time_ms > cluster->last_receive_ms) {
+ cluster->last_receive_ms = packet_feedback.arrival_time_ms;
}
cluster->size_total += payload_size_bits;
cluster->num_probes += 1;

Powered by Google App Engine
This is Rietveld 408576698