]> git.sesse.net Git - vlc/blobdiff - modules/video_output/xcb/x11.c
XCB: flush when changing the cursor
[vlc] / modules / video_output / xcb / x11.c
index 5d330eb806a2f0dea0a120c0b8af55c9f7628ddd..13758ea2edbe3bc090de7311447d8ab8c49dc3a2 100644 (file)
 
 #include "xcb_vlc.h"
 
-#define DISPLAY_TEXT N_("X11 display")
-#define DISPLAY_LONGTEXT N_( \
-    "X11 hardware display to use. By default VLC will " \
-    "use the value of the DISPLAY environment variable.")
-
-#define SHM_TEXT N_("Use shared memory")
-#define SHM_LONGTEXT N_( \
-    "Use shared memory to communicate between VLC and the X server.")
-
 static int  Open (vlc_object_t *);
 static void Close (vlc_object_t *);
 
@@ -57,135 +48,96 @@ vlc_module_begin ()
     set_description (N_("X11 video output (XCB)"))
     set_category (CAT_VIDEO)
     set_subcategory (SUBCAT_VIDEO_VOUT)
-    set_capability ("vout display", 75)
+    set_capability ("vout display", 100)
     set_callbacks (Open, Close)
+    add_shortcut ("xcb-x11", "x11", "xid")
 
-    add_string ("x11-display", NULL, NULL,
-                DISPLAY_TEXT, DISPLAY_LONGTEXT, true)
-    add_bool ("x11-shm", true, NULL, SHM_TEXT, SHM_LONGTEXT, true)
+    add_obsolete_bool ("x11-shm") /* obsoleted since 1.2.0 */
 vlc_module_end ()
 
-/* It must be large enough to absorb the server display jitter but it is
- * useless to used a too large value, direct rendering cannot be used with
- * xcb x11
- */
+/* This must be large enough to absorb the server display jitter.
+ * But excessively large value is useless as direct rendering cannot be used
+ * with XCB X11. */
 #define MAX_PICTURES (3)
 
 struct vout_display_sys_t
 {
     xcb_connection_t *conn;
-    vout_window_t *embed; /* VLC window (when windowed) */
+    vout_window_t *embed; /* VLC window */
 
     xcb_cursor_t cursor; /* blank cursor */
     xcb_window_t window; /* drawable X window */
     xcb_gcontext_t gc; /* context to put images */
     bool shm; /* whether to use MIT-SHM */
     bool visible; /* whether to draw */
-    uint8_t bpp; /* bits per pixel */
-    uint8_t pad; /* scanline pad */
     uint8_t depth; /* useful bits per pixel */
-    uint8_t byte_order; /* server byte order */
 
     picture_pool_t *pool; /* picture pool */
     picture_resource_t resource[MAX_PICTURES];
 };
 
-static picture_t *Get (vout_display_t *);
-static void Display (vout_display_t *, picture_t *);
+static picture_pool_t *Pool (vout_display_t *, unsigned);
+static void Display (vout_display_t *, picture_t *, subpicture_t *subpicture);
 static int Control (vout_display_t *, int, va_list);
 static void Manage (vout_display_t *);
 
 static void ResetPictures (vout_display_t *);
 
