| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 // then no longer store a pointer to the object). | 110 // then no longer store a pointer to the object). |
| 111 const VideoReceiveStream::Config& config_; | 111 const VideoReceiveStream::Config& config_; |
| 112 const int64_t start_ms_; | 112 const int64_t start_ms_; |
| 113 | 113 |
| 114 rtc::CriticalSection crit_; | 114 rtc::CriticalSection crit_; |
| 115 int64_t last_sample_time_ GUARDED_BY(crit_); | 115 int64_t last_sample_time_ GUARDED_BY(crit_); |
| 116 QualityThreshold fps_threshold_ GUARDED_BY(crit_); | 116 QualityThreshold fps_threshold_ GUARDED_BY(crit_); |
| 117 QualityThreshold qp_threshold_ GUARDED_BY(crit_); | 117 QualityThreshold qp_threshold_ GUARDED_BY(crit_); |
| 118 QualityThreshold variance_threshold_ GUARDED_BY(crit_); | 118 QualityThreshold variance_threshold_ GUARDED_BY(crit_); |
| 119 SampleCounter qp_sample_ GUARDED_BY(crit_); | 119 SampleCounter qp_sample_ GUARDED_BY(crit_); |
| 120 int num_bad_states_ GUARDED_BY(crit_); |
| 121 int num_certain_states_ GUARDED_BY(crit_); |
| 120 VideoReceiveStream::Stats stats_ GUARDED_BY(crit_); | 122 VideoReceiveStream::Stats stats_ GUARDED_BY(crit_); |
| 121 RateStatistics decode_fps_estimator_ GUARDED_BY(crit_); | 123 RateStatistics decode_fps_estimator_ GUARDED_BY(crit_); |
| 122 RateStatistics renders_fps_estimator_ GUARDED_BY(crit_); | 124 RateStatistics renders_fps_estimator_ GUARDED_BY(crit_); |
| 123 rtc::RateTracker render_fps_tracker_ GUARDED_BY(crit_); | 125 rtc::RateTracker render_fps_tracker_ GUARDED_BY(crit_); |
| 124 rtc::RateTracker render_pixel_tracker_ GUARDED_BY(crit_); | 126 rtc::RateTracker render_pixel_tracker_ GUARDED_BY(crit_); |
| 125 SampleCounter render_width_counter_ GUARDED_BY(crit_); | 127 SampleCounter render_width_counter_ GUARDED_BY(crit_); |
| 126 SampleCounter render_height_counter_ GUARDED_BY(crit_); | 128 SampleCounter render_height_counter_ GUARDED_BY(crit_); |
| 127 SampleCounter sync_offset_counter_ GUARDED_BY(crit_); | 129 SampleCounter sync_offset_counter_ GUARDED_BY(crit_); |
| 128 SampleCounter decode_time_counter_ GUARDED_BY(crit_); | 130 SampleCounter decode_time_counter_ GUARDED_BY(crit_); |
| 129 SampleCounter jitter_buffer_delay_counter_ GUARDED_BY(crit_); | 131 SampleCounter jitter_buffer_delay_counter_ GUARDED_BY(crit_); |
| 130 SampleCounter target_delay_counter_ GUARDED_BY(crit_); | 132 SampleCounter target_delay_counter_ GUARDED_BY(crit_); |
| 131 SampleCounter current_delay_counter_ GUARDED_BY(crit_); | 133 SampleCounter current_delay_counter_ GUARDED_BY(crit_); |
| 132 SampleCounter delay_counter_ GUARDED_BY(crit_); | 134 SampleCounter delay_counter_ GUARDED_BY(crit_); |
| 133 SampleCounter e2e_delay_counter_ GUARDED_BY(crit_); | 135 SampleCounter e2e_delay_counter_ GUARDED_BY(crit_); |
| 134 MaxCounter freq_offset_counter_ GUARDED_BY(crit_); | 136 MaxCounter freq_offset_counter_ GUARDED_BY(crit_); |
| 135 int64_t first_report_block_time_ms_ GUARDED_BY(crit_); | 137 int64_t first_report_block_time_ms_ GUARDED_BY(crit_); |
| 136 ReportBlockStats report_block_stats_ GUARDED_BY(crit_); | 138 ReportBlockStats report_block_stats_ GUARDED_BY(crit_); |
| 137 QpCounters qp_counters_; // Only accessed on the decoding thread. | 139 QpCounters qp_counters_; // Only accessed on the decoding thread. |
| 138 std::map<uint32_t, StreamDataCounters> rtx_stats_ GUARDED_BY(crit_); | 140 std::map<uint32_t, StreamDataCounters> rtx_stats_ GUARDED_BY(crit_); |
| 139 }; | 141 }; |
| 140 | 142 |
| 141 } // namespace webrtc | 143 } // namespace webrtc |
| 142 #endif // WEBRTC_VIDEO_RECEIVE_STATISTICS_PROXY_H_ | 144 #endif // WEBRTC_VIDEO_RECEIVE_STATISTICS_PROXY_H_ |
| OLD | NEW |