From: Anthony Minessale Date: Tue, 21 Aug 2007 15:49:31 +0000 (+0000) Subject: fix conference buffer for 30ms conference and 20ms chans X-Git-Tag: v1.0-beta2~694 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1de25f3514f1555edc308d10d0ccb1091d732dc6;p=thirdparty%2Ffreeswitch.git 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 --- 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); }