[Asterisk-cvs] asterisk/channels chan_iax2.c,1.296,1.297
markster at lists.digium.com
markster at lists.digium.com
Thu Jun 2 13:42:34 CDT 2005
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv2162/channels
Modified Files:
chan_iax2.c
Log Message:
Blindly merge jitter buffer patch of bug #4342)
Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.296
retrieving revision 1.297
diff -u -d -r1.296 -r1.297
--- chan_iax2.c 30 May 2005 13:57:51 -0000 1.296
+++ chan_iax2.c 2 Jun 2005 17:45:38 -0000 1.297
@@ -857,13 +857,13 @@
ast_copy_string(tmp->host, host, sizeof(tmp->host));
#ifdef NEWJB
{
- jb_info jbinfo;
+ jb_conf jbconf;
tmp->jb = jb_new();
tmp->jbid = -1;
- jbinfo.max_jitterbuf = maxjitterbuffer;
- jbinfo.resync_threshold = resyncthreshold;
- jb_setinfo(tmp->jb,&jbinfo);
+ jbconf.max_jitterbuf = maxjitterbuffer;
+ jbconf.resync_threshold = resyncthreshold;
+ jb_setconf(tmp->jb,&jbconf);
}
#endif
}
More information about the svn-commits
mailing list