[Freeswitch-svn] [commit] r5649 - freeswitch/trunk/src/mod/applications/mod_conference

Freeswitch SVN anthm at freeswitch.org
Tue Aug 21 11:49:31 EDT 2007


Author: anthm
Date: Tue Aug 21 11:49:31 2007
New Revision: 5649

Modified:
   freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c

Log:
fix conference buffer for 30ms conference and 20ms chans

Modified: freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c
==============================================================================
--- freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c	(original)
+++ freeswitch/trunk/src/mod/applications/mod_conference/mod_conference.c	Tue Aug 21 11:49:31 2007
@@ -1720,7 +1720,7 @@
 						switch_set_flag_locked(member, MFLAG_FLUSH_BUFFER);
 					}
 					mux_used = 0;
-				} else if (mux_used > bytes * 2) {
+				} else if (mux_used > bytes * 4) {
 					/* getting behind, clear the buffer */
 					switch_set_flag_locked(member, MFLAG_FLUSH_BUFFER);
 				}



More information about the Freeswitch-svn mailing list