Rename AutoMute to SuspendBelowMinBitrate
Changes all instances throughout the WebRTC stack. BUG=2436 R=mflodman@webrtc.org, stefan@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3919004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5130 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -592,17 +592,14 @@ public:
|
||||
// Disables recording of debugging information.
|
||||
virtual int StopDebugRecording() = 0;
|
||||
|
||||
// Enables AutoMuter to turn off video when the rate drops below
|
||||
// Lets the sender suspend video when the rate drops below
|
||||
// |threshold_bps|, and turns back on when the rate goes back up above
|
||||
// |threshold_bps| + |window_bps|.
|
||||
virtual void EnableAutoMuting() = 0;
|
||||
virtual void SuspendBelowMinBitrate() = 0;
|
||||
|
||||
// Disables AutoMuter.
|
||||
virtual void DisableAutoMuting() = 0;
|
||||
|
||||
// Returns true if AutoMuter is engaged and the video has been muted due to
|
||||
// bandwidth limitations; otherwise false.
|
||||
virtual bool VideoMuted() const = 0;
|
||||
// Returns true if SuspendBelowMinBitrate is engaged and the video has been
|
||||
// suspended due to bandwidth limitations; otherwise false.
|
||||
virtual bool VideoSuspended() const = 0;
|
||||
};
|
||||
|
||||
} // namespace webrtc
|
||||
|
Reference in New Issue
Block a user