summaryrefslogtreecommitdiff
path: root/voice_engine/channel.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/channel.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/channel.h')
-rw-r--r--voice_engine/channel.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/voice_engine/channel.h b/voice_engine/channel.h
index e605986d..18a3dfb1 100644
--- a/voice_engine/channel.h
+++ b/voice_engine/channel.h
@@ -311,14 +311,11 @@ public:
#endif
// VoERTP_RTCP
- int RegisterRTPObserver(VoERTPObserver& observer);
- int DeRegisterRTPObserver();
int RegisterRTCPObserver(VoERTCPObserver& observer);
int DeRegisterRTCPObserver();
int SetLocalSSRC(unsigned int ssrc);
int GetLocalSSRC(unsigned int& ssrc);
int GetRemoteSSRC(unsigned int& ssrc);
- int GetRemoteCSRCs(unsigned int arrCSRC[15]);
int SetSendAudioLevelIndicationStatus(bool enable, unsigned char id);
int SetReceiveAudioLevelIndicationStatus(bool enable, unsigned char id);
int SetSendAbsoluteSenderTimeStatus(bool enable, unsigned char id);
@@ -338,7 +335,6 @@ public:
int GetRTPStatistics(unsigned int& averageJitterMs,
unsigned int& maxJitterMs,
unsigned int& discardedPackets);
- int GetRemoteRTCPSenderInfo(SenderInfo* sender_info);
int GetRemoteRTCPReportBlocks(std::vector<ReportBlock>* report_blocks);
int GetRTPStatistics(CallStatistics& stats);
int SetFECStatus(bool enable, int redPayloadtype);
@@ -347,7 +343,6 @@ public:
int StartRTPDump(const char fileNameUTF8[1024], RTPDirections direction);
int StopRTPDump(RTPDirections direction);
bool RTPDumpIsActive(RTPDirections direction);
- uint32_t LastRemoteTimeStamp() { return _lastRemoteTimeStamp; }
// Takes ownership of the ViENetwork.
void SetVideoEngineBWETarget(ViENetwork* vie_network, int video_channel);
@@ -562,13 +557,11 @@ private:
VoERxVadCallback* _rxVadObserverPtr;
int32_t _oldVadDecision;
int32_t _sendFrameType; // Send data is voice, 1-voice, 0-otherwise
- VoERTPObserver* _rtpObserverPtr;
VoERTCPObserver* _rtcpObserverPtr;
// VoEBase
bool _externalPlayout;
bool _externalMixing;
bool _mixFileWithMicrophone;
- bool _rtpObserver;
bool _rtcpObserver;
// VoEVolumeControl
bool _mute;
@@ -580,7 +573,6 @@ private:
bool _playInbandDtmfEvent;
// VoeRTP_RTCP
uint32_t _lastLocalTimeStamp;
- uint32_t _lastRemoteTimeStamp;
int8_t _lastPayloadType;
bool _includeAudioLevelIndication;
// VoENetwork