Commit 281553a2 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

xcb: remove unused parameter

parent eb713edf
......@@ -128,7 +128,6 @@ static const xcb_screen_t *FindScreen (vlc_object_t *obj,
vout_window_t *XCB_parent_Create (vout_display_t *vd,
xcb_connection_t **restrict pconn,
const xcb_screen_t **restrict pscreen,
uint8_t *restrict pdepth,
uint16_t *restrict pwidth,
uint16_t *restrict pheight)
{
......@@ -164,7 +163,6 @@ vout_window_t *XCB_parent_Create (vout_display_t *vd,
msg_Err (vd, "window not valid");
goto error;
}
*pdepth = geo->depth;
*pwidth = geo->width;
*pheight = geo->height;
......
......@@ -180,8 +180,7 @@ static int Open (vlc_object_t *obj)
xcb_connection_t *conn;
const xcb_screen_t *scr;
uint16_t width, height;
uint8_t depth;
sys->embed = XCB_parent_Create (vd, &conn, &scr, &depth, &width, &height);
sys->embed = XCB_parent_Create (vd, &conn, &scr, &width, &height);
if (sys->embed == NULL)
{
free (sys);
......
......@@ -116,8 +116,7 @@ static int Open (vlc_object_t *obj)
xcb_connection_t *conn;
const xcb_screen_t *scr;
uint16_t width, height;
sys->embed = XCB_parent_Create (vd, &conn, &scr,
&(uint8_t){ 0 }, &width, &height);
sys->embed = XCB_parent_Create (vd, &conn, &scr, &width, &height);
if (sys->embed == NULL)
{
free (sys);
......
......@@ -45,7 +45,7 @@ int XCB_error_Check (vout_display_t *, xcb_connection_t *conn,
struct vout_window_t *XCB_parent_Create (vout_display_t *obj,
xcb_connection_t **,
const xcb_screen_t **, uint8_t *depth,
const xcb_screen_t **,
uint16_t *width, uint16_t *height);
xcb_cursor_t XCB_cursor_Create (xcb_connection_t *, const xcb_screen_t *);
......
......@@ -387,9 +387,7 @@ static int Open (vlc_object_t *obj)
xcb_connection_t *conn;
const xcb_screen_t *screen;
uint16_t width, height;
uint8_t depth;
p_sys->embed = XCB_parent_Create (vd, &conn, &screen,
&depth, &width, &height);
p_sys->embed = XCB_parent_Create (vd, &conn, &screen, &width, &height);
if (p_sys->embed == NULL)
{
free (p_sys);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment