Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include <algorithm> |
| 12 | |
| 13 | #include "webrtc/modules/remote_bitrate_estimator/test/estimators/tcp.h" |
| 14 | |
| 15 | #include "testing/gtest/include/gtest/gtest.h" |
| 16 | #include "webrtc/base/common.h" |
| 17 | #include "webrtc/modules/bitrate_controller/include/bitrate_controller.h" |
| 18 | #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" |
Henrik Kjellander | ff761fb | 2015-11-04 07:31:52 | [diff] [blame] | 19 | #include "webrtc/modules/rtp_rtcp/include/receive_statistics.h" |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 20 | |
| 21 | namespace webrtc { |
| 22 | namespace testing { |
| 23 | namespace bwe { |
| 24 | |
| 25 | TcpBweReceiver::TcpBweReceiver(int flow_id) |
Stefan Holmer | 53d0dc3 | 2015-05-07 13:04:19 | [diff] [blame] | 26 | : BweReceiver(flow_id), |
| 27 | last_feedback_ms_(0), |
| 28 | latest_owd_ms_(0) { |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | TcpBweReceiver::~TcpBweReceiver() { |
| 32 | } |
| 33 | |
| 34 | void TcpBweReceiver::ReceivePacket(int64_t arrival_time_ms, |
| 35 | const MediaPacket& media_packet) { |
Cesar Magalhaes | 9c261f2 | 2015-07-15 14:31:18 | [diff] [blame] | 36 | latest_owd_ms_ = arrival_time_ms - media_packet.sender_timestamp_ms() / 1000; |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 37 | acks_.push_back(media_packet.header().sequenceNumber); |
Cesar Magalhaes | 77cabab | 2015-06-08 09:29:08 | [diff] [blame] | 38 | |
Cesar Magalhaes | 9c261f2 | 2015-07-15 14:31:18 | [diff] [blame] | 39 | // Log received packet information. |
| 40 | BweReceiver::ReceivePacket(arrival_time_ms, media_packet); |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | FeedbackPacket* TcpBweReceiver::GetFeedback(int64_t now_ms) { |
Stefan Holmer | 53d0dc3 | 2015-05-07 13:04:19 | [diff] [blame] | 44 | int64_t corrected_send_time_ms = now_ms - latest_owd_ms_; |
Cesar Magalhaes | c81591d | 2015-05-06 20:29:01 | [diff] [blame] | 45 | FeedbackPacket* fb = |
Stefan Holmer | 53d0dc3 | 2015-05-07 13:04:19 | [diff] [blame] | 46 | new TcpFeedback(flow_id_, now_ms * 1000, corrected_send_time_ms, acks_); |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 47 | last_feedback_ms_ = now_ms; |
Stefan Holmer | 3795937 | 2015-04-16 17:55:45 | [diff] [blame] | 48 | acks_.clear(); |
| 49 | return fb; |
| 50 | } |
| 51 | |
| 52 | } // namespace bwe |
| 53 | } // namespace testing |
| 54 | } // namespace webrtc |