summaryrefslogtreecommitdiffstats
path: root/player/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/video.c')
-rw-r--r--player/video.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/player/video.c b/player/video.c
index e905583edb..53404a2a20 100644
--- a/player/video.c
+++ b/player/video.c
@@ -348,8 +348,10 @@ void mp_force_video_refresh(struct MPContext *mpctx)
return;
// If not paused, the next frame should come soon enough.
- if (opts->pause && mpctx->last_vo_pts != MP_NOPTS_VALUE)
- queue_seek(mpctx, MPSEEK_ABSOLUTE, mpctx->last_vo_pts, 2, true);
+ if (opts->pause && mpctx->last_vo_pts != MP_NOPTS_VALUE) {
+ queue_seek(mpctx, MPSEEK_ABSOLUTE, mpctx->last_vo_pts,
+ MPSEEK_VERY_EXACT, true);
+ }
}
static int check_framedrop(struct MPContext *mpctx)