summaryrefslogtreecommitdiffstats
path: root/player/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/video.c')
-rw-r--r--player/video.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/player/video.c b/player/video.c
index fb4b41f718..fb8cf9cbc0 100644
--- a/player/video.c
+++ b/player/video.c
@@ -539,7 +539,9 @@ void mp_force_video_refresh(struct MPContext *mpctx)
return;
// If not paused, the next frame should come soon enough.
- if (opts->pause && mpctx->video_status == STATUS_PLAYING &&
+ if ((opts->pause || mpctx->time_frame >= 0.5) &&
+ (mpctx->video_status >= STATUS_PLAYING ||
+ mpctx->video_status <= STATUS_DRAINING) &&
mpctx->last_vo_pts != MP_NOPTS_VALUE)
{
queue_seek(mpctx, MPSEEK_ABSOLUTE, mpctx->last_vo_pts,