+static const xcb_depth_t *FindDepth (const xcb_screen_t *scr,
+                                     uint_fast8_t depth)
+{
+    xcb_depth_t *d = NULL;
+    for (xcb_depth_iterator_t it = xcb_screen_allowed_depths_iterator (scr);
+         it.rem > 0 && d == NULL;
+         xcb_depth_next (&it))
+    {
+        if (it.data->depth == depth)
+            d = it.data;
+    }
+
+    return d;
+}
+
+
 /**
  * Probe the X server.
  */
 static int Open (vlc_object_t *obj)
 {
     vout_display_t *vd = (vout_display_t *)obj;
-    vout_display_sys_t *p_sys = malloc (sizeof (*p_sys));
-    if (p_sys == NULL)
+    vout_display_sys_t *sys = malloc (sizeof (*sys));
+    if (unlikely(sys == NULL))
         return VLC_ENOMEM;
 
-    vd->sys = p_sys;
-    p_sys->pool = NULL;
-
-    /* Connect to X */
-    p_sys->conn = Connect (obj);
-    if (p_sys->conn == NULL)
-    {
-        free (p_sys);
-        return VLC_EGENERIC;
-    }
+    vd->sys = sys;
+    sys->pool = NULL;
 
-    /* Get window */
+    /* Get window, connect to X server */
+    xcb_connection_t *conn;
     const xcb_screen_t *scr;
-    p_sys->embed = GetWindow (vd, p_sys->conn, &scr, &p_sys->depth,
-                              &p_sys->shm);
-    if (p_sys->embed == NULL)
+    sys->embed = GetWindow (vd, &conn, &scr, &(uint8_t){ 0 });
+    if (sys->embed == NULL)
     {
-        xcb_disconnect (p_sys->conn);
-        free (p_sys);
+        free (sys);
         return VLC_EGENERIC;
     }
+    sys->conn = conn;
 
-    const xcb_setup_t *setup = xcb_get_setup (p_sys->conn);
-    p_sys->byte_order = setup->image_byte_order;
-
-    /* */
-    video_format_t fmt_pic = vd->fmt;
-
-    /* Check that the selected screen supports this depth */
-    xcb_depth_t *d = NULL;
-    for (xcb_depth_iterator_t it = xcb_screen_allowed_depths_iterator (scr);
-         it.rem > 0 && d == NULL;
-         xcb_depth_next (&it))
-        if (it.data->depth == p_sys->depth)
-            d = it.data;
-    if (d == NULL)
-    {
-        msg_Err (obj, "unexpected color depth msimatch");
-        goto error; /* WTH? depth not supported on screen */
-    }
-
-    /* Find a visual type for the selected depth */
-    xcb_visualid_t vid = 0;
-    bool gray = true;
-    const xcb_visualtype_t *vt = xcb_depth_visuals (d);
-    for (int i = xcb_depth_visuals_length (d); i > 0; i--)
-    {
-        if (vt->_class == XCB_VISUAL_CLASS_TRUE_COLOR)
-        {
-            vid = vt->visual_id;
-            fmt_pic.i_rmask = vt->red_mask;
-            fmt_pic.i_gmask = vt->green_mask;
-            fmt_pic.i_bmask = vt->blue_mask;
-            gray = false;
-            break;
-        }
-        if (p_sys->depth == 8 && vt->_class == XCB_VISUAL_CLASS_STATIC_GRAY
-         && vid == 0)
-        {
-            vid = vt->visual_id;
-        }
-    }
-
-    if (!vid)
-    {
-        msg_Err (obj, "unexpected visual type mismatch");
-        goto error;
-    }
-    msg_Dbg (vd, "using X11 visual ID 0x%"PRIx32" (depth: %"PRIu8")", vid,
-             p_sys->depth);
+    const xcb_setup_t *setup = xcb_get_setup (conn);
 
     /* Determine our pixel format */
-    p_sys->bpp = 0;
+    xcb_visualid_t vid;
+    sys->depth = 0;
+
     for (const xcb_format_t *fmt = xcb_setup_pixmap_formats (setup),
              *end = fmt + xcb_setup_pixmap_formats_length (setup);
-         fmt < end && !p_sys->bpp; fmt++)
+         fmt < end;
+         fmt++)
     {
-        if (fmt->depth != p_sys->depth)
-            continue; /* Wrong depth! */
+        if (fmt->depth <= sys->depth)
+            continue; /* no better than earlier format */
+
+        video_format_t fmt_pic = vd->fmt;
 
         /* Check that the pixmap format is supported by VLC. */
         switch (fmt->depth)
@@ -193,8 +145,13 @@ static int Open (vlc_object_t *obj)
           case 32:
             if (fmt->bits_per_pixel != 32)
                 continue;
+#ifdef FIXED_VLC_RGBA_MASK
             fmt_pic.i_chroma = VLC_CODEC_RGBA;
             break;
+#else
+            msg_Dbg (vd, "X11 visual with alpha-channel not supported");
+            continue;
+#endif
           case 24:
             if (fmt->bits_per_pixel == 32)
                 fmt_pic.i_chroma = VLC_CODEC_RGB32;
@@ -216,37 +173,76 @@ static int Open (vlc_object_t *obj)
           case 8:
             if (fmt->bits_per_pixel != 8)
                 continue;
-            fmt_pic.i_chroma = gray ? VLC_CODEC_GREY : VLC_CODEC_RGB8;
+            fmt_pic.i_chroma = VLC_CODEC_RGB8;
             break;
           default:
             continue;
         }
-        if ((fmt->bits_per_pixel << 4) % fmt->scanline_pad)
-            continue; /* VLC pads lines to 16 pixels internally */
 
         /* Byte sex is a non-issue for 8-bits. It can be worked around with
          * RGB masks for 24-bits. Too bad for 15-bits and 16-bits. */
         if (fmt->bits_per_pixel == 16 && setup->image_byte_order != ORDER)
             continue;
 
