]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-9511 up the max size a tad
authorAnthony Minessale <anthm@freeswitch.org>
Thu, 15 Sep 2016 20:49:47 +0000 (15:49 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Thu, 15 Sep 2016 20:49:47 +0000 (15:49 -0500)
src/switch_rtp.c

index a0575747fca9143c440f1c75104585fd33b0e52b..ff170508e187e20fe09b328d526956e7ba81a334 100644 (file)
@@ -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;
        }