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

Side by Side Diff: webrtc/video/send_statistics_proxy.h

Issue 1325153009: Add histogram for percentage of sent frames that are limited in resolution due to quality. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: removed bool Created 5 years, 2 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 std::map<uint32_t, StatsUpdateTimes> update_times_ GUARDED_BY(crit_); 127 std::map<uint32_t, StatsUpdateTimes> update_times_ GUARDED_BY(crit_);
128 128
129 int max_sent_width_per_timestamp_ GUARDED_BY(crit_); 129 int max_sent_width_per_timestamp_ GUARDED_BY(crit_);
130 int max_sent_height_per_timestamp_ GUARDED_BY(crit_); 130 int max_sent_height_per_timestamp_ GUARDED_BY(crit_);
131 SampleCounter input_width_counter_ GUARDED_BY(crit_); 131 SampleCounter input_width_counter_ GUARDED_BY(crit_);
132 SampleCounter input_height_counter_ GUARDED_BY(crit_); 132 SampleCounter input_height_counter_ GUARDED_BY(crit_);
133 SampleCounter sent_width_counter_ GUARDED_BY(crit_); 133 SampleCounter sent_width_counter_ GUARDED_BY(crit_);
134 SampleCounter sent_height_counter_ GUARDED_BY(crit_); 134 SampleCounter sent_height_counter_ GUARDED_BY(crit_);
135 SampleCounter encode_time_counter_ GUARDED_BY(crit_); 135 SampleCounter encode_time_counter_ GUARDED_BY(crit_);
136 BoolSampleCounter key_frame_counter_ GUARDED_BY(crit_); 136 BoolSampleCounter key_frame_counter_ GUARDED_BY(crit_);
137 BoolSampleCounter quality_limited_frame_counter_ GUARDED_BY(crit_);
138 SampleCounter quality_downscales_counter_ GUARDED_BY(crit_);
137 }; 139 };
138 140
139 } // namespace webrtc 141 } // namespace webrtc
140 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_ 142 #endif // WEBRTC_VIDEO_SEND_STATISTICS_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/utility/include/quality_scaler.h ('k') | webrtc/video/send_statistics_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698