mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
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:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user