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

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

Issue 2680893002: Revert of Add QP sum stats for received streams. (Closed)
Patch Set: Rebase 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
227 const IntForAdd ints[] = { 224 const IntForAdd ints[] = {
228 { StatsReport::kStatsValueNameCurrentDelayMs, info.current_delay_ms }, 225 { StatsReport::kStatsValueNameCurrentDelayMs, info.current_delay_ms },
229 { StatsReport::kStatsValueNameDecodeMs, info.decode_ms }, 226 { StatsReport::kStatsValueNameDecodeMs, info.decode_ms },
230 { StatsReport::kStatsValueNameFirsSent, info.firs_sent }, 227 { StatsReport::kStatsValueNameFirsSent, info.firs_sent },
231 { StatsReport::kStatsValueNameFrameHeightReceived, info.frame_height }, 228 { StatsReport::kStatsValueNameFrameHeightReceived, info.frame_height },
232 { StatsReport::kStatsValueNameFrameRateDecoded, info.framerate_decoded }, 229 { StatsReport::kStatsValueNameFrameRateDecoded, info.framerate_decoded },
233 { StatsReport::kStatsValueNameFrameRateOutput, info.framerate_output }, 230 { StatsReport::kStatsValueNameFrameRateOutput, info.framerate_output },
234 { StatsReport::kStatsValueNameFrameRateReceived, info.framerate_rcvd }, 231 { StatsReport::kStatsValueNameFrameRateReceived, info.framerate_rcvd },
235 { StatsReport::kStatsValueNameFrameWidthReceived, info.frame_width }, 232 { StatsReport::kStatsValueNameFrameWidthReceived, info.frame_width },
236 { StatsReport::kStatsValueNameJitterBufferMs, info.jitter_buffer_ms }, 233 { StatsReport::kStatsValueNameJitterBufferMs, info.jitter_buffer_ms },
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
988 StatsReport* report = entry.second; 985 StatsReport* report = entry.second;
989 report->set_timestamp(stats_gathering_started_); 986 report->set_timestamp(stats_gathering_started_);
990 } 987 }
991 } 988 }
992 989
993 void StatsCollector::ClearUpdateStatsCacheForTest() { 990 void StatsCollector::ClearUpdateStatsCacheForTest() {
994 stats_gathering_started_ = 0; 991 stats_gathering_started_ = 0;
995 } 992 }
996 993
997 } // namespace webrtc 994 } // 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