From 0af2659691ab77b1d2a47eea08c0cd0944123adf Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Thu, 15 Sep 2016 15:49:47 -0500 Subject: [PATCH] FS-9511 up the max size a tad --- src/switch_rtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }