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

Side by Side Diff: webrtc/video_receive_stream.h

Issue 2423823003: Implement framesDecoded stat in video receive ssrc stats. (Closed)
Patch Set: Add #include <memory> to receive_statistics_proxy_unittest.cc. Created 4 years, 1 month 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
« no previous file with comments | « webrtc/video/receive_statistics_proxy_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 uint32_t frames_decoded = 0;
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
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_
OLDNEW
« no previous file with comments | « 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