| Index: webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
|
| index 5e7560a7797def79d1d2026acd971a1487e748e6..241c7d78a165f89fb0fd0d848fb069413c81ab51 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy.cc
|
| @@ -45,13 +45,6 @@ RemoteEstimatorProxy::RemoteEstimatorProxy(Clock* clock,
|
|
|
| RemoteEstimatorProxy::~RemoteEstimatorProxy() {}
|
|
|
| -void RemoteEstimatorProxy::IncomingPacketFeedbackVector(
|
| - const std::vector<PacketInfo>& packet_feedback_vector) {
|
| - rtc::CritScope cs(&lock_);
|
| - for (PacketInfo info : packet_feedback_vector)
|
| - OnPacketArrival(info.sequence_number, info.arrival_time_ms);
|
| -}
|
| -
|
| void RemoteEstimatorProxy::IncomingPacket(int64_t arrival_time_ms,
|
| size_t payload_size,
|
| const RTPHeader& header) {
|
|
|