From: Anthony Minessale Date: Thu, 15 Sep 2016 20:49:47 +0000 (-0500) Subject: FS-9511 up the max size a tad X-Git-Tag: v1.6.11~9^2~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0af2659691ab77b1d2a47eea08c0cd0944123adf;p=thirdparty%2Ffreeswitch.git FS-9511 up the max size a tad --- diff --git a/src/switch_rtp.c b/src/switch_rtp.c index a0575747fc..ff170508e1 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -4174,7 +4174,7 @@ SWITCH_DECLARE(switch_status_t) switch_rtp_activate_jitter_buffer(switch_rtp_t * } if (max_queue_frames < queue_frames) { - max_queue_frames = queue_frames * 3; + max_queue_frames = queue_frames * 6; }