summaryrefslogtreecommitdiff
path: root/voice_engine/voe_rtp_rtcp_impl.h
diff options
context:
space:
mode:
authorhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-12 08:53:27 +0000
committerhenrika@webrtc.org <henrika@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2014-05-12 08:53:27 +0000
commit12884ba3d1e28973908cd1e2fca4651ebcc7423f (patch)
treec42f9fad4d233123e8614ed12042e21904ec016a /voice_engine/voe_rtp_rtcp_impl.h
parent6ca6896f0fbfcdad196270a8b8cee3dfe8df21be (diff)
downloadwebrtc-12884ba3d1e28973908cd1e2fca4651ebcc7423f.tar.gz
Removes parts of the webrtc::VoERTP_RTCP sub API as part of a clean-up operation where the goal is to remove unused APIs.
BUG=3206 R=niklas.enbom@webrtc.org, solenberg@webrtc.org Review URL: https://webrtc-codereview.appspot.com/13489005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6100 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'voice_engine/voe_rtp_rtcp_impl.h')
-rw-r--r--voice_engine/voe_rtp_rtcp_impl.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/voice_engine/voe_rtp_rtcp_impl.h b/voice_engine/voe_rtp_rtcp_impl.h
index b89c0dcf..ddb0170f 100644
--- a/voice_engine/voe_rtp_rtcp_impl.h
+++ b/voice_engine/voe_rtp_rtcp_impl.h
@@ -20,15 +20,6 @@ namespace webrtc {
class VoERTP_RTCPImpl : public VoERTP_RTCP
{
public:
- // Registration of observers for RTP and RTCP callbacks
- virtual int RegisterRTPObserver(int channel, VoERTPObserver& observer);
-
- virtual int DeRegisterRTPObserver(int channel);
-
- virtual int RegisterRTCPObserver(int channel, VoERTCPObserver& observer);
-
- virtual int DeRegisterRTCPObserver(int channel);
-
// RTCP
virtual int SetRTCPStatus(int channel, bool enable);
@@ -48,13 +39,6 @@ public:
unsigned int* jitter = NULL,
unsigned short* fractionLost = NULL);
- virtual int SendApplicationDefinedRTCPPacket(
- int channel,
- unsigned char subType,
- unsigned int name,
- const char* data,
- unsigned short dataLengthInBytes);
-
// SSRC
virtual int SetLocalSSRC(int channel, unsigned int ssrc);
@@ -78,9 +62,6 @@ public:
bool enable,
unsigned char id);
- // CSRC
- virtual int GetRemoteCSRCs(int channel, unsigned int arrCSRC[15]);
-
// Statistics
virtual int GetRTPStatistics(int channel,
unsigned int& averageJitterMs,
@@ -89,8 +70,6 @@ public:
virtual int GetRTCPStatistics(int channel, CallStatistics& stats);
- virtual int GetRemoteRTCPSenderInfo(int channel, SenderInfo* sender_info);
-
virtual int GetRemoteRTCPReportBlocks(
int channel, std::vector<ReportBlock>* report_blocks);
@@ -117,8 +96,6 @@ public:
virtual int RTPDumpIsActive(int channel,
RTPDirections direction = kRtpIncoming);
- virtual int GetLastRemoteTimeStamp(int channel,
- uint32_t* lastRemoteTimeStamp);
virtual int SetVideoEngineBWETarget(int channel, ViENetwork* vie_network,
int video_channel);
protected: