summaryrefslogtreecommitdiffstats
path: root/video/out/vo.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-05-25 18:39:46 +0200
committerwm4 <wm4@nowhere>2013-05-26 16:44:20 +0200
commit51254a678c386cf48f2caa51e06ad34065c8693a (patch)
tree2a6bd525ae6db1582c7c1c752a722695dd6560b4 /video/out/vo.h
parent561aab2d770776fcc60a03f3aca20782572b9a36 (diff)
downloadmpv-51254a678c386cf48f2caa51e06ad34065c8693a.tar.bz2
mpv-51254a678c386cf48f2caa51e06ad34065c8693a.tar.xz
vo: rip out VO timer wakeup mechanism again
This was used by some VOs to do timing of cursor autohiding, but we recently moved that out of the VOs. Even though this mechanism might be a good idea and could be needed again in future (but for what?), it's unused now. So better just get rid of it.
Diffstat (limited to 'video/out/vo.h')
-rw-r--r--video/out/vo.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/video/out/vo.h b/video/out/vo.h
index 814268e1c6..f357b21797 100644
--- a/video/out/vo.h
+++ b/video/out/vo.h
@@ -237,9 +237,6 @@ struct vo {
double flip_queue_offset; // queue flip events at most this much in advance
- unsigned int next_wakeup_time; // deadline for next vo_check_events() call,
- // in GetTimerMS() units (set by VO)
-
const struct vo_driver *driver;
void *priv;
struct mp_vo_opts *opts;
@@ -294,7 +291,6 @@ void vo_new_frame_imminent(struct vo *vo);
void vo_draw_osd(struct vo *vo, struct osd_state *osd);
void vo_flip_page(struct vo *vo, unsigned int pts_us, int duration);
void vo_check_events(struct vo *vo);
-unsigned int vo_get_sleep_time(struct vo *vo);
void vo_seek_reset(struct vo *vo);
void vo_destroy(struct vo *vo);