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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 // Decoder stats. | 58 // Decoder stats. |
59 std::string decoder_implementation_name = "unknown"; | 59 std::string decoder_implementation_name = "unknown"; |
60 FrameCounts frame_counts; | 60 FrameCounts frame_counts; |
61 int decode_ms = 0; | 61 int decode_ms = 0; |
62 int max_decode_ms = 0; | 62 int max_decode_ms = 0; |
63 int current_delay_ms = 0; | 63 int current_delay_ms = 0; |
64 int target_delay_ms = 0; | 64 int target_delay_ms = 0; |
65 int jitter_buffer_ms = 0; | 65 int jitter_buffer_ms = 0; |
66 int min_playout_delay_ms = 0; | 66 int min_playout_delay_ms = 0; |
67 int render_delay_ms = 10; | 67 int render_delay_ms = 10; |
68 int frames_decoded = 0; | |
hbos
2016/10/20 16:47:23
Should be uint32_t
sakal
2016/10/21 08:43:06
Done.
| |
68 | 69 |
69 int current_payload_type = -1; | 70 int current_payload_type = -1; |
70 | 71 |
71 int total_bitrate_bps = 0; | 72 int total_bitrate_bps = 0; |
72 int discarded_packets = 0; | 73 int discarded_packets = 0; |
73 | 74 |
74 int width = 0; | 75 int width = 0; |
75 int height = 0; | 76 int height = 0; |
76 | 77 |
77 int sync_offset_ms = std::numeric_limits<int>::max(); | 78 int sync_offset_ms = std::numeric_limits<int>::max(); |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 220 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
220 } | 221 } |
221 | 222 |
222 protected: | 223 protected: |
223 virtual ~VideoReceiveStream() {} | 224 virtual ~VideoReceiveStream() {} |
224 }; | 225 }; |
225 | 226 |
226 } // namespace webrtc | 227 } // namespace webrtc |
227 | 228 |
228 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 229 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
OLD | NEW |