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

[#4514] Adjust RTP timestamp

parent 5b45b7c2
Branches
Tags
No related merge requests found
...@@ -121,8 +121,6 @@ addressbook_config_books() ...@@ -121,8 +121,6 @@ addressbook_config_books()
g_strfreev (list); g_strfreev (list);
} }
// Update buttons
// update_actions ();
} }
/** /**
......
...@@ -320,9 +320,6 @@ int AudioRtpSession::startRtpThread (AudioCodec* audiocodec) ...@@ -320,9 +320,6 @@ int AudioRtpSession::startRtpThread (AudioCodec* audiocodec)
void AudioRtpSession::run () void AudioRtpSession::run ()
{ {
// Timestamp must be initialized randomly, already done when instantiating outgoing queue
_timestamp = getCurrentTimestamp();
/** /**
int threadSleep = 0; int threadSleep = 0;
...@@ -344,6 +341,9 @@ void AudioRtpSession::run () ...@@ -344,6 +341,9 @@ void AudioRtpSession::run ()
_debug ("AudioRtpSession: Entering mainloop for call %s",_ca->getCallId().c_str()); _debug ("AudioRtpSession: Entering mainloop for call %s",_ca->getCallId().c_str());
// Timestamp must be initialized randomly, already done when instantiating outgoing queue
_timestamp = getCurrentTimestamp();
uint32 timeout = 0; uint32 timeout = 0;
while (isActive()) { while (isActive()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment