command: add mistimed-frame-count property

Does what the manpage says. This is a replacement incrementing the
dropped frame counter (see previous commit).
This commit is contained in:
wm4
2015-10-30 14:05:41 +01:00
parent acd5816a6d
commit 7aba3a5d96
4 changed files with 26 additions and 3 deletions

View File

@@ -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);