OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |