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, 4 insertions, 0 deletions
diff --git a/player/video.c b/player/video.c
index af98c676ed..857fb017bc 100644
--- a/player/video.c
+++ b/player/video.c
@@ -211,6 +211,7 @@ void reset_video_state(struct MPContext *mpctx)
mpctx->display_sync_disable_counter = 0;
mpctx->dropped_frames_total = 0;
mpctx->dropped_frames = 0;
+ mpctx->mistimed_frames_total = 0;
mpctx->drop_message_shown = 0;
mpctx->display_sync_drift_dir = 0;
@@ -1034,6 +1035,9 @@ static void handle_display_sync_frame(struct MPContext *mpctx,
// Likewise, we know sync is off, but is going to be compensated.
time_left += drop_repeat * vsync;
+ if (drop_repeat)
+ mpctx->mistimed_frames_total += 1;
+
mpctx->total_avsync_change = 0;
update_av_diff(mpctx, time_left);