FS-10138: [freeswitch-core,mod_conference] Add alpha video to conference

This commit is contained in:
Anthony Minessale 2017-03-16 16:28:18 -05:00
parent ae40f8b529
commit 1da17bb3b3
1 changed files with 10 additions and 8 deletions

View File

@ -93,6 +93,7 @@ switch_status_t conference_file_close(conference_obj_t *conference, conference_f
}
#endif
if (node->canvas_id > -1) {
canvas = conference->canvases[node->canvas_id];
if (canvas->playing_video_file) {
@ -104,6 +105,7 @@ switch_status_t conference_file_close(conference_obj_t *conference, conference_f
canvas->send_keyframe = 1;
canvas->overlay_video_file = 0;
}
}
return switch_core_file_close(&node->fh);
}