-        p_sys->bpp = fmt->bits_per_pixel;
-        p_sys->pad = fmt->scanline_pad;
-        msg_Dbg (vd, " %"PRIu8" bits per pixels, %"PRIu8" bits line pad",
-                 p_sys->bpp, p_sys->pad);
-    }
+        /* Make sure the X server is sane */
+        assert (fmt->bits_per_pixel > 0);
+        if (unlikely(fmt->scanline_pad % fmt->bits_per_pixel))
+            continue;
 
-    if (!p_sys->bpp)
-    {
-        msg_Err (vd, "no supported pixmap formats");
-        goto error;
+        /* Check that the selected screen supports this depth */
+        const xcb_depth_t *d = FindDepth (scr, fmt->depth);
+        if (d == NULL)
+            continue;
+
+        /* Find a visual type for the selected depth */
+        const xcb_visualtype_t *vt = xcb_depth_visuals (d);
+
+        /* First try True Color class */
+        for (int i = xcb_depth_visuals_length (d); i > 0; i--)
+        {
+            if (vt->_class == XCB_VISUAL_CLASS_TRUE_COLOR)
+            {
+                fmt_pic.i_rmask = vt->red_mask;
+                fmt_pic.i_gmask = vt->green_mask;
+                fmt_pic.i_bmask = vt->blue_mask;
+            found_visual:
+                vd->fmt = fmt_pic;
+                vid = vt->visual_id;
+                msg_Dbg (vd, "using X11 visual ID 0x%"PRIx32, vid);
+                sys->depth = fmt->depth;
+                msg_Dbg (vd, " %"PRIu8" bits depth", sys->depth);
+                msg_Dbg (vd, " %"PRIu8" bits per pixel", fmt->bits_per_pixel);
+                msg_Dbg (vd, " %"PRIu8" bits line pad", fmt->scanline_pad);
+                goto found_format;
+            }
+            vt++;
+        }
+
+        /* Then try Static Gray class */
+        if (fmt->depth != 8)
+            continue;
+        vt = xcb_depth_visuals (d);
+        for (int i = xcb_depth_visuals_length (d); i > 0 && !vid; i--)
+        {
+            if (vt->_class == XCB_VISUAL_CLASS_STATIC_GRAY)
+            {
+                fmt_pic.i_chroma = VLC_CODEC_GREY;
+                goto found_visual;
+            }
+            vt++;
+        }
     }
 
