From: Anthony Minessale Date: Mon, 14 Sep 2015 22:13:33 +0000 (-0500) Subject: down to 512 instead of 256 X-Git-Tag: v1.6.2~1^2~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbd7db370dea3e727658a4228132f024e5d6687d;p=thirdparty%2Ffreeswitch.git down to 512 instead of 256 --- diff --git a/src/switch_jitterbuffer.c b/src/switch_jitterbuffer.c index ae34b0183f..7041738812 100644 --- a/src/switch_jitterbuffer.c +++ b/src/switch_jitterbuffer.c @@ -435,7 +435,7 @@ static void jb_frame_inc(switch_jb_t *jb, int i) switch_channel_clear_flag(jb->channel, CF_VIDEO_BITRATE_UNMANAGABLE); } else { switch_core_session_message_t msg = { 0 }; - int new_bitrate = 256; + int new_bitrate = 512; msg.message_id = SWITCH_MESSAGE_INDICATE_BITRATE_REQ; msg.numeric_arg = new_bitrate * 1024;