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 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 VideoSource* source, | 106 VideoSource* source, |
107 BandwidthEstimatorType estimator); | 107 BandwidthEstimatorType estimator); |
108 virtual ~PacedVideoSender(); | 108 virtual ~PacedVideoSender(); |
109 | 109 |
110 void RunFor(int64_t time_ms, Packets* in_out) override; | 110 void RunFor(int64_t time_ms, Packets* in_out) override; |
111 | 111 |
112 // Implements PacedSender::Callback. | 112 // Implements PacedSender::Callback. |
113 bool TimeToSendPacket(uint32_t ssrc, | 113 bool TimeToSendPacket(uint32_t ssrc, |
114 uint16_t sequence_number, | 114 uint16_t sequence_number, |
115 int64_t capture_time_ms, | 115 int64_t capture_time_ms, |
116 bool retransmission) override; | 116 bool retransmission, |
| 117 int probe_cluster_id) override; |
117 size_t TimeToSendPadding(size_t bytes) override; | 118 size_t TimeToSendPadding(size_t bytes) override; |
118 | 119 |
119 // Implements BitrateObserver. | 120 // Implements BitrateObserver. |
120 void OnNetworkChanged(uint32_t target_bitrate_bps, | 121 void OnNetworkChanged(uint32_t target_bitrate_bps, |
121 uint8_t fraction_lost, | 122 uint8_t fraction_lost, |
122 int64_t rtt) override; | 123 int64_t rtt) override; |
123 | 124 |
124 private: | 125 private: |
125 int64_t TimeUntilNextProcess(const std::list<Module*>& modules); | 126 int64_t TimeUntilNextProcess(const std::list<Module*>& modules); |
126 void CallProcess(const std::list<Module*>& modules); | 127 void CallProcess(const std::list<Module*>& modules); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 int total_sent_bytes_; | 187 int total_sent_bytes_; |
187 int send_limit_bytes_; // Initialized by default as kNoLimit. | 188 int send_limit_bytes_; // Initialized by default as kNoLimit. |
188 int64_t last_generated_packets_ms_; | 189 int64_t last_generated_packets_ms_; |
189 size_t num_recent_sent_packets_; | 190 size_t num_recent_sent_packets_; |
190 uint32_t bitrate_kbps_; | 191 uint32_t bitrate_kbps_; |
191 }; | 192 }; |
192 } // namespace bwe | 193 } // namespace bwe |
193 } // namespace testing | 194 } // namespace testing |
194 } // namespace webrtc | 195 } // namespace webrtc |
195 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_PACKET_SENDER_H_ | 196 #endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_TEST_PACKET_SENDER_H_ |
OLD | NEW |