From c690ae67ca89d2727a57b12fb7989fc3b53acf3d Mon Sep 17 00:00:00 2001 From: Mike Jerris Date: Fri, 25 Mar 2016 18:37:25 +0000 Subject: [PATCH] FS-8977: default to enable hw encoder on conference too --- src/mod/applications/mod_conference/mod_conference.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index aedb576b60..85f749fc78 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2906,6 +2906,8 @@ conference_obj_t *conference_new(char *name, conference_xml_cfg_t cfg, switch_co } } + conference->video_codec_settings.video.try_hardware_encoder = 1; + if (zstr(video_layout_name)) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "No video-layout-name specified, using " CONFERENCE_MUX_DEFAULT_LAYOUT "\n"); video_layout_name = CONFERENCE_MUX_DEFAULT_LAYOUT;