From 9dd1a137479a41944b43ba45cdd76d63eca75038 Mon Sep 17 00:00:00 2001 From: jmir1 Date: Sun, 21 Jan 2024 16:37:36 +0100 Subject: [PATCH] command: do a normal seek instead of a refresh seek when switching vo --- player/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player/command.c b/player/command.c index caf134aa66..a5a688a61e 100644 --- a/player/command.c +++ b/player/command.c @@ -7054,7 +7054,7 @@ void mp_option_change_callback(void *ctx, struct m_config_option *co, int flags, handle_force_window(mpctx, true); reinit_video_chain(mpctx); if (track) - reselect_demux_stream(mpctx, track, true); + queue_seek(mpctx, MPSEEK_RELATIVE, 0.0, MPSEEK_EXACT, 0); mp_wakeup_core(mpctx); }