From 651707bdf0d22ca23501ed14b81ebdbe4b22ed45 Mon Sep 17 00:00:00 2001 From: Danil Chapovalov Date: Tue, 14 Nov 2017 16:43:22 +0100 Subject: [PATCH] Remove deprecated SetREMB functions from RtpRtcp Bug: None Change-Id: I8b299d8e83d99fc2d074df876c95ca2680226efa Reviewed-on: https://webrtc-review.googlesource.com/22061 Reviewed-by: Elad Alon Commit-Queue: Danil Chapovalov Cr-Commit-Position: refs/heads/master@{#20676} --- modules/rtp_rtcp/include/rtp_rtcp.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/rtp_rtcp/include/rtp_rtcp.h b/modules/rtp_rtcp/include/rtp_rtcp.h index 5142bdf6c7..ef5f62a77f 100644 --- a/modules/rtp_rtcp/include/rtp_rtcp.h +++ b/modules/rtp_rtcp/include/rtp_rtcp.h @@ -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& ssrcs) { - SetRemb(bitrate, ssrcs); - } - // (TMMBR) Temporary Max Media Bit Rate virtual bool TMMBR() const = 0;