Delete unused method SetSelectiveRetransmissions

Bug: None
Change-Id: I5a59b5776fe537ec380629f9e5e9ac98c9e1214b
Reviewed-on: https://webrtc-review.googlesource.com/c/119920
Reviewed-by: Stefan Holmer <stefan@webrtc.org>
Reviewed-by: Åsa Persson <asapersson@webrtc.org>
Commit-Queue: Niels Moller <nisse@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#26407}
This commit is contained in:
Niels Möller
2019-01-25 14:02:49 +01:00
committed by Commit Bot
parent 728b5a4033
commit bebca61e5e
9 changed files with 1 additions and 93 deletions

View File

@ -384,21 +384,6 @@ class RtpRtcp : public Module, public RtcpFeedbackSenderInterface {
// (NACK)
// TODO(holmer): Propagate this API to VideoEngine.
// Returns the currently configured selective retransmission settings.
virtual int SelectiveRetransmissions() const = 0;
// TODO(holmer): Propagate this API to VideoEngine.
// Sets the selective retransmission settings, which will decide which
// packets will be retransmitted if NACKed. Settings are constructed by
// combining the constants in enum RetransmissionMode with bitwise OR.
// All packets are retransmitted if kRetransmitAllPackets is set, while no
// packets are retransmitted if kRetransmitOff is set.
// By default all packets except FEC packets are retransmitted. For VP8
// with temporal scalability only base layer packets are retransmitted.
// Returns -1 on failure, otherwise 0.
virtual int SetSelectiveRetransmissions(uint8_t settings) = 0;
// Sends a Negative acknowledgement packet.
// Returns -1 on failure else 0.
// TODO(philipel): Deprecate this and start using SendNack instead, mostly