From 0685a073edf191b855c1328f795995b9f331f5d0 Mon Sep 17 00:00:00 2001 From: Anthony Minessale <anthm@freeswitch.org> Date: Tue, 26 Apr 2016 23:19:25 -0500 Subject: [PATCH] FS-9106 up default FPS to 30 --- src/mod/applications/mod_conference/mod_conference.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 9fd34cb736..d4e4445c6e 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2464,7 +2464,7 @@ conference_obj_t *conference_new(char *name, conference_xml_cfg_t cfg, switch_co conference_video_mode_t conference_video_mode = CONF_VIDEO_MODE_PASSTHROUGH; int conference_video_quality = 1; int auto_kps_debounce = 30000; - float fps = 15.0f; + float fps = 30.0f; uint32_t max_members = 0; uint32_t announce_count = 0; char *maxmember_sound = NULL;