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.6.19~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=812e3daf70421038f0c2f22efdf86caaef091db8;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 548a60b94a..f92343ddfc 100644 --- a/src/mod/applications/mod_conference/conference_video.c +++ b/src/mod/applications/mod_conference/conference_video.c @@ -3907,6 +3907,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);