From 7d3e5a03eb787d2f1092dfb6f6b8e9c928489cca Mon Sep 17 00:00:00 2001 From: Florent Castelli Date: Mon, 31 Oct 2022 17:52:01 +0100 Subject: [PATCH] Remove unused functions from RtpRtcp Bug: webrtc:14617 Change-Id: I7a77d3b5e0426f2bb43fd4732189f2e39eaf8ed2 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/281186 Auto-Submit: Florent Castelli Reviewed-by: Harald Alvestrand Commit-Queue: Florent Castelli Cr-Commit-Position: refs/heads/main@{#38513} --- modules/rtp_rtcp/include/rtp_rtcp.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/rtp_rtcp/include/rtp_rtcp.h b/modules/rtp_rtcp/include/rtp_rtcp.h index c71d7f0c3d..1c23753aeb 100644 --- a/modules/rtp_rtcp/include/rtp_rtcp.h +++ b/modules/rtp_rtcp/include/rtp_rtcp.h @@ -30,12 +30,6 @@ class RtpRtcp : public RtpRtcpInterface { static std::unique_ptr DEPRECATED_Create( const Configuration& configuration); - // Requests new key frame. - // using PLI, https://tools.ietf.org/html/rfc4585#section-6.3.1.1 - void SendPictureLossIndication() { SendRTCP(kRtcpPli); } - // using FIR, https://tools.ietf.org/html/rfc5104#section-4.3.1.2 - void SendFullIntraRequest() { SendRTCP(kRtcpFir); } - // Process any pending tasks such as timeouts. virtual void Process() = 0; };