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
        }

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to