From: <do...@us...> - 2008-01-08 23:01:11
|
Revision: 1328 http://iaxclient.svn.sourceforge.net/iaxclient/?rev=1328&view=rev Author: dohpaz Date: 2008-01-08 15:01:12 -0800 (Tue, 08 Jan 2008) Log Message: ----------- Always note lastsent at the end of calc_timestamp() even if it's a genuine AST_FRAME_IAX packet. Brings inline with what's in chan_iax2.c. Modified Paths: -------------- branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c Modified: branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c =================================================================== --- branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c 2007-12-21 15:52:10 UTC (rev 1327) +++ branches/team/elbunce/iaxclient/lib/libiax2/src/iax.c 2008-01-08 23:01:12 UTC (rev 1328) @@ -662,9 +662,7 @@ } /* Record the last sent packet for future reference */ - /* unless an AST_FRAME_IAX */ - if (!genuine) - session->lastsent = ms; + session->lastsent = ms; #ifdef USE_VOICE_TS_PREDICTION /* set next predicted ts based on 8khz samples */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |