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

Side by Side Diff: webrtc/tools/event_log_visualizer/analyzer.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
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc ('k') | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 1037 matching lines...) Expand 10 before | Expand all | Expand 10 after
1048 int64_t last_update_us = 0; 1048 int64_t last_update_us = 0;
1049 while (time_us != std::numeric_limits<int64_t>::max()) { 1049 while (time_us != std::numeric_limits<int64_t>::max()) {
1050 clock.AdvanceTimeMicroseconds(time_us - clock.TimeInMicroseconds()); 1050 clock.AdvanceTimeMicroseconds(time_us - clock.TimeInMicroseconds());
1051 if (clock.TimeInMicroseconds() >= NextRtcpTime()) { 1051 if (clock.TimeInMicroseconds() >= NextRtcpTime()) {
1052 RTC_DCHECK_EQ(clock.TimeInMicroseconds(), NextRtcpTime()); 1052 RTC_DCHECK_EQ(clock.TimeInMicroseconds(), NextRtcpTime());
1053 const LoggedRtcpPacket& rtcp = *rtcp_iterator->second; 1053 const LoggedRtcpPacket& rtcp = *rtcp_iterator->second;
1054 if (rtcp.type == kRtcpTransportFeedback) { 1054 if (rtcp.type == kRtcpTransportFeedback) {
1055 TransportFeedbackObserver* observer = cc.GetTransportFeedbackObserver(); 1055 TransportFeedbackObserver* observer = cc.GetTransportFeedbackObserver();
1056 observer->OnTransportFeedback(*static_cast<rtcp::TransportFeedback*>( 1056 observer->OnTransportFeedback(*static_cast<rtcp::TransportFeedback*>(
1057 rtcp.packet.get())); 1057 rtcp.packet.get()));
1058 std::vector<PacketInfo> feedback = 1058 std::vector<PacketFeedback> feedback =
1059 observer->GetTransportFeedbackVector(); 1059 observer->GetTransportFeedbackVector();
1060 rtc::Optional<uint32_t> bitrate_bps; 1060 rtc::Optional<uint32_t> bitrate_bps;
1061 if (!feedback.empty()) { 1061 if (!feedback.empty()) {
1062 for (const PacketInfo& packet : feedback) 1062 for (const PacketFeedback& packet : feedback)
1063 acked_bitrate.Update(packet.payload_size, packet.arrival_time_ms); 1063 acked_bitrate.Update(packet.payload_size, packet.arrival_time_ms);
1064 bitrate_bps = acked_bitrate.Rate(feedback.back().arrival_time_ms); 1064 bitrate_bps = acked_bitrate.Rate(feedback.back().arrival_time_ms);
1065 } 1065 }
1066 uint32_t y = 0; 1066 uint32_t y = 0;
1067 if (bitrate_bps) 1067 if (bitrate_bps)
1068 y = *bitrate_bps / 1000; 1068 y = *bitrate_bps / 1000;
1069 float x = static_cast<float>(clock.TimeInMicroseconds() - begin_time_) / 1069 float x = static_cast<float>(clock.TimeInMicroseconds() - begin_time_) /
1070 1000000; 1070 1000000;
1071 acked_time_series.points.emplace_back(x, y); 1071 acked_time_series.points.emplace_back(x, y);
1072 } 1072 }
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 1183
1184 int64_t time_us = std::min(NextRtpTime(), NextRtcpTime()); 1184 int64_t time_us = std::min(NextRtpTime(), NextRtcpTime());
1185 while (time_us != std::numeric_limits<int64_t>::max()) { 1185 while (time_us != std::numeric_limits<int64_t>::max()) {
1186 clock.AdvanceTimeMicroseconds(time_us - clock.TimeInMicroseconds()); 1186 clock.AdvanceTimeMicroseconds(time_us - clock.TimeInMicroseconds());
1187 if (clock.TimeInMicroseconds() >= NextRtcpTime()) { 1187 if (clock.TimeInMicroseconds() >= NextRtcpTime()) {
1188 RTC_DCHECK_EQ(clock.TimeInMicroseconds(), NextRtcpTime()); 1188 RTC_DCHECK_EQ(clock.TimeInMicroseconds(), NextRtcpTime());
1189 const LoggedRtcpPacket& rtcp = *rtcp_iterator->second; 1189 const LoggedRtcpPacket& rtcp = *rtcp_iterator->second;
1190 if (rtcp.type == kRtcpTransportFeedback) { 1190 if (rtcp.type == kRtcpTransportFeedback) {
1191 feedback_adapter.OnTransportFeedback( 1191 feedback_adapter.OnTransportFeedback(
1192 *static_cast<rtcp::TransportFeedback*>(rtcp.packet.get())); 1192 *static_cast<rtcp::TransportFeedback*>(rtcp.packet.get()));
1193 std::vector<PacketInfo> feedback = 1193 std::vector<PacketFeedback> feedback =
1194 feedback_adapter.GetTransportFeedbackVector(); 1194 feedback_adapter.GetTransportFeedbackVector();
1195 for (const PacketInfo& packet : feedback) { 1195 for (const PacketFeedback& packet : feedback) {
1196 int64_t y = packet.arrival_time_ms - packet.send_time_ms; 1196 int64_t y = packet.arrival_time_ms - packet.send_time_ms;
1197 float x = 1197 float x =
1198 static_cast<float>(clock.TimeInMicroseconds() - begin_time_) / 1198 static_cast<float>(clock.TimeInMicroseconds() - begin_time_) /
1199 1000000; 1199 1000000;
1200 estimated_base_delay_ms = std::min(y, estimated_base_delay_ms); 1200 estimated_base_delay_ms = std::min(y, estimated_base_delay_ms);
1201 time_series.points.emplace_back(x, y); 1201 time_series.points.emplace_back(x, y);
1202 } 1202 }
1203 } 1203 }
1204 ++rtcp_iterator; 1204 ++rtcp_iterator;
1205 } 1205 }
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
1381 return rtc::Optional<float>(); 1381 return rtc::Optional<float>();
1382 }); 1382 });
1383 plot->series_list_.back().label = "Audio encoder number of channels"; 1383 plot->series_list_.back().label = "Audio encoder number of channels";
1384 plot->SetXAxis(0, call_duration_s_, "Time (s)", kLeftMargin, kRightMargin); 1384 plot->SetXAxis(0, call_duration_s_, "Time (s)", kLeftMargin, kRightMargin);
1385 plot->SetSuggestedYAxis(0, 1, "Number of channels (1 (mono)/2 (stereo))", 1385 plot->SetSuggestedYAxis(0, 1, "Number of channels (1 (mono)/2 (stereo))",
1386 kBottomMargin, kTopMargin); 1386 kBottomMargin, kTopMargin);
1387 plot->SetTitle("Reported audio encoder number of channels"); 1387 plot->SetTitle("Reported audio encoder number of channels");
1388 } 1388 }
1389 } // namespace plotting 1389 } // namespace plotting
1390 } // namespace webrtc 1390 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/rtp_sender_unittest.cc ('k') | webrtc/voice_engine/channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698