Lines Matching refs:main_thread_
158 int64_t last_sample_time_ RTC_GUARDED_BY(main_thread_);
160 QualityThreshold fps_threshold_ RTC_GUARDED_BY(main_thread_);
161 QualityThreshold qp_threshold_ RTC_GUARDED_BY(main_thread_);
162 QualityThreshold variance_threshold_ RTC_GUARDED_BY(main_thread_);
163 rtc::SampleCounter qp_sample_ RTC_GUARDED_BY(main_thread_);
164 int num_bad_states_ RTC_GUARDED_BY(main_thread_);
165 int num_certain_states_ RTC_GUARDED_BY(main_thread_);
167 mutable VideoReceiveStream::Stats stats_ RTC_GUARDED_BY(main_thread_);
170 RateStatistics decode_fps_estimator_ RTC_GUARDED_BY(main_thread_);
171 RateStatistics renders_fps_estimator_ RTC_GUARDED_BY(main_thread_);
172 rtc::RateTracker render_fps_tracker_ RTC_GUARDED_BY(main_thread_);
173 rtc::RateTracker render_pixel_tracker_ RTC_GUARDED_BY(main_thread_);
174 rtc::SampleCounter sync_offset_counter_ RTC_GUARDED_BY(main_thread_);
175 rtc::SampleCounter decode_time_counter_ RTC_GUARDED_BY(main_thread_);
176 rtc::SampleCounter jitter_buffer_delay_counter_ RTC_GUARDED_BY(main_thread_);
177 rtc::SampleCounter target_delay_counter_ RTC_GUARDED_BY(main_thread_);
178 rtc::SampleCounter current_delay_counter_ RTC_GUARDED_BY(main_thread_);
179 rtc::SampleCounter delay_counter_ RTC_GUARDED_BY(main_thread_);
181 RTC_GUARDED_BY(main_thread_);
183 RTC_GUARDED_BY(main_thread_);
185 RTC_GUARDED_BY(main_thread_);
186 MaxCounter freq_offset_counter_ RTC_GUARDED_BY(main_thread_);
187 QpCounters qp_counters_ RTC_GUARDED_BY(main_thread_);
188 int64_t avg_rtt_ms_ RTC_GUARDED_BY(main_thread_) = 0;
189 mutable std::map<int64_t, size_t> frame_window_ RTC_GUARDED_BY(main_thread_);
190 VideoContentType last_content_type_ RTC_GUARDED_BY(&main_thread_);
191 VideoCodecType last_codec_type_ RTC_GUARDED_BY(main_thread_);
193 RTC_GUARDED_BY(main_thread_);
195 RTC_GUARDED_BY(main_thread_);
197 RTC_GUARDED_BY(main_thread_);
198 size_t num_delayed_frames_rendered_ RTC_GUARDED_BY(main_thread_);
199 int64_t sum_missed_render_deadline_ms_ RTC_GUARDED_BY(main_thread_);
203 RTC_GUARDED_BY(main_thread_);
204 absl::optional<int> num_unique_frames_ RTC_GUARDED_BY(main_thread_);
206 RTC_GUARDED_BY(main_thread_);
208 RTC_GUARDED_BY(main_thread_);
217 rtc::ThreadChecker main_thread_; variable