Update comments for rename of ScalingObserverInterface.

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 <sprang@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20155}
This commit is contained in:
Niels Möller
2017-10-04 15:28:55 +02:00
committed by Commit Bot
parent 22ec952829
commit d692ef9749
2 changed files with 3 additions and 3 deletions

View File

@ -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|.

View File

@ -126,7 +126,7 @@ class VideoStreamEncoder : public rtc::VideoSinkInterface<VideoFrame>,
// 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;