From 1de25f3514f1555edc308d10d0ccb1091d732dc6 Mon Sep 17 00:00:00 2001
From: Anthony Minessale <anthony.minessale@gmail.com>
Date: Tue, 21 Aug 2007 15:49:31 +0000
Subject: [PATCH] fix conference buffer for 30ms conference and 20ms chans

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5649 d0543943-73ff-0310-b7d9-9358b9ac24b2
---
 src/mod/applications/mod_conference/mod_conference.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c
index de1204eb91..e1a718dbda 100644
--- a/src/mod/applications/mod_conference/mod_conference.c
+++ b/src/mod/applications/mod_conference/mod_conference.c
@@ -1720,7 +1720,7 @@ static void conference_loop_output(conference_member_t * member)
 						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);
 				}