Skip to content
Snippets Groups Projects
Commit 7c9839ee authored by yanmorin's avatar yanmorin
Browse files

*** empty log message ***

parent 50d6c312
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -246,14 +246,24 @@ AudioRtpRTX::receiveSessionForSpkr (int16* data_for_speakers, ...@@ -246,14 +246,24 @@ AudioRtpRTX::receiveSessionForSpkr (int16* data_for_speakers,
// Get audio data stream // Get audio data stream
#if 0
do { do {
Thread::sleep(5); // in msec. Thread::sleep(5); // in msec.
#endif
if (!_sym) { if (!_sym) {
adu = _sessionRecv->getData(_sessionRecv->getFirstTimestamp()); adu = _sessionRecv->getData(_sessionRecv->getFirstTimestamp());
} else { } else {
adu = _session->getData(_session->getFirstTimestamp()); adu = _session->getData(_session->getFirstTimestamp());
} }
# if 0
} while (adu == NULL); } while (adu == NULL);
#else
if (adu == NULL) {
Manager::instance().getAudioDriver()->mainSndRingBuffer().flush();
//Manager::instance().getAudioDriver()->stopStream();
return;
}
#endif
// Decode data with relevant codec // Decode data with relevant codec
CodecDescriptor* cd = new CodecDescriptor (adu->getType()); CodecDescriptor* cd = new CodecDescriptor (adu->getType());
...@@ -277,7 +287,7 @@ AudioRtpRTX::receiveSessionForSpkr (int16* data_for_speakers, ...@@ -277,7 +287,7 @@ AudioRtpRTX::receiveSessionForSpkr (int16* data_for_speakers,
Manager::instance().getAudioDriver()->mainSndRingBuffer().Put(data_for_speakers_tmp, SAMPLES_SIZE(RTP_FRAMES2SEND)); Manager::instance().getAudioDriver()->mainSndRingBuffer().Put(data_for_speakers_tmp, SAMPLES_SIZE(RTP_FRAMES2SEND));
//} //}
// Notify (with a bip) an incoming call when there is already a call // Notify (with a beep) an incoming call when there is already a call
countTime += time->getSecond(); countTime += time->getSecond();
if (Manager::instance().getNumberOfCalls() > 0 if (Manager::instance().getNumberOfCalls() > 0
and Manager::instance().getbRingtone()) { and Manager::instance().getbRingtone()) {
......
...@@ -224,8 +224,8 @@ GUIServerImpl::incomingCall (short id, const std::string& accountId, const std:: ...@@ -224,8 +224,8 @@ GUIServerImpl::incomingCall (short id, const std::string& accountId, const std::
TokenList arg; TokenList arg;
std::ostringstream callId; std::ostringstream callId;
callId << "s" << id; callId << "s" << id;
arg.push_back(accountId);
arg.push_back(callId.str()); arg.push_back(callId.str());
arg.push_back(accountId);
arg.push_back(from); arg.push_back(from);
arg.push_back("call"); arg.push_back("call");
......
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