Add vmute member flag to mod_conference.

A 'vmute' flag can be applied to individual conferees when entering the
conference. When the flag is passed, conferees will enter the conference
with their video muted.

FS-7813 #resolve
This commit is contained in:
Chad Phillips 2015-07-15 13:00:12 -07:00
parent 56ee6537ca
commit c49f87313a
1 changed files with 2 additions and 0 deletions

View File

@ -12789,6 +12789,8 @@ static void set_mflags(const char *flags, member_flag_t *f)
if (!strcasecmp(argv[i], "mute")) {
f[MFLAG_CAN_SPEAK] = 0;
f[MFLAG_TALKING] = 0;
} else if (!strcasecmp(argv[i], "vmute")) {
f[MFLAG_CAN_BE_SEEN] = 0;
} else if (!strcasecmp(argv[i], "deaf")) {
f[MFLAG_CAN_HEAR] = 0;
} else if (!strcasecmp(argv[i], "mute-detect")) {