From 7aba3a5d96b0d3b22c9e93057b6d1b4cba0e5104 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 30 Oct 2015 14:05:41 +0100 Subject: command: add mistimed-frame-count property Does what the manpage says. This is a replacement incrementing the dropped frame counter (see previous commit). --- player/video.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'player/video.c') 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); -- cgit v1.2.3