Lines Matching refs:mutex_
122 int64_t FindNextFrame(Timestamp now) RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
124 RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
126 void StartWaitForNextFrameOnQueue() RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
127 void CancelCallback() RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
132 RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
136 RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
143 RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
145 void ClearFramesAndHistory() RTC_EXCLUSIVE_LOCKS_REQUIRED(mutex_);
158 FrameMap frames_ RTC_GUARDED_BY(mutex_);
159 DecodedFramesHistory decoded_frames_history_ RTC_GUARDED_BY(mutex_);
161 Mutex mutex_; variable
164 TaskQueueBase* callback_queue_ RTC_GUARDED_BY(mutex_);
165 RepeatingTaskHandle callback_task_ RTC_GUARDED_BY(mutex_);
166 NextFrameCallback frame_handler_ RTC_GUARDED_BY(mutex_);
167 int64_t latest_return_time_ms_ RTC_GUARDED_BY(mutex_);
168 bool keyframe_required_ RTC_GUARDED_BY(mutex_);
170 JitterEstimator jitter_estimator_ RTC_GUARDED_BY(mutex_);
171 VCMTiming* const timing_ RTC_GUARDED_BY(mutex_);
172 InterFrameDelay inter_frame_delay_ RTC_GUARDED_BY(mutex_);
173 absl::optional<int64_t> last_continuous_frame_ RTC_GUARDED_BY(mutex_);
174 std::vector<FrameMap::iterator> frames_to_decode_ RTC_GUARDED_BY(mutex_);
175 bool stopped_ RTC_GUARDED_BY(mutex_);
176 VCMVideoProtection protection_mode_ RTC_GUARDED_BY(mutex_);
177 int64_t last_log_non_decoded_ms_ RTC_GUARDED_BY(mutex_);