Skip to content
Snippets Groups Projects
Commit 70516e43 authored by Tristan Matthews's avatar Tristan Matthews
Browse files

audiortp: cleanup

parent fdfac0fa
No related branches found
No related tags found
No related merge requests found
......@@ -54,18 +54,12 @@ AudioSymmetricRtpSession::AudioSymmetricRtpSession (SIPCall * sipcall) :
AudioSymmetricRtpSession::~AudioSymmetricRtpSession()
{
// XXX: DON'T call any members of this (i.e. AudioSymmetricRtpSession and
// the classes from which it is derived, or touch any of their data
_info ("AudioSymmetricRtpSession: Delete AudioSymmetricRtpSession instance");
_rtpThread->running = false;
delete _rtpThread;
}
void AudioSymmetricRtpSession::final()
{
}
AudioSymmetricRtpSession::AudioRtpThread::AudioRtpThread (AudioSymmetricRtpSession *session) : running (true), rtpSession (session)
{
_debug ("AudioSymmetricRtpSession: Create new rtp thread");
......
......@@ -66,8 +66,6 @@ class AudioSymmetricRtpSession : public ost::TimerPort, public ost::SymmetricRTP
~AudioSymmetricRtpSession();
virtual void final ();
virtual bool onRTPPacketRecv (ost::IncomingRTPPkt& pkt) { return AudioRtpSession::onRTPPacketRecv(pkt); }
int startSymmetricRtpThread (void) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment