summaryrefslogtreecommitdiffstats
path: root/video/out/vo.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-11-13 22:41:41 +0100
committerwm4 <wm4@nowhere>2015-11-13 22:41:41 +0100
commitf0feea55918e133ba3e6871e2bb1cbd9610cb2d1 (patch)
tree2a6d808fab4b5b3de03f7588037b2dd8b2408ac2 /video/out/vo.h
parentdef87f1e5f693ed24b5c8f62e8e86dbaebe4d993 (diff)
downloadmpv-f0feea55918e133ba3e6871e2bb1cbd9610cb2d1.tar.bz2
mpv-f0feea55918e133ba3e6871e2bb1cbd9610cb2d1.tar.xz
command: rename vo-missed-frame-count property
"Missed" implies the frame was dropped, but what really happens is that the following frame will be shown later than intended (due to the current frame skipping a vsync). (As of this commit, this property is still inactive and always returns 0. See git blame for details.)
Diffstat (limited to 'video/out/vo.h')
-rw-r--r--video/out/vo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo.h b/video/out/vo.h
index 213b287ab2..c7bcccd778 100644
--- a/video/out/vo.h
+++ b/video/out/vo.h
@@ -332,7 +332,7 @@ void vo_destroy(struct vo *vo);
void vo_set_paused(struct vo *vo, bool paused);
int64_t vo_get_drop_count(struct vo *vo);
void vo_increment_drop_count(struct vo *vo, int64_t n);
-int64_t vo_get_missed_count(struct vo *vo);
+int64_t vo_get_delayed_count(struct vo *vo);
void vo_query_formats(struct vo *vo, uint8_t *list);
void vo_event(struct vo *vo, int event);
int vo_query_and_reset_events(struct vo *vo, int events);