| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 // Decoder stats. | 68 // Decoder stats. |
| 69 std::string decoder_implementation_name = "unknown"; | 69 std::string decoder_implementation_name = "unknown"; |
| 70 FrameCounts frame_counts; | 70 FrameCounts frame_counts; |
| 71 int decode_ms = 0; | 71 int decode_ms = 0; |
| 72 int max_decode_ms = 0; | 72 int max_decode_ms = 0; |
| 73 int current_delay_ms = 0; | 73 int current_delay_ms = 0; |
| 74 int target_delay_ms = 0; | 74 int target_delay_ms = 0; |
| 75 int jitter_buffer_ms = 0; | 75 int jitter_buffer_ms = 0; |
| 76 int min_playout_delay_ms = 0; | 76 int min_playout_delay_ms = 0; |
| 77 int render_delay_ms = 10; | 77 int render_delay_ms = 10; |
| 78 uint64_t interframe_delay_sum_ms = 0; | 78 int64_t interframe_delay_max_ms = -1; |
| 79 uint32_t frames_decoded = 0; | 79 uint32_t frames_decoded = 0; |
| 80 rtc::Optional<uint64_t> qp_sum; | 80 rtc::Optional<uint64_t> qp_sum; |
| 81 | 81 |
| 82 int current_payload_type = -1; | 82 int current_payload_type = -1; |
| 83 | 83 |
| 84 int total_bitrate_bps = 0; | 84 int total_bitrate_bps = 0; |
| 85 int discarded_packets = 0; | 85 int discarded_packets = 0; |
| 86 | 86 |
| 87 int width = 0; | 87 int width = 0; |
| 88 int height = 0; | 88 int height = 0; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0; | 236 virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0; |
| 237 virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0; | 237 virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0; |
| 238 | 238 |
| 239 protected: | 239 protected: |
| 240 virtual ~VideoReceiveStream() {} | 240 virtual ~VideoReceiveStream() {} |
| 241 }; | 241 }; |
| 242 | 242 |
| 243 } // namespace webrtc | 243 } // namespace webrtc |
| 244 | 244 |
| 245 #endif // WEBRTC_CALL_VIDEO_RECEIVE_STREAM_H_ | 245 #endif // WEBRTC_CALL_VIDEO_RECEIVE_STREAM_H_ |
| OLD | NEW |