From: Anthony Minessale Date: Fri, 7 Jul 2017 16:35:36 +0000 (-0500) Subject: FS-10448: [mod_conference] Add Video Blind -- make blind video feature work in passth... X-Git-Tag: v1.8.0~377 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aba1068e091f73272e4f2bc766cb896ba093359c;p=thirdparty%2Ffreeswitch.git FS-10448: [mod_conference] Add Video Blind -- make blind video feature work in passthrough mode too --- diff --git a/src/mod/applications/mod_conference/conference_video.c b/src/mod/applications/mod_conference/conference_video.c index b3a5fb9d55..1994ec08f9 100644 --- a/src/mod/applications/mod_conference/conference_video.c +++ b/src/mod/applications/mod_conference/conference_video.c @@ -4602,6 +4602,10 @@ void conference_video_write_frame(conference_obj_t *conference, conference_membe continue; } + if (!conference_utils_member_test_flag(imember, MFLAG_CAN_SEE)) { + continue; + } + if (switch_channel_test_flag(imember->channel, CF_VIDEO_REFRESH_REQ)) { want_refresh++; switch_channel_clear_flag(imember->channel, CF_VIDEO_REFRESH_REQ);