Lines Matching refs:crit_sect_

103   void UpdateIncomingFrameRate() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
105 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
106 void UpdateSentBitrate(int64_t now_ms) EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
107 void UpdateSentFramerate() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
111 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
117 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
120 bool CheckStatusForQMchange() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
123 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
128 void CheckSuspendConditions() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
138 EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
140 uint32_t InputFrameRateInternal() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
142 uint32_t SentFrameRateInternal() EXCLUSIVE_LOCKS_REQUIRED(crit_sect_);
145 scoped_ptr<CriticalSectionWrapper> crit_sect_;
147 Clock* clock_ GUARDED_BY(crit_sect_);
148 int32_t max_bit_rate_ GUARDED_BY(crit_sect_);
149 VideoCodecType send_codec_type_ GUARDED_BY(crit_sect_);
150 uint16_t codec_width_ GUARDED_BY(crit_sect_);
151 uint16_t codec_height_ GUARDED_BY(crit_sect_);
152 float user_frame_rate_ GUARDED_BY(crit_sect_);
153 scoped_ptr<FrameDropper> frame_dropper_ GUARDED_BY(crit_sect_);
154 scoped_ptr<VCMLossProtectionLogic> loss_prot_logic_ GUARDED_BY(crit_sect_);
155 uint8_t fraction_lost_ GUARDED_BY(crit_sect_);
156 uint32_t send_statistics_[4] GUARDED_BY(crit_sect_);
157 uint32_t send_statistics_zero_encode_ GUARDED_BY(crit_sect_);
158 int32_t max_payload_size_ GUARDED_BY(crit_sect_);
159 int target_bit_rate_ GUARDED_BY(crit_sect_);
160 float incoming_frame_rate_ GUARDED_BY(crit_sect_);
161 int64_t incoming_frame_times_[kFrameCountHistorySize] GUARDED_BY(crit_sect_);
162 bool enable_qm_ GUARDED_BY(crit_sect_);
163 std::list<EncodedFrameSample> encoded_frame_samples_ GUARDED_BY(crit_sect_);
164 uint32_t avg_sent_bit_rate_bps_ GUARDED_BY(crit_sect_);
165 uint32_t avg_sent_framerate_ GUARDED_BY(crit_sect_);
166 uint32_t key_frame_cnt_ GUARDED_BY(crit_sect_);
167 uint32_t delta_frame_cnt_ GUARDED_BY(crit_sect_);
168 scoped_ptr<VCMContentMetricsProcessing> content_ GUARDED_BY(crit_sect_);
169 scoped_ptr<VCMQmResolution> qm_resolution_ GUARDED_BY(crit_sect_);
170 int64_t last_qm_update_time_ GUARDED_BY(crit_sect_);
171 int64_t last_change_time_ GUARDED_BY(crit_sect_); // Content/user triggered.
172 int num_layers_ GUARDED_BY(crit_sect_);
173 bool suspension_enabled_ GUARDED_BY(crit_sect_);
174 bool video_suspended_ GUARDED_BY(crit_sect_);
175 int suspension_threshold_bps_ GUARDED_BY(crit_sect_);
176 int suspension_window_bps_ GUARDED_BY(crit_sect_);