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