| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.h" | 11 #include "webrtc/modules/remote_bitrate_estimator/test/estimators/send_side.h" |
| 12 | 12 |
| 13 #include "webrtc/base/logging.h" | 13 #include "webrtc/base/logging.h" |
| 14 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" | 14 #include "webrtc/modules/remote_bitrate_estimator/remote_bitrate_estimator_abs_s
end_time.h" |
| 15 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" | 15 #include "webrtc/modules/remote_bitrate_estimator/test/bwe_test_logging.h" |
| 16 | 16 |
| 17 namespace webrtc { | 17 namespace webrtc { |
| 18 namespace testing { | 18 namespace testing { |
| 19 namespace bwe { | 19 namespace bwe { |
| 20 | 20 |
| 21 const int kFeedbackIntervalMs = 50; | 21 const int kFeedbackIntervalMs = 50; |
| 22 | 22 |
| 23 FullBweSender::FullBweSender(int kbps, BitrateObserver* observer, Clock* clock) | 23 FullBweSender::FullBweSender(int kbps, BitrateObserver* observer, Clock* clock) |
| 24 : bitrate_controller_( | 24 : bitrate_controller_( |
| 25 BitrateController::CreateBitrateController(clock, observer)), | 25 BitrateController::CreateBitrateController(clock, observer)), |
| 26 rbe_(new RemoteBitrateEstimatorAbsSendTime(this, | 26 rbe_(new RemoteBitrateEstimatorAbsSendTime(this, clock)), |
| 27 clock, | |
| 28 1000 * kMinBitrateKbps)), | |
| 29 feedback_observer_(bitrate_controller_->CreateRtcpBandwidthObserver()), | 27 feedback_observer_(bitrate_controller_->CreateRtcpBandwidthObserver()), |
| 30 clock_(clock), | 28 clock_(clock), |
| 31 send_time_history_(10000), | 29 send_time_history_(10000), |
| 32 has_received_ack_(false), | 30 has_received_ack_(false), |
| 33 last_acked_seq_num_(0) { | 31 last_acked_seq_num_(0) { |
| 34 assert(kbps >= kMinBitrateKbps); | 32 assert(kbps >= kMinBitrateKbps); |
| 35 assert(kbps <= kMaxBitrateKbps); | 33 assert(kbps <= kMaxBitrateKbps); |
| 36 bitrate_controller_->SetStartBitrate(1000 * kbps); | 34 bitrate_controller_->SetStartBitrate(1000 * kbps); |
| 37 bitrate_controller_->SetMinMaxBitrate(1000 * kMinBitrateKbps, | 35 bitrate_controller_->SetMinMaxBitrate(1000 * kMinBitrateKbps, |
| 38 1000 * kMaxBitrateKbps); | 36 1000 * kMaxBitrateKbps); |
| 37 rbe_->SetMinBitrate(1000 * kMinBitrateKbps); |
| 39 } | 38 } |
| 40 | 39 |
| 41 FullBweSender::~FullBweSender() { | 40 FullBweSender::~FullBweSender() { |
| 42 } | 41 } |
| 43 | 42 |
| 44 int FullBweSender::GetFeedbackIntervalMs() const { | 43 int FullBweSender::GetFeedbackIntervalMs() const { |
| 45 return kFeedbackIntervalMs; | 44 return kFeedbackIntervalMs; |
| 46 } | 45 } |
| 47 | 46 |
| 48 void FullBweSender::GiveFeedback(const FeedbackPacket& feedback) { | 47 void FullBweSender::GiveFeedback(const FeedbackPacket& feedback) { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 packet_feedback_vector_.back().arrival_time_ms; | 141 packet_feedback_vector_.back().arrival_time_ms; |
| 143 FeedbackPacket* fb = new SendSideBweFeedback( | 142 FeedbackPacket* fb = new SendSideBweFeedback( |
| 144 flow_id_, now_ms * 1000, corrected_send_time_ms, packet_feedback_vector_); | 143 flow_id_, now_ms * 1000, corrected_send_time_ms, packet_feedback_vector_); |
| 145 packet_feedback_vector_.clear(); | 144 packet_feedback_vector_.clear(); |
| 146 return fb; | 145 return fb; |
| 147 } | 146 } |
| 148 | 147 |
| 149 } // namespace bwe | 148 } // namespace bwe |
| 150 } // namespace testing | 149 } // namespace testing |
| 151 } // namespace webrtc | 150 } // namespace webrtc |
| OLD | NEW |