| 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...) Expand 10 before | Expand all | Expand 10 after 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; | |
| 74 | 73 |
| 75 int current_payload_type = -1; | 74 int current_payload_type = -1; |
| 76 | 75 |
| 77 int total_bitrate_bps = 0; | 76 int total_bitrate_bps = 0; |
| 78 int discarded_packets = 0; | 77 int discarded_packets = 0; |
| 79 | 78 |
| 80 int width = 0; | 79 int width = 0; |
| 81 int height = 0; | 80 int height = 0; |
| 82 | 81 |
| 83 int sync_offset_ms = std::numeric_limits<int>::max(); | 82 int sync_offset_ms = std::numeric_limits<int>::max(); |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); | 205 EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0); |
| 207 } | 206 } |
| 208 | 207 |
| 209 protected: | 208 protected: |
| 210 virtual ~VideoReceiveStream() {} | 209 virtual ~VideoReceiveStream() {} |
| 211 }; | 210 }; |
| 212 | 211 |
| 213 } // namespace webrtc | 212 } // namespace webrtc |
| 214 | 213 |
| 215 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ | 214 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ |
| OLD | NEW |