This commit is contained in:
Anthony Minessale 2017-03-15 18:15:31 -05:00
parent bff1ee0f95
commit 025833c442
1 changed files with 6 additions and 0 deletions

View File

@ -95,6 +95,12 @@ switch_status_t conference_file_close(conference_obj_t *conference, conference_f
conference->canvases[node->canvas_id]->send_keyframe = 1; conference->canvases[node->canvas_id]->send_keyframe = 1;
conference->playing_video_file = 0; conference->playing_video_file = 0;
} }
if (conference->overlay_video_file) {
conference->canvases[node->canvas_id]->send_keyframe = 1;
conference->overlay_video_file = 0;
}
return switch_core_file_close(&node->fh); return switch_core_file_close(&node->fh);
} }