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

Side by Side Diff: webrtc/pc/statscollector.cc

Issue 2681663005: Reland of Add QP sum stats for received streams. (Closed)
Patch Set: Created 3 years, 10 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/video_coding/test/test_util.cc ('k') | webrtc/pc/statscollector_unittest.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 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2012 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) { 214 void ExtractStats(const cricket::VideoReceiverInfo& info, StatsReport* report) {
215 ExtractCommonReceiveProperties(info, report); 215 ExtractCommonReceiveProperties(info, report);
216 report->AddString(StatsReport::kStatsValueNameCodecImplementationName, 216 report->AddString(StatsReport::kStatsValueNameCodecImplementationName,
217 info.decoder_implementation_name); 217 info.decoder_implementation_name);
218 report->AddInt64(StatsReport::kStatsValueNameBytesReceived, 218 report->AddInt64(StatsReport::kStatsValueNameBytesReceived,
219 info.bytes_rcvd); 219 info.bytes_rcvd);
220 if (info.capture_start_ntp_time_ms >= 0) { 220 if (info.capture_start_ntp_time_ms >= 0) {
221 report->AddInt64(StatsReport::kStatsValueNameCaptureStartNtpTimeMs, 221 report->AddInt64(StatsReport::kStatsValueNameCaptureStartNtpTimeMs,
222 info.capture_start_ntp_time_ms); 222 info.capture_start_ntp_time_ms);
223 } 223 }
224 if (info.qp_sum)
225 report->AddInt64(StatsReport::kStatsValueNameQpSum, *info.qp_sum);
226
224 const IntForAdd ints[] = { 227 const IntForAdd ints[] = {
225 { StatsReport::kStatsValueNameCurrentDelayMs, info.current_delay_ms }, 228 { StatsReport::kStatsValueNameCurrentDelayMs, info.current_delay_ms },
226 { StatsReport::kStatsValueNameDecodeMs, info.decode_ms }, 229 { StatsReport::kStatsValueNameDecodeMs, info.decode_ms },
227 { StatsReport::kStatsValueNameFirsSent, info.firs_sent }, 230 { StatsReport::kStatsValueNameFirsSent, info.firs_sent },
228 { StatsReport::kStatsValueNameFrameHeightReceived, info.frame_height }, 231 { StatsReport::kStatsValueNameFrameHeightReceived, info.frame_height },
229 { StatsReport::kStatsValueNameFrameRateDecoded, info.framerate_decoded }, 232 { StatsReport::kStatsValueNameFrameRateDecoded, info.framerate_decoded },
230 { StatsReport::kStatsValueNameFrameRateOutput, info.framerate_output }, 233 { StatsReport::kStatsValueNameFrameRateOutput, info.framerate_output },
231 { StatsReport::kStatsValueNameFrameRateReceived, info.framerate_rcvd }, 234 { StatsReport::kStatsValueNameFrameRateReceived, info.framerate_rcvd },
232 { StatsReport::kStatsValueNameFrameWidthReceived, info.frame_width }, 235 { StatsReport::kStatsValueNameFrameWidthReceived, info.frame_width },
233 { StatsReport::kStatsValueNameJitterBufferMs, info.jitter_buffer_ms }, 236 { StatsReport::kStatsValueNameJitterBufferMs, info.jitter_buffer_ms },
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 StatsReport* report = entry.second; 988 StatsReport* report = entry.second;
986 report->set_timestamp(stats_gathering_started_); 989 report->set_timestamp(stats_gathering_started_);
987 } 990 }
988 } 991 }
989 992
990 void StatsCollector::ClearUpdateStatsCacheForTest() { 993 void StatsCollector::ClearUpdateStatsCacheForTest() {
991 stats_gathering_started_ = 0; 994 stats_gathering_started_ = 0;
992 } 995 }
993 996
994 } // namespace webrtc 997 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/test/test_util.cc ('k') | webrtc/pc/statscollector_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698