vo_wlshm: remove empty options struct

This doesn't do anything and isn't needed as there are no wlshm-specific
options.
This commit is contained in:
Dudemanguy 2021-08-09 16:39:08 -05:00
parent 21ab1df014
commit e9e1c41060
1 changed files with 0 additions and 6 deletions

View File

@ -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,
};