OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 // Decoder stats. | 62 // Decoder stats. |
63 std::string decoder_implementation_name = "unknown"; | 63 std::string decoder_implementation_name = "unknown"; |
64 FrameCounts frame_counts; | 64 FrameCounts frame_counts; |
65 int decode_ms = 0; | 65 int decode_ms = 0; |
66 int max_decode_ms = 0; | 66 int max_decode_ms = 0; |
67 int current_delay_ms = 0; | 67 int current_delay_ms = 0; |
68 int target_delay_ms = 0; | 68 int target_delay_ms = 0; |
69 int jitter_buffer_ms = 0; | 69 int jitter_buffer_ms = 0; |
70 int min_playout_delay_ms = 0; | 70 int min_playout_delay_ms = 0; |
71 int render_delay_ms = 10; | 71 int render_delay_ms = 10; |
| 72 uint64_t interframe_delay_sum_ms = 0; |
72 uint32_t frames_decoded = 0; | 73 uint32_t frames_decoded = 0; |
73 rtc::Optional<uint64_t> qp_sum; | 74 rtc::Optional<uint64_t> qp_sum; |
74 | 75 |
75 int current_payload_type = -1; | 76 int current_payload_type = -1; |
76 | 77 |
77 int total_bitrate_bps = 0; | 78 int total_bitrate_bps = 0; |
78 int discarded_packets = 0; | 79 int discarded_packets = 0; |
79 | 80 |
80 int width = 0; | 81 int width = 0; |
81 int height = 0; | 82 int height = 0; |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 221 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
221 } | 222 } |
222 | 223 |
223 protected: | 224 protected: |
224 virtual ~VideoReceiveStream() {} | 225 virtual ~VideoReceiveStream() {} |
225 }; | 226 }; |
226 | 227 |
227 } // namespace webrtc | 228 } // namespace webrtc |
228 | 229 |
229 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 230 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |