Remove deprecated SetREMB functions from RtpRtcp

Bug: None
Change-Id: I8b299d8e83d99fc2d074df876c95ca2680226efa
Reviewed-on: https://webrtc-review.googlesource.com/22061
Reviewed-by: Elad Alon <eladalon@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20676}
This commit is contained in:
Danil Chapovalov
2017-11-14 16:43:22 +01:00
committed by Commit Bot
parent 64534fd917
commit 651707bdf0

View File

@ -346,15 +346,6 @@ class RtpRtcp : public Module {
// Stops sending REMB on next and following sender/receiver reports.
virtual void UnsetRemb() = 0;
RTC_DEPRECATED void SetREMBStatus(bool enable) {
if (!enable)
UnsetRemb();
}
RTC_DEPRECATED void SetREMBData(uint32_t bitrate,
const std::vector<uint32_t>& ssrcs) {
SetRemb(bitrate, ssrcs);
}
// (TMMBR) Temporary Max Media Bit Rate
virtual bool TMMBR() const = 0;