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

Unified Diff: webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc

Issue 2721463003: Remove unused RemoteBitrateEstimator::IncomingPacketFeedbackVector() (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/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc
diff --git a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc
index 7d1b50bf66a2d72090be172d432803068bae9e0b..ea70619eeaaa97ee6416dc287c8c8aa8842e43be 100644
--- a/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc
+++ b/webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_send_time.cc
@@ -208,16 +208,6 @@ bool RemoteBitrateEstimatorAbsSendTime::IsBitrateImproving(
return initial_probe || bitrate_above_estimate;
}
-void RemoteBitrateEstimatorAbsSendTime::IncomingPacketFeedbackVector(
- const std::vector<PacketInfo>& packet_feedback_vector) {
- RTC_DCHECK(network_thread_.CalledOnValidThread());
- for (const auto& packet_info : packet_feedback_vector) {
- IncomingPacketInfo(packet_info.arrival_time_ms,
- ConvertMsTo24Bits(packet_info.send_time_ms),
- packet_info.payload_size, 0);
- }
-}
-
void RemoteBitrateEstimatorAbsSendTime::IncomingPacket(
int64_t arrival_time_ms,
size_t payload_size,

Powered by Google App Engine
This is Rietveld 408576698