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

Side by Side Diff: webrtc/modules/remote_bitrate_estimator/test/bwe_test_framework.cc

Issue 2710093004: Rename webrtc::PacketInfo to webrtc::PacketFeedback (Closed)
Patch Set: Rebased Created 3 years, 9 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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 RTCPReportBlock report_block) 159 RTCPReportBlock report_block)
160 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms), 160 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms),
161 estimated_bps_(estimated_bps), 161 estimated_bps_(estimated_bps),
162 report_block_(report_block) { 162 report_block_(report_block) {
163 } 163 }
164 164
165 SendSideBweFeedback::SendSideBweFeedback( 165 SendSideBweFeedback::SendSideBweFeedback(
166 int flow_id, 166 int flow_id,
167 int64_t send_time_us, 167 int64_t send_time_us,
168 int64_t last_send_time_ms, 168 int64_t last_send_time_ms,
169 const std::vector<PacketInfo>& packet_feedback_vector) 169 const std::vector<PacketFeedback>& packet_feedback_vector)
170 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms), 170 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms),
171 packet_feedback_vector_(packet_feedback_vector) { 171 packet_feedback_vector_(packet_feedback_vector) {}
172 }
173 172
174 bool IsTimeSorted(const Packets& packets) { 173 bool IsTimeSorted(const Packets& packets) {
175 PacketsConstIt last_it = packets.begin(); 174 PacketsConstIt last_it = packets.begin();
176 for (PacketsConstIt it = last_it; it != packets.end(); ++it) { 175 for (PacketsConstIt it = last_it; it != packets.end(); ++it) {
177 if (it != last_it && **it < **last_it) { 176 if (it != last_it && **it < **last_it) {
178 return false; 177 return false;
179 } 178 }
180 last_it = it; 179 last_it = it;
181 } 180 }
182 return true; 181 return true;
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 uint32_t PeriodicKeyFrameSource::NextPacketSize(uint32_t frame_size, 811 uint32_t PeriodicKeyFrameSource::NextPacketSize(uint32_t frame_size,
813 uint32_t remaining_payload) { 812 uint32_t remaining_payload) {
814 uint32_t fragments = 813 uint32_t fragments =
815 (frame_size + (kMaxPayloadSizeBytes - 1)) / kMaxPayloadSizeBytes; 814 (frame_size + (kMaxPayloadSizeBytes - 1)) / kMaxPayloadSizeBytes;
816 uint32_t avg_size = (frame_size + fragments - 1) / fragments; 815 uint32_t avg_size = (frame_size + fragments - 1) / fragments;
817 return std::min(avg_size, remaining_payload); 816 return std::min(avg_size, remaining_payload);
818 } 817 }
819 } // namespace bwe 818 } // namespace bwe
820 } // namespace testing 819 } // namespace testing
821 } // namespace webrtc 820 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698