OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 2382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2393 info.max_decode_ms = stats.max_decode_ms; | 2393 info.max_decode_ms = stats.max_decode_ms; |
2394 info.current_delay_ms = stats.current_delay_ms; | 2394 info.current_delay_ms = stats.current_delay_ms; |
2395 info.target_delay_ms = stats.target_delay_ms; | 2395 info.target_delay_ms = stats.target_delay_ms; |
2396 info.jitter_buffer_ms = stats.jitter_buffer_ms; | 2396 info.jitter_buffer_ms = stats.jitter_buffer_ms; |
2397 info.min_playout_delay_ms = stats.min_playout_delay_ms; | 2397 info.min_playout_delay_ms = stats.min_playout_delay_ms; |
2398 info.render_delay_ms = stats.render_delay_ms; | 2398 info.render_delay_ms = stats.render_delay_ms; |
2399 info.frames_received = stats.frame_counts.key_frames + | 2399 info.frames_received = stats.frame_counts.key_frames + |
2400 stats.frame_counts.delta_frames; | 2400 stats.frame_counts.delta_frames; |
2401 info.frames_decoded = stats.frames_decoded; | 2401 info.frames_decoded = stats.frames_decoded; |
2402 info.frames_rendered = stats.frames_rendered; | 2402 info.frames_rendered = stats.frames_rendered; |
2403 info.qp_sum = stats.qp_sum; | |
2404 | 2403 |
2405 info.codec_name = GetCodecNameFromPayloadType(stats.current_payload_type); | 2404 info.codec_name = GetCodecNameFromPayloadType(stats.current_payload_type); |
2406 | 2405 |
2407 info.firs_sent = stats.rtcp_packet_type_counts.fir_packets; | 2406 info.firs_sent = stats.rtcp_packet_type_counts.fir_packets; |
2408 info.plis_sent = stats.rtcp_packet_type_counts.pli_packets; | 2407 info.plis_sent = stats.rtcp_packet_type_counts.pli_packets; |
2409 info.nacks_sent = stats.rtcp_packet_type_counts.nack_packets; | 2408 info.nacks_sent = stats.rtcp_packet_type_counts.nack_packets; |
2410 | 2409 |
2411 if (log_stats) | 2410 if (log_stats) |
2412 LOG(LS_INFO) << stats.ToString(rtc::TimeMillis()); | 2411 LOG(LS_INFO) << stats.ToString(rtc::TimeMillis()); |
2413 | 2412 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2527 rtx_mapping[video_codecs[i].codec.id] != | 2526 rtx_mapping[video_codecs[i].codec.id] != |
2528 ulpfec_config.red_payload_type) { | 2527 ulpfec_config.red_payload_type) { |
2529 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; | 2528 video_codecs[i].rtx_payload_type = rtx_mapping[video_codecs[i].codec.id]; |
2530 } | 2529 } |
2531 } | 2530 } |
2532 | 2531 |
2533 return video_codecs; | 2532 return video_codecs; |
2534 } | 2533 } |
2535 | 2534 |
2536 } // namespace cricket | 2535 } // namespace cricket |
OLD | NEW |