From 51254a678c386cf48f2caa51e06ad34065c8693a Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 25 May 2013 18:39:46 +0200 Subject: 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. --- video/out/vo.c | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'video/out/vo.c') diff --git a/video/out/vo.c b/video/out/vo.c index de73d35ecc..bf4f1660e1 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -228,7 +228,6 @@ void vo_flip_page(struct vo *vo, unsigned int pts_us, int duration) void vo_check_events(struct vo *vo) { - vo->next_wakeup_time = GetTimerMS() + 60 * 1000; if (!vo->config_ok) { if (vo->registered_fd != -1) mp_input_rm_key_fd(vo->input_ctx, vo->registered_fd); @@ -238,20 +237,6 @@ void vo_check_events(struct vo *vo) vo_control(vo, VOCTRL_CHECK_EVENTS, NULL); } -// Return the amount of time vo_check_events() should be called in milliseconds. -// Note: video timing is completely separate from this. -unsigned int vo_get_sleep_time(struct vo *vo) -{ - unsigned int sleep = 60 * 1000; - if (vo->config_ok && vo->next_wakeup_time) { - unsigned int now = GetTimerMS(); - sleep = 0; - if (vo->next_wakeup_time >= now) - sleep = vo->next_wakeup_time - now; - } - return sleep; -} - void vo_seek_reset(struct vo *vo) { vo_control(vo, VOCTRL_RESET, NULL); -- cgit v1.2.3