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

[#4524] Increment RTP count when sending data

parent 6df9dd8b
No related branches found
No related tags found
No related merge requests found
0.9.10
0.9.11
AC_INIT([SFLphone],[0.9.10],[sflphoneteam@savoirfairelinux.com],[sflphone-client-gnome])
AC_INIT([SFLphone],[0.9.11],[sflphoneteam@savoirfairelinux.com],[sflphone-client-gnome])
AM_CONFIG_HEADER(config.h)
LT_INIT
......
0.9.10
0.9.11
......@@ -3,7 +3,7 @@ dnl
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT([sflphone],[0.9.10],[sflphoneteam@savoirfairelinux.com],[sflphone])
AC_INIT([sflphone],[0.9.11],[sflphoneteam@savoirfairelinux.com],[sflphone])
AC_COPYRIGHT([[Copyright (c) Savoir-Faire Linux 2004, 2005, 2006, 2007, 2008, 2009, 2010]])
AC_REVISION([$Revision$])
......
......@@ -241,6 +241,8 @@ void AudioRtpSession::sendMicData()
if (!compSize)
return;
_timestampCount++;
// Reset timestamp to make sure the timing information are up to date
if (_timestampCount > RTP_TIMESTAMP_RESET_FREQ) {
_timestamp = getCurrentTimestamp();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment