From 8df780cb50ec4bb615ac25987de52bb3b4126de9 Mon Sep 17 00:00:00 2001 From: wm4 Date: Thu, 16 May 2013 14:12:01 +0200 Subject: vo: remove vo.check_events callback Use VOCTRL_CHECK_EVENTS instead. Change the remaining VOs to use it. Only vo_sdl and vo_caca actually need this, and vo_null, vo_lavc, and vo_image had stubs only. --- video/out/vo_lavc.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'video/out/vo_lavc.c') diff --git a/video/out/vo_lavc.c b/video/out/vo_lavc.c index f9534b02e7..6d1eb5c6f8 100644 --- a/video/out/vo_lavc.c +++ b/video/out/vo_lavc.c @@ -464,10 +464,6 @@ static void flip_page_timed(struct vo *vo, unsigned int pts_us, int duration) { } -static void check_events(struct vo *vo) -{ -} - static void draw_osd(struct vo *vo, struct osd_state *osd) { struct priv *vc = vo->priv; @@ -524,7 +520,6 @@ const struct vo_driver video_out_lavc = { .config = config, .control = control, .uninit = uninit, - .check_events = check_events, .draw_image = draw_image, .draw_osd = draw_osd, .flip_page_timed = flip_page_timed, -- cgit v1.2.3