From e9e1c410607d527a649d60dc664f3c7cfae693d4 Mon Sep 17 00:00:00 2001 From: Dudemanguy Date: Mon, 9 Aug 2021 16:39:08 -0500 Subject: vo_wlshm: remove empty options struct This doesn't do anything and isn't needed as there are no wlshm-specific options. --- video/out/vo_wlshm.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/video/out/vo_wlshm.c b/video/out/vo_wlshm.c index 5e7ae94a1d..4744e505f3 100644 --- a/video/out/vo_wlshm.c +++ b/video/out/vo_wlshm.c @@ -304,11 +304,6 @@ static void uninit(struct vo *vo) vo_wayland_uninit(vo); } -#define OPT_BASE_STRUCT struct priv -static const m_option_t options[] = { - {0} -}; - const struct vo_driver video_out_wlshm = { .description = "Wayland SHM video output (software scaling)", .name = "wlshm", @@ -323,5 +318,4 @@ const struct vo_driver video_out_wlshm = { .wait_events = vo_wayland_wait_events, .uninit = uninit, .priv_size = sizeof(struct priv), - .options = options, }; -- cgit v1.2.3