Deprecate a few unused methods in RtpRtcpInterface
Bug: none Change-Id: Ifbf2040f3ce03a1381f6fbf59cb752c7bc2dc1aa Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176571 Commit-Queue: Tommi <tommi@webrtc.org> Reviewed-by: Magnus Flodman <mflodman@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31474}
This commit is contained in:
committed by
Commit Bot
parent
a48dd43fe1
commit
6434864c3f
@ -324,11 +324,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t SetCNAME(const char* cname) = 0;
|
||||
|
||||
// Returns remote CName.
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t RemoteCNAME(uint32_t remote_ssrc,
|
||||
char cname[RTCP_CNAME_SIZE]) const = 0;
|
||||
|
||||
// Returns remote NTP.
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t RemoteNTP(uint32_t* received_ntp_secs,
|
||||
@ -337,12 +332,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
||||
uint32_t* rtcp_arrival_time_frac,
|
||||
uint32_t* rtcp_timestamp) const = 0;
|
||||
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t AddMixedCNAME(uint32_t ssrc, const char* cname) = 0;
|
||||
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t RemoveMixedCNAME(uint32_t ssrc) = 0;
|
||||
|
||||
// Returns current RTT (round-trip time) estimate.
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t RTT(uint32_t remote_ssrc,
|
||||
@ -359,11 +348,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t SendRTCP(RTCPPacketType rtcp_packet_type) = 0;
|
||||
|
||||
// Returns statistics of the amount of data sent.
|
||||
// Returns -1 on failure else 0.
|
||||
virtual int32_t DataCountersRTP(size_t* bytes_sent,
|
||||
uint32_t* packets_sent) const = 0;
|
||||
|
||||
// Returns send statistics for the RTP and RTX stream.
|
||||
virtual void GetSendStreamDataCounters(
|
||||
StreamDataCounters* rtp_counters,
|
||||
@ -393,11 +377,6 @@ class RtpRtcpInterface : public RtcpFeedbackSenderInterface {
|
||||
// Stops sending REMB on next and following sender/receiver reports.
|
||||
void UnsetRemb() override = 0;
|
||||
|
||||
// (TMMBR) Temporary Max Media Bit Rate
|
||||
virtual bool TMMBR() const = 0;
|
||||
|
||||
virtual void SetTMMBRStatus(bool enable) = 0;
|
||||
|
||||
// (NACK)
|
||||
|
||||
// Sends a Negative acknowledgement packet.
|
||||
|
||||
Reference in New Issue
Block a user