Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: webrtc/modules/video_coding/utility/quality_scaler.h

Issue 3010223002: Update thread annotiation macros in modules to use RTC_ prefix (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/modules/video_coding/timing.h ('k') | webrtc/modules/video_coding/video_coding_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/utility/quality_scaler.h
diff --git a/webrtc/modules/video_coding/utility/quality_scaler.h b/webrtc/modules/video_coding/utility/quality_scaler.h
index 25d39cc986ab84e7860ec3bec2c3b705b3629b66..abe6d72bd43b605fe32449af253b07c3aa46ae73 100644
--- a/webrtc/modules/video_coding/utility/quality_scaler.h
+++ b/webrtc/modules/video_coding/utility/quality_scaler.h
@@ -71,16 +71,16 @@ class QualityScaler {
void ReportQPHigh();
int64_t GetSamplingPeriodMs() const;
- CheckQPTask* check_qp_task_ GUARDED_BY(&task_checker_);
- AdaptationObserverInterface* const observer_ GUARDED_BY(&task_checker_);
+ CheckQPTask* check_qp_task_ RTC_GUARDED_BY(&task_checker_);
+ AdaptationObserverInterface* const observer_ RTC_GUARDED_BY(&task_checker_);
rtc::SequencedTaskChecker task_checker_;
const int64_t sampling_period_ms_;
- bool fast_rampup_ GUARDED_BY(&task_checker_);
- MovingAverage average_qp_ GUARDED_BY(&task_checker_);
- MovingAverage framedrop_percent_ GUARDED_BY(&task_checker_);
+ bool fast_rampup_ RTC_GUARDED_BY(&task_checker_);
+ MovingAverage average_qp_ RTC_GUARDED_BY(&task_checker_);
+ MovingAverage framedrop_percent_ RTC_GUARDED_BY(&task_checker_);
- VideoEncoder::QpThresholds thresholds_ GUARDED_BY(&task_checker_);
+ VideoEncoder::QpThresholds thresholds_ RTC_GUARDED_BY(&task_checker_);
};
} // namespace webrtc
« no previous file with comments | « webrtc/modules/video_coding/timing.h ('k') | webrtc/modules/video_coding/video_coding_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698