From 8234dadcaf95973eb877b8dc4c1e569e924ea964 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Wed, 22 Apr 2015 09:30:53 -0500 Subject: [PATCH] FS-7513: skip patching logo when video muted --- 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 bb79043495..329ffb77d3 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -1103,7 +1103,7 @@ static void scale_and_patch(conference_obj_t *conference, mcu_layer_t *layer, sw switch_img_patch(IMG, layer->img, x_pos, y_pos); } - if (layer->logo_img) { + if (layer->logo_img && !ximg) { int ew = layer->screen_w, eh = layer->screen_h - (layer->banner_img ? layer->banner_img->d_h : 0); int ex = 0, ey = 0;