From 6c2f25a7b0271fd901f946324ea3b850bebc290a Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 23 Mar 2015 16:34:14 +0100 Subject: video: fix update of vo-configured property It obviously needs to be updated after the VO was destroyed. --- player/video.c | 1 + 1 file changed, 1 insertion(+) (limited to 'player/video.c') diff --git a/player/video.c b/player/video.c index e072de7c99..b544a44b26 100644 --- a/player/video.c +++ b/player/video.c @@ -238,6 +238,7 @@ void uninit_video_out(struct MPContext *mpctx) if (mpctx->video_out) vo_destroy(mpctx->video_out); mpctx->video_out = NULL; + mp_notify(mpctx, MPV_EVENT_VIDEO_RECONFIG, NULL); } void uninit_video_chain(struct MPContext *mpctx) -- cgit v1.2.3