From: Anthony Minessale Date: Fri, 18 Oct 2013 14:14:24 +0000 (+0500) Subject: send video break on floor change X-Git-Tag: v1.4.1~11^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf78270540056229065c481b1742083502c7f933;p=thirdparty%2Ffreeswitch.git send video break on floor change --- diff --git a/src/mod/applications/mod_conference/mod_conference.c b/src/mod/applications/mod_conference/mod_conference.c index 06677e33cd..a847fb4ea2 100644 --- a/src/mod/applications/mod_conference/mod_conference.c +++ b/src/mod/applications/mod_conference/mod_conference.c @@ -1657,6 +1657,9 @@ static void conference_set_video_floor_holder(conference_obj_t *conference, conf } else { switch_channel_clear_flag(imember->channel, CF_VIDEO_PASSIVE); } + + switch_channel_set_flag(imember->channel, CF_VIDEO_BREAK); + switch_core_session_kill_channel(imember->session, SWITCH_SIG_BREAK); switch_core_session_refresh_video(imember->session); }