Lines Matching refs:options_

63   options_ = options;
77 if (count_ < static_cast<uint32_t>(options_.min_frame_samples)) {
99 float average_stddev = (options_.low_capture_jitter_threshold_ms +
100 options_.high_capture_jitter_threshold_ms) / 2.0f;
156 options_ = options;
181 if (count_ < static_cast<uint32_t>(options_.min_frame_samples)) {
194 return (options_.low_encode_usage_threshold_percent +
195 options_.high_encode_usage_threshold_percent) / 2.0f;
207 CpuOveruseOptions options_;
227 options_ = options;
252 if (count_ < static_cast<uint32_t>(options_.min_frame_samples)) {
303 return std::max(((options_.low_encode_time_rsd_threshold +
304 options_.high_encode_time_rsd_threshold) / 2.0f), 0.0f);
309 CpuOveruseOptions options_;
406 if (options_.Equals(options)) {
409 options_ = options;
447 return (now - last_capture_time_) > options_.frame_timeout_interval_ms;
510 if (num_process_times_ <= options_.min_process_count) {
560 if (options_.enable_capture_jitter_method) {
562 options_.high_capture_jitter_threshold_ms;
563 } else if (options_.enable_encode_usage_method) {
565 encode_usage_->Value() >= options_.high_encode_usage_threshold_percent;
567 if (options_.high_encode_time_rsd_threshold > 0) {
569 (encode_rsd_->Value() >= options_.high_encode_time_rsd_threshold);
579 return checks_above_threshold_ >= options_.high_threshold_consecutive_count;
588 if (options_.enable_capture_jitter_method) {
590 options_.low_capture_jitter_threshold_ms;
591 } else if (options_.enable_encode_usage_method) {
593 encode_usage_->Value() < options_.low_encode_usage_threshold_percent;
595 if (options_.low_encode_time_rsd_threshold > 0) {
597 (encode_rsd_->Value() < options_.low_encode_time_rsd_threshold);