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 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ | 11 #ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ |
12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ | 12 #define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ |
13 | 13 |
14 #include <memory> | 14 #include <memory> |
15 #include <vector> | 15 #include <vector> |
16 | 16 |
17 #include "webrtc/base/constructormagic.h" | 17 #include "webrtc/modules/pacing/mock/mock_paced_sender.h" |
18 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" | 18 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" |
19 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" | 19 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" |
20 | 20 |
21 namespace webrtc { | 21 namespace webrtc { |
22 namespace testing { | 22 namespace testing { |
23 namespace bwe { | 23 namespace bwe { |
24 | 24 |
25 class FullBweSender : public BweSender, public RemoteBitrateObserver { | 25 class FullBweSender : public BweSender, public RemoteBitrateObserver { |
26 public: | 26 public: |
27 FullBweSender(int kbps, BitrateObserver* observer, Clock* clock); | 27 FullBweSender(int kbps, BitrateObserver* observer, Clock* clock); |
28 virtual ~FullBweSender(); | 28 virtual ~FullBweSender(); |
29 | 29 |
30 int GetFeedbackIntervalMs() const override; | 30 int GetFeedbackIntervalMs() const override; |
31 void GiveFeedback(const FeedbackPacket& feedback) override; | 31 void GiveFeedback(const FeedbackPacket& feedback) override; |
32 void OnPacketsSent(const Packets& packets) override; | 32 void OnPacketsSent(const Packets& packets) override; |
33 void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs, | 33 void OnReceiveBitrateChanged(const std::vector<uint32_t>& ssrcs, |
34 uint32_t bitrate) override; | 34 uint32_t bitrate) override; |
35 int64_t TimeUntilNextProcess() override; | 35 int64_t TimeUntilNextProcess() override; |
36 void Process() override; | 36 void Process() override; |
37 | 37 |
38 protected: | 38 protected: |
| 39 ::testing::NiceMock<MockPacedSender> pacer_; |
39 std::unique_ptr<BitrateController> bitrate_controller_; | 40 std::unique_ptr<BitrateController> bitrate_controller_; |
40 std::unique_ptr<RemoteBitrateEstimator> rbe_; | 41 std::unique_ptr<RemoteBitrateEstimator> rbe_; |
41 std::unique_ptr<RtcpBandwidthObserver> feedback_observer_; | 42 std::unique_ptr<RtcpBandwidthObserver> feedback_observer_; |
42 | 43 |
43 private: | 44 private: |
44 Clock* const clock_; | 45 Clock* const clock_; |
45 RTCPReportBlock report_block_; | 46 RTCPReportBlock report_block_; |
46 SendTimeHistory send_time_history_; | 47 SendTimeHistory send_time_history_; |
47 bool has_received_ack_; | 48 bool has_received_ack_; |
48 uint16_t last_acked_seq_num_; | 49 uint16_t last_acked_seq_num_; |
(...skipping 13 matching lines...) Expand all Loading... |
62 private: | 63 private: |
63 int64_t last_feedback_ms_; | 64 int64_t last_feedback_ms_; |
64 std::vector<PacketInfo> packet_feedback_vector_; | 65 std::vector<PacketInfo> packet_feedback_vector_; |
65 }; | 66 }; |
66 | 67 |
67 } // namespace bwe | 68 } // namespace bwe |
68 } // namespace testing | 69 } // namespace testing |
69 } // namespace webrtc | 70 } // namespace webrtc |
70 | 71 |
71 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ | 72 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ |
OLD | NEW |