diff --git a/video/out/vo.c b/video/out/vo.c index 74449a9296..4b28aadaa1 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -830,7 +830,9 @@ static bool render_frame(struct vo *vo) update_vsync_timing_after_swap(vo); } - if (!in->dropped_frame) { + if (in->dropped_frame) { + MP_STATS(vo, "drop-vo"); + } else { vo->want_redraw = false; in->want_redraw = false; in->request_redraw = false;