QualityScaler: rename classes and methods from "QP" to "Qp".

Bug: none
Change-Id: Iea6d69149912a6804e2a54262e89114f10a49394
Reviewed-on: https://webrtc-review.googlesource.com/71482
Reviewed-by: Rasmus Brandt <brandtr@webrtc.org>
Commit-Queue: Åsa Persson <asapersson@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22970}
This commit is contained in:
Åsa Persson
2018-04-20 15:19:11 +02:00
committed by Commit Bot
parent 6719017d19
commit 04d5f1d2e5
4 changed files with 30 additions and 30 deletions

View File

@ -52,7 +52,7 @@ class QualityScaler {
// Should be called each time the encoder drops a frame.
void ReportDroppedFrame();
// Inform the QualityScaler of the last seen QP.
void ReportQP(int qp);
void ReportQp(int qp);
// The following members declared protected for testing purposes.
protected:
@ -61,14 +61,14 @@ class QualityScaler {
int64_t sampling_period_ms);
private:
class CheckQPTask;
void CheckQP();
class CheckQpTask;
void CheckQp();
void ClearSamples();
void ReportQPLow();
void ReportQPHigh();
void ReportQpLow();
void ReportQpHigh();
int64_t GetSamplingPeriodMs() const;
CheckQPTask* check_qp_task_ RTC_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_;