Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/packet_sender.h

Issue 1917793002: Remove SendPacer from ViEEncoder (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed code review comments. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 VideoSource* source_; 93 VideoSource* source_;
94 std::unique_ptr<BweSender> bwe_; 94 std::unique_ptr<BweSender> bwe_;
95 int64_t start_of_run_ms_; 95 int64_t start_of_run_ms_;
96 std::list<Module*> modules_; 96 std::list<Module*> modules_;
97 97
98 private: 98 private:
99 uint32_t previous_sending_bitrate_; 99 uint32_t previous_sending_bitrate_;
100 RTC_DISALLOW_COPY_AND_ASSIGN(VideoSender); 100 RTC_DISALLOW_COPY_AND_ASSIGN(VideoSender);
101 }; 101 };
102 102
103 class PacedVideoSender : public VideoSender, public PacedSender::Callback { 103 class PacedVideoSender : public VideoSender,
104 public PacedSender::SenderDelegate {
104 public: 105 public:
105 PacedVideoSender(PacketProcessorListener* listener, 106 PacedVideoSender(PacketProcessorListener* listener,
106 VideoSource* source, 107 VideoSource* source,
107 BandwidthEstimatorType estimator); 108 BandwidthEstimatorType estimator);
108 virtual ~PacedVideoSender(); 109 virtual ~PacedVideoSender();
109 110
110 void RunFor(int64_t time_ms, Packets* in_out) override; 111 void RunFor(int64_t time_ms, Packets* in_out) override;
111 112
112 // Implements PacedSender::Callback. 113 // Implements PacedSender::Callback.
113 bool TimeToSendPacket(uint32_t ssrc, 114 bool TimeToSendPacket(uint32_t ssrc,
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698