| Index: webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.cc
|
| diff --git a/webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.cc b/webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.cc
|
| index 154d68c520c8aab4b33338084374d5eec063c6ea..697e096edabde9d35ee8b73589be2c4e8f69a799 100644
|
| --- a/webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.cc
|
| +++ b/webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.cc
|
| @@ -33,7 +33,7 @@ TcpBweReceiver::~TcpBweReceiver() {
|
|
|
| void TcpBweReceiver::ReceivePacket(int64_t arrival_time_ms,
|
| const MediaPacket& media_packet) {
|
| - latest_owd_ms_ = arrival_time_ms - media_packet.sender_timestamp_us() / 1000;
|
| + latest_owd_ms_ = arrival_time_ms - media_packet.sender_timestamp_ms() / 1000;
|
| acks_.push_back(media_packet.header().sequenceNumber);
|
|
|
| received_packets_.Insert(media_packet.sequence_number(),
|
|
|