From: Seven Du Date: Sun, 1 Oct 2017 02:01:29 +0000 (+0800) Subject: FS-11300 #resolve pause read to avoide decode initially vmuted members X-Git-Tag: v1.10.0~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8592be1fec58805a6f50a790446e4a023949e85;p=thirdparty%2Ffreeswitch.git FS-11300 #resolve pause read to avoide decode initially vmuted members --- 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; }