| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_ |
| OLD | NEW |