From c8592be1fec58805a6f50a790446e4a023949e85 Mon Sep 17 00:00:00 2001 From: Seven Du Date: Sun, 1 Oct 2017 10:01:29 +0800 Subject: [PATCH] FS-11300 #resolve pause read to avoide decode initially vmuted members --- src/mod/applications/mod_conference/mod_conference.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 74894014bd..7f93e182a1 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -2417,6 +2417,10 @@ SWITCH_STANDARD_APP(conference_function) } } + if (!mflags[MFLAG_CAN_BE_SEEN]) { + switch_channel_set_flag(channel, CF_VIDEO_PAUSE_READ); + } + if (mpin_matched) { mflags[MFLAG_MOD] = 1; }