From d692ef9749d6b77bc341b243046dcef3ba733069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Wed, 4 Oct 2017 15:28:55 +0200 Subject: [PATCH] Update comments for rename of ScalingObserverInterface. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was renamed to AdaptationObserverInterface in cl https://codereview.webrtc.org/2652893015/. Bug: webrtc:4172 Change-Id: Ie2194a1fd5fe985913716963292af701006f18dd Reviewed-on: https://webrtc-review.googlesource.com/6420 Reviewed-by: Erik Språng Commit-Queue: Niels Moller Cr-Commit-Position: refs/heads/master@{#20155} --- modules/video_coding/utility/quality_scaler.h | 4 ++-- video/video_stream_encoder.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/video_coding/utility/quality_scaler.h b/modules/video_coding/utility/quality_scaler.h index 1c2da94e86..ad998a295d 100644 --- a/modules/video_coding/utility/quality_scaler.h +++ b/modules/video_coding/utility/quality_scaler.h @@ -39,8 +39,8 @@ class AdaptationObserverInterface { }; // QualityScaler runs asynchronously and monitors QP values of encoded frames. -// It holds a reference to a ScalingObserverInterface implementation to signal -// an intent to scale up or down. +// It holds a reference to an AdaptationObserverInterface implementation to +// signal an intent to scale up or down. class QualityScaler { public: // Construct a QualityScaler with a given |observer|. diff --git a/video/video_stream_encoder.h b/video/video_stream_encoder.h index f90a07d148..3cc46a371e 100644 --- a/video/video_stream_encoder.h +++ b/video/video_stream_encoder.h @@ -126,7 +126,7 @@ class VideoStreamEncoder : public rtc::VideoSinkInterface, // be called on |encoder_queue_|. rtc::TaskQueue* encoder_queue() { return &encoder_queue_; } - // webrtc::ScalingObserverInterface implementation. + // AdaptationObserverInterface implementation. // These methods are protected for easier testing. void AdaptUp(AdaptReason reason) override; void AdaptDown(AdaptReason reason) override;