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 <orphis@webrtc.org>
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Commit-Queue: Florent Castelli <orphis@webrtc.org>
Cr-Commit-Position: refs/heads/main@{#38513}
This commit is contained in:
Florent Castelli
2022-10-31 17:52:01 +01:00
committed by WebRTC LUCI CQ
parent 7587755d29
commit 7d3e5a03eb

View File

@ -30,12 +30,6 @@ class RtpRtcp : public RtpRtcpInterface {
static std::unique_ptr<RtpRtcp> 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;
};