FS-10379: [mod_conference] Set canvas size based on a variable

This commit is contained in:
Anthony Minessale 2017-07-14 11:29:51 -05:00
parent 60a5ff16d7
commit 26cbfd4f6c
1 changed files with 1 additions and 1 deletions

View File

@ -2623,7 +2623,7 @@ conference_obj_t *conference_new(char *name, conference_xml_cfg_t cfg, switch_co
video_super_canvas_bgcolor= val;
} else if (!strcasecmp(var, "video-letterbox-bgcolor") && !zstr(val)) {
video_letterbox_bgcolor= val;
} else if (!strcasecmp(var, "video-canvas-size") && !zstr(val)) {
} else if (!video_canvas_size && !strcasecmp(var, "video-canvas-size") && !zstr(val)) {
video_canvas_size = val;
} else if (!strcasecmp(var, "video-fps") && !zstr(val)) {
fps = (float)atof(val);