player/video: set video_out to NULL before broadcasting events

This avoids possible reference of video_out after destory.
This commit is contained in:
Kacper Michajłow 2024-01-04 02:44:49 +01:00 committed by sfan5
parent ab5b250343
commit 6e5fd52dde
1 changed files with 1 additions and 1 deletions

View File

@ -129,9 +129,9 @@ void uninit_video_out(struct MPContext *mpctx)
uninit_video_chain(mpctx);
if (mpctx->video_out) {
vo_destroy(mpctx->video_out);
mpctx->video_out = NULL;
mp_notify(mpctx, MPV_EVENT_VIDEO_RECONFIG, NULL);
}
mpctx->video_out = NULL;
}
static void vo_chain_uninit(struct vo_chain *vo_c)