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 52 matching lines...) Loading... |
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 uint32_t frames_decoded = 0; | 72 uint32_t frames_decoded = 0; |
| 73 rtc::Optional<uint64_t> qp_sum; |
73 | 74 |
74 int current_payload_type = -1; | 75 int current_payload_type = -1; |
75 | 76 |
76 int total_bitrate_bps = 0; | 77 int total_bitrate_bps = 0; |
77 int discarded_packets = 0; | 78 int discarded_packets = 0; |
78 | 79 |
79 int width = 0; | 80 int width = 0; |
80 int height = 0; | 81 int height = 0; |
81 | 82 |
82 int sync_offset_ms = std::numeric_limits<int>::max(); | 83 int sync_offset_ms = std::numeric_limits<int>::max(); |
(...skipping 130 matching lines...) Loading... |
213 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 214 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
214 } | 215 } |
215 | 216 |
216 protected: | 217 protected: |
217 virtual ~VideoReceiveStream() {} | 218 virtual ~VideoReceiveStream() {} |
218 }; | 219 }; |
219 | 220 |
220 } // namespace webrtc | 221 } // namespace webrtc |
221 | 222 |
222 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 223 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |