[mod_conference] make conference breakable
This commit is contained in:
parent
ce87856c91
commit
8e2bba1d9d
|
@ -839,6 +839,13 @@ void *SWITCH_THREAD_FUNC conference_loop_input(switch_thread_t *thread, void *ob
|
|||
continue;
|
||||
}
|
||||
|
||||
if (conference_utils_test_flag(member->conference, CFLAG_BREAKABLE) &&
|
||||
switch_channel_test_flag(channel, CF_BREAK)) {
|
||||
switch_channel_clear_flag(channel, CF_BREAK);
|
||||
status = SWITCH_STATUS_BREAK;
|
||||
break;
|
||||
}
|
||||
|
||||
/* Read a frame. */
|
||||
status = switch_core_session_read_frame(session, &read_frame, SWITCH_IO_FLAG_NONE, 0);
|
||||
|
||||
|
|
|
@ -216,6 +216,8 @@ void conference_utils_set_cflags(const char *flags, conference_flag_t *f)
|
|||
f[CFLAG_PERSONAL_CANVAS] = 1;
|
||||
} else if (!strcasecmp(argv[i], "ded-vid-layer-audio-floor")) {
|
||||
f[CFLAG_DED_VID_LAYER_AUDIO_FLOOR] = 1;
|
||||
} else if (!strcasecmp(argv[i], "breakable")) {
|
||||
f[CFLAG_BREAKABLE] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -255,6 +255,7 @@ typedef enum {
|
|||
CFLAG_VIDEO_MUTE_EXIT_CANVAS,
|
||||
CFLAG_NO_MOH,
|
||||
CFLAG_DED_VID_LAYER_AUDIO_FLOOR,
|
||||
CFLAG_BREAKABLE,
|
||||
/////////////////////////////////
|
||||
CFLAG_MAX
|
||||
} conference_flag_t;
|
||||
|
|
Loading…
Reference in New Issue