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/logging/rtc_event_log/mock/mock_rtc_event_log.h" | 17 #include "webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h" |
18 #include "webrtc/modules/congestion_controller/acknowledge_bitrate_estimator.h" | 18 #include "webrtc/modules/congestion_controller/acknowledged_bitrate_estimator.h" |
19 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" | 19 #include "webrtc/modules/remote_bitrate_estimator/include/send_time_history.h" |
20 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" | 20 #include "webrtc/modules/remote_bitrate_estimator/test/bwe.h" |
21 | 21 |
22 namespace webrtc { | 22 namespace webrtc { |
23 namespace testing { | 23 namespace testing { |
24 namespace bwe { | 24 namespace bwe { |
25 | 25 |
26 class SendSideBweSender : public BweSender, public RemoteBitrateObserver { | 26 class SendSideBweSender : public BweSender, public RemoteBitrateObserver { |
27 public: | 27 public: |
28 SendSideBweSender(int kbps, BitrateObserver* observer, Clock* clock); | 28 SendSideBweSender(int kbps, BitrateObserver* observer, Clock* clock); |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 private: | 67 private: |
68 int64_t last_feedback_ms_; | 68 int64_t last_feedback_ms_; |
69 std::vector<PacketFeedback> packet_feedback_vector_; | 69 std::vector<PacketFeedback> packet_feedback_vector_; |
70 }; | 70 }; |
71 | 71 |
72 } // namespace bwe | 72 } // namespace bwe |
73 } // namespace testing | 73 } // namespace testing |
74 } // namespace webrtc | 74 } // namespace webrtc |
75 | 75 |
76 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ | 76 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_ESTIMATORS_SEND_SIDE_H_ |
OLD | NEW |