Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/video_receive_stream.h

Issue 2995143002: Report max interframe delay over window insdead of interframe delay sum (Closed)
Patch Set: Implemented Sprang@ comments Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
63 // Decoder stats. 63 // Decoder stats.
64 std::string decoder_implementation_name = "unknown"; 64 std::string decoder_implementation_name = "unknown";
65 FrameCounts frame_counts; 65 FrameCounts frame_counts;
66 int decode_ms = 0; 66 int decode_ms = 0;
67 int max_decode_ms = 0; 67 int max_decode_ms = 0;
68 int current_delay_ms = 0; 68 int current_delay_ms = 0;
69 int target_delay_ms = 0; 69 int target_delay_ms = 0;
70 int jitter_buffer_ms = 0; 70 int jitter_buffer_ms = 0;
71 int min_playout_delay_ms = 0; 71 int min_playout_delay_ms = 0;
72 int render_delay_ms = 10; 72 int render_delay_ms = 10;
73 uint64_t interframe_delay_sum_ms = 0; 73 uint64_t interframe_delay_max_ms = 0;
74 uint32_t frames_decoded = 0; 74 uint32_t frames_decoded = 0;
75 rtc::Optional<uint64_t> qp_sum; 75 rtc::Optional<uint64_t> qp_sum;
76 76
77 int current_payload_type = -1; 77 int current_payload_type = -1;
78 78
79 int total_bitrate_bps = 0; 79 int total_bitrate_bps = 0;
80 int discarded_packets = 0; 80 int discarded_packets = 0;
81 81
82 int width = 0; 82 int width = 0;
83 int height = 0; 83 int height = 0;
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0; 229 virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0;
230 virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0; 230 virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0;
231 231
232 protected: 232 protected:
233 virtual ~VideoReceiveStream() {} 233 virtual ~VideoReceiveStream() {}
234 }; 234 };
235 235
236 } // namespace webrtc 236 } // namespace webrtc
237 237
238 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_ 238 #endif // WEBRTC_VIDEO_RECEIVE_STREAM_H_
OLDNEW
« webrtc/video/receive_statistics_proxy.h ('K') | « webrtc/video/receive_statistics_proxy_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698