+    msg_Err (obj, "no supported pixel format & visual");
+    goto error;
+
+found_format:;
     /* Create colormap (needed to select non-default visual) */
     xcb_colormap_t cmap;
     if (vid != scr->root_visual)
     {
-        cmap = xcb_generate_id (p_sys->conn);
-        xcb_create_colormap (p_sys->conn, XCB_COLORMAP_ALLOC_NONE,
+        cmap = xcb_generate_id (conn);
+        xcb_create_colormap (conn, XCB_COLORMAP_ALLOC_NONE,
                              cmap, scr->root, vid);
     }
     else
@@ -254,14 +250,29 @@ static int Open (vlc_object_t *obj)
 
     /* Create window */
     unsigned width, height;
-    if (GetWindowSize (p_sys->embed, p_sys->conn, &width, &height))
+    if (GetWindowSize (sys->embed, conn, &width, &height))
         goto error;
 
-    p_sys->window = xcb_generate_id (p_sys->conn);
-    p_sys->gc = xcb_generate_id (p_sys->conn);
+    sys->window = xcb_generate_id (conn);
+    sys->gc = xcb_generate_id (conn);
+    xcb_pixmap_t pixmap = xcb_generate_id (conn);
     {
-        const uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_COLORMAP;
+        const uint32_t mask =
+            XCB_CW_BACK_PIXMAP |
+            XCB_CW_BACK_PIXEL |
+            XCB_CW_BORDER_PIXMAP |
+            XCB_CW_BORDER_PIXEL |
+            XCB_CW_EVENT_MASK |
+            XCB_CW_COLORMAP;
         const uint32_t values[] = {
+            /* XCB_CW_BACK_PIXMAP */
+            pixmap,
+            /* XCB_CW_BACK_PIXEL */
+            scr->black_pixel,
+            /* XCB_CW_BORDER_PIXMAP */
+            pixmap,
+            /* XCB_CW_BORDER_PIXEL */
+            scr->black_pixel,
             /* XCB_CW_EVENT_MASK */
             XCB_EVENT_MASK_VISIBILITY_CHANGE,
             /* XCB_CW_COLORMAP */
@@ -269,42 +280,43 @@ static int Open (vlc_object_t *obj)
         };
         xcb_void_cookie_t c;
 
-        c = xcb_create_window_checked (p_sys->conn, p_sys->depth,
-                                       p_sys->window,
-                                       p_sys->embed->xid, 0, 0,
+        xcb_create_pixmap (conn, sys->depth, pixmap, scr->root, 1, 1);
+        c = xcb_create_window_checked (conn, sys->depth, sys->window,
+                                       sys->embed->handle.xid, 0, 0,
                                        width, height, 0,
                                        XCB_WINDOW_CLASS_INPUT_OUTPUT,
                                        vid, mask, values);
-        xcb_map_window (p_sys->conn, p_sys->window);
+        xcb_map_window (conn, sys->window);
         /* Create graphic context (I wonder why the heck do we need this) */
-        xcb_create_gc (p_sys->conn, p_sys->gc, p_sys->window, 0, NULL);
+        xcb_create_gc (conn, sys->gc, sys->window, 0, NULL);
 
-        if (CheckError (vd, p_sys->conn, "cannot create X11 window", c))
+        if (CheckError (vd, conn, "cannot create X11 window", c))
             goto error;
     }
-    msg_Dbg (vd, "using X11 window %08"PRIx32, p_sys->window);
-    msg_Dbg (vd, "using X11 graphic context %08"PRIx32, p_sys->gc);
-    p_sys->cursor = CreateBlankCursor (p_sys->conn, scr);
+    msg_Dbg (vd, "using X11 window %08"PRIx32, sys->window);
+    msg_Dbg (vd, "using X11 graphic context %08"PRIx32, sys->gc);
 
-    p_sys->visible = false;
+    sys->cursor = CreateBlankCursor (conn, scr);
+    sys->visible = false;
+    sys->shm = CheckSHM (obj, conn);
 
-    /* */
-    vout_display_info_t info = vd->info;
-    info.has_pictures_invalid = true;
 
     /* Setup vout_display_t once everything is fine */
-    vd->fmt = fmt_pic;
-    vd->info = info;
+    vd->info.has_pictures_invalid = true;
+    vd->info.has_event_thread = true;
 
-    vd->get = Get;
+    vd->pool = Pool;
     vd->prepare = NULL;
     vd->display = Display;
     vd->control = Control;
     vd->manage = Manage;
 
     /* */
-    vout_display_SendEventFullscreen (vd, false);
-    vout_display_SendEventDisplaySize (vd, width, height, false);
+    bool is_fullscreen = vd->cfg->is_fullscreen;
+    if (is_fullscreen && vout_window_SetFullScreen (sys->embed, true))
+        is_fullscreen = false;
+    vout_display_SendEventFullscreen (vd, is_fullscreen);
+    vout_display_SendEventDisplaySize (vd, width, height, is_fullscreen);
 
     return VLC_SUCCESS;
 
@@ -320,109 +332,110 @@ error:
 static void Close (vlc_object_t *obj)
 {
     vout_display_t *vd = (vout_display_t *)obj;
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
 
     ResetPictures (vd);
-    vout_display_DeleteWindow (vd, p_sys->embed);
+
+    /* show the default cursor */
+    xcb_change_window_attributes (sys->conn, sys->embed->handle.xid, XCB_CW_CURSOR,
+                                  &(uint32_t) { XCB_CURSOR_NONE });
+    xcb_flush (sys->conn);
+
     /* colormap, window and context are garbage-collected by X */
-    xcb_disconnect (p_sys->conn);
-    free (p_sys);
+    xcb_disconnect (sys->conn);
+    vout_display_DeleteWindow (vd, sys->embed);
+    free (sys);
 }
 
 /**
  * Return a direct buffer
  */
-static picture_t *Get (vout_display_t *vd)
+static picture_pool_t *Pool (vout_display_t *vd, unsigned requested_count)
 {
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
+    (void)requested_count;
 
-    if (!p_sys->pool)
-    {
-        vout_display_place_t place;
+    if (sys->pool)
+        return sys->pool;
 
-        vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
-
-        /* */
-        const uint32_t values[] = { place.x, place.y, place.width, place.height };
-        xcb_configure_window (p_sys->conn, p_sys->window,
-                              XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
-                              XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
-                              values);
+    vout_display_place_t place;
 
-        picture_t *pic = picture_NewFromFormat (&vd->fmt);
-        if (!pic)
-            return NULL;
+    vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
 
-        assert (pic->i_planes == 1);
-        memset (p_sys->resource, 0, sizeof(p_sys->resource));
-
-        unsigned count;
-        picture_t *pic_array[MAX_PICTURES];
-        for (count = 0; count < MAX_PICTURES; count++)
-        {
-            picture_resource_t *res = &p_sys->resource[count];
-
-            res->p->i_lines = pic->p->i_lines;
-            res->p->i_pitch = pic->p->i_pitch;
-            if (PictureResourceAlloc (vd, res, res->p->i_pitch * res->p->i_lines,
-                                      p_sys->conn, p_sys->shm))
-                break;
-            pic_array[count] = picture_NewFromResource (&vd->fmt, res);
-            if (!pic_array[count])
-            {
-                PictureResourceFree (res, p_sys->conn);
-                memset (res, 0, sizeof(*res));
-                break;
-            }
-        }
-        picture_Release (pic);
-
-        if (count == 0)
-            return NULL;
+    /* */
+    const uint32_t values[] = { place.x, place.y, place.width, place.height };
+    xcb_configure_window (sys->conn, sys->window,
+                          XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
+                          XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
+                          values);
+
+    picture_t *pic = picture_NewFromFormat (&vd->fmt);
+    if (!pic)
+        return NULL;
+
+    assert (pic->i_planes == 1);
+    memset (sys->resource, 0, sizeof(sys->resource));
+
+    unsigned count;
+    picture_t *pic_array[MAX_PICTURES];
+    for (count = 0; count < MAX_PICTURES; count++)
+    {
+        picture_resource_t *res = &sys->resource[count];
 
-        p_sys->pool = picture_pool_New (count, pic_array);
-        if (!p_sys->pool)
+        res->p->i_lines = pic->p->i_lines;
+        res->p->i_pitch = pic->p->i_pitch;
+        if (PictureResourceAlloc (vd, res, res->p->i_pitch * res->p->i_lines,
+                                  sys->conn, sys->shm))
+            break;
+        pic_array[count] = picture_NewFromResource (&vd->fmt, res);
+        if (!pic_array[count])
         {
-            /* TODO release picture resources */
-            return NULL;
+            PictureResourceFree (res, sys->conn);
+            memset (res, 0, sizeof(*res));
+            break;
         }
-        /* FIXME should also do it in case of error ? */
-        xcb_flush (p_sys->conn);
     }
+    picture_Release (pic);
+
+    if (count == 0)
+        return NULL;
 
-    return picture_pool_Get (p_sys->pool);
+    sys->pool = picture_pool_New (count, pic_array);
+    /* TODO release picture resources if NULL */
+    xcb_flush (sys->conn);
+    return sys->pool;
 }
 
 /**
  * Sends an image to the X server.
  */
-static void Display (vout_display_t *vd, picture_t *pic)
+static void Display (vout_display_t *vd, picture_t *pic, subpicture_t *subpicture)
 {
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
     xcb_shm_seg_t segment = pic->p_sys->segment;
     xcb_void_cookie_t ck;
 
-    if (!p_sys->visible)
+    if (!sys->visible)
         goto out;
     if (segment != 0)
-        ck = xcb_shm_put_image_checked (p_sys->conn, p_sys->window, p_sys->gc,
+        ck = xcb_shm_put_image_checked (sys->conn, sys->window, sys->gc,
           /* real width */ pic->p->i_pitch / pic->p->i_pixel_pitch,
          /* real height */ pic->p->i_lines,
                    /* x */ vd->fmt.i_x_offset,
                    /* y */ vd->fmt.i_y_offset,
                /* width */ vd->fmt.i_visible_width,
               /* height */ vd->fmt.i_visible_height,
-                           0, 0, p_sys->depth, XCB_IMAGE_FORMAT_Z_PIXMAP,
+                           0, 0, sys->depth, XCB_IMAGE_FORMAT_Z_PIXMAP,
                            0, segment, 0);
     else
     {
         const size_t offset = vd->fmt.i_y_offset * pic->p->i_pitch;
         const unsigned lines = pic->p->i_lines - vd->fmt.i_y_offset;
 
-        ck = xcb_put_image_checked (p_sys->conn, XCB_IMAGE_FORMAT_Z_PIXMAP,
-                       p_sys->window, p_sys->gc,
+        ck = xcb_put_image_checked (sys->conn, XCB_IMAGE_FORMAT_Z_PIXMAP,
+                       sys->window, sys->gc,
                        pic->p->i_pitch / pic->p->i_pixel_pitch,
-                       lines, -vd->fmt.i_x_offset, 0, 0, p_sys->depth,
+                       lines, -vd->fmt.i_x_offset, 0, 0, sys->depth,
                        pic->p->i_pitch * lines, pic->p->p_pixels + offset);
     }
 
@@ -430,7 +443,7 @@ static void Display (vout_display_t *vd, picture_t *pic)
      * display the picture. xcb_flush() is *not* sufficient: especially with
      * shared memory the PUT requests are so short that many of them can fit in
      * X11 socket output buffer before the kernel preempts VLC. */
-    xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
+    xcb_generic_error_t *e = xcb_request_check (sys->conn, ck);
     if (e != NULL)
     {
         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
@@ -442,18 +455,19 @@ static void Display (vout_display_t *vd, picture_t *pic)
      * vout_display wrapper. */
 out:
     picture_Release (pic);
+    (void)subpicture;
 }
 
 static int Control (vout_display_t *vd, int query, va_list ap)
 {
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
 
     switch (query)
     {
     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
     {
         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
-        return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
+        return vout_window_SetFullScreen (sys->embed, c->is_fullscreen);
     }
 
     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
@@ -463,7 +477,7 @@ static int Control (vout_display_t *vd, int query, va_list ap)
         const bool is_forced = (bool)va_arg (ap, int);
 
         if (is_forced
-         && vout_window_SetSize (p_sys->embed,
+         && vout_window_SetSize (sys->embed,
                                  p_cfg->display.width,
                                  p_cfg->display.height))
             return VLC_EGENERIC;
@@ -480,15 +494,15 @@ static int Control (vout_display_t *vd, int query, va_list ap)
 
         /* Move the picture within the window */
         const uint32_t values[] = { place.x, place.y };
-        xcb_configure_window (p_sys->conn, p_sys->window,
+        xcb_configure_window (sys->conn, sys->window,
                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y,
                               values);
         return VLC_SUCCESS;
     }
-    case VOUT_DISPLAY_CHANGE_ON_TOP:
+    case VOUT_DISPLAY_CHANGE_WINDOW_STATE:
     {
-        int b_on_top = (int)va_arg (ap, int);
-        return vout_window_SetOnTop (p_sys->embed, b_on_top);
+        unsigned state = va_arg (ap, unsigned);
+        return vout_window_SetState (sys->embed, state);
     }
 
     case VOUT_DISPLAY_CHANGE_ZOOM:
@@ -519,8 +533,9 @@ static int Control (vout_display_t *vd, int query, va_list ap)
     /* Hide the mouse. It will be send when
      * vout_display_t::info.b_hide_mouse is false */
     case VOUT_DISPLAY_HIDE_MOUSE:
-        xcb_change_window_attributes (p_sys->conn, p_sys->embed->xid,
-                                  XCB_CW_CURSOR, &(uint32_t){ p_sys->cursor });
+        xcb_change_window_attributes (sys->conn, sys->embed->handle.xid,
+                                  XCB_CW_CURSOR, &(uint32_t){ sys->cursor });
+        xcb_flush (sys->conn);
         return VLC_SUCCESS;
 
     default:
@@ -531,26 +546,26 @@ static int Control (vout_display_t *vd, int query, va_list ap)
 
 static void Manage (vout_display_t *vd)
 {
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
 
-    ManageEvent (vd, p_sys->conn, &p_sys->visible);
+    ManageEvent (vd, sys->conn, &sys->visible);
 }
 
 static void ResetPictures (vout_display_t *vd)
 {
-    vout_display_sys_t *p_sys = vd->sys;
+    vout_display_sys_t *sys = vd->sys;
 
-    if (!p_sys->pool)
+    if (!sys->pool)
         return;
 
     for (unsigned i = 0; i < MAX_PICTURES; i++)
     {
-        picture_resource_t *res = &p_sys->resource[i];
+        picture_resource_t *res = &sys->resource[i];
 
         if (!res->p->p_pixels)
             break;
-        PictureResourceFree (res, p_sys->conn);
+        PictureResourceFree (res, sys->conn);
     }
-    picture_pool_Delete (p_sys->pool);
-    p_sys->pool = NULL;
+    picture_pool_Delete (sys->pool);
+    sys->pool = NULL;
 }