]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
up default max jb size to 50
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 21 Oct 2015 16:50:02 +0000 (11:50 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 21 Oct 2015 16:50:14 +0000 (11:50 -0500)
src/switch_core_media.c

index 07ca9e30c3d33a8ce53bfd50e228bfe965991da3..09266438f170033a3eda38eeaf010dd99141683b 100644 (file)
@@ -1920,8 +1920,8 @@ static void check_jb(switch_core_session_t *session, const char *input, int32_t
                        switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR,
                                                          "Invalid Jitterbuffer spec [%d] must be between 10 and 10000\n", jb_msec);
                } else {
-                       int qlen, maxqlen = 30;
-                               
+                       int qlen, maxqlen = 50;
+                       
                        qlen = jb_msec / (a_engine->read_impl.microseconds_per_packet / 1000);
 
                        if (maxlen) {