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 ccdac3b042..6de89fc31e 100644
--- a/player/video.c
+++ b/player/video.c
@@ -333,7 +333,9 @@ 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) {
+ if (opts->pause && mpctx->video_status == STATUS_PLAYING &&
+ mpctx->last_vo_pts != MP_NOPTS_VALUE)
+ {
queue_seek(mpctx, MPSEEK_ABSOLUTE, mpctx->last_vo_pts,
MPSEEK_VERY_EXACT, true);
}