summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c4
1 files changed, 3 insertions, 1 deletions
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;