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_null.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'video/out/vo_null.c') diff --git a/video/out/vo_null.c b/video/out/vo_null.c index 993fcb606c..685b9c3a84 100644 --- a/video/out/vo_null.c +++ b/video/out/vo_null.c @@ -56,10 +56,6 @@ static void uninit(struct vo *vo) { } -static void check_events(struct vo *vo) -{ -} - static int preinit(struct vo *vo, const char *arg) { if (arg) { @@ -87,6 +83,5 @@ const struct vo_driver video_out_null = { .control = control, .draw_image = draw_image, .flip_page = flip_page, - .check_events = check_events, .uninit = uninit, }; -- cgit v1.2.3