Skip to content
Snippets Groups Projects
Commit 41479ea2 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#4874] Fix compile time warning in RTP record handler

parent 355fc02e
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ AudioRtpRecord::~AudioRtpRecord()
}
AudioRtpRecordHandler::AudioRtpRecordHandler (ManagerImpl *manager, SIPCall *ca) : _audioRtpRecord (), _ca (ca) {}
AudioRtpRecordHandler::AudioRtpRecordHandler (SIPCall *ca) : _audioRtpRecord (), _ca (ca) {}
AudioRtpRecordHandler::~AudioRtpRecordHandler() {}
......
......@@ -118,7 +118,7 @@ class AudioRtpRecord
class AudioRtpRecordHandler
{
public:
AudioRtpRecordHandler (ManagerImpl *manager, SIPCall *ca);
AudioRtpRecordHandler (SIPCall *ca);
~AudioRtpRecordHandler();
/**
......
......@@ -43,7 +43,7 @@ namespace sfl
AudioRtpSession::AudioRtpSession (ManagerImpl * manager, SIPCall * sipcall) :
// ost::SymmetricRTPSession (ost::InetHostAddress (sipcall->getLocalIp().c_str()), sipcall->getLocalAudioPort()),
AudioRtpRecordHandler (manager, sipcall),
AudioRtpRecordHandler (sipcall),
ost::TRTPSessionBase<ost::SymmetricRTPChannel,ost::SymmetricRTPChannel,ost::AVPQueue> (ost::InetHostAddress (sipcall->getLocalIp().c_str()),
sipcall->getLocalAudioPort(),
0,
......
......@@ -51,7 +51,7 @@ namespace sfl
AudioZrtpSession::AudioZrtpSession (ManagerImpl * manager, SIPCall * sipcall, const std::string& zidFilename) :
// ost::SymmetricZRTPSession (ost::InetHostAddress (sipcall->getLocalIp().c_str()), sipcall->getLocalAudioPort()),
AudioRtpRecordHandler (manager, sipcall),
AudioRtpRecordHandler (sipcall),
ost::TRTPSessionBase<ost::SymmetricRTPChannel, ost::SymmetricRTPChannel, ost::ZrtpQueue> (ost::InetHostAddress (sipcall->getLocalIp().c_str()),
sipcall->getLocalAudioPort(),
0,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment