]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xvideo.c
xcb-xv: no need to keep adaptor infos around
[vlc] / modules / video_output / xcb / xvideo.c
1 /**
2  * @file xvideo.c
3  * @brief X C Bindings video output module for VLC media player
4  */
5 /*****************************************************************************
6  * Copyright © 2009 Rémi Denis-Courmont
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2.0
11  * of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  ****************************************************************************/
22
23 #ifdef HAVE_CONFIG_H
24 # include <config.h>
25 #endif
26
27 #include <stdlib.h>
28 #include <assert.h>
29
30 #include <xcb/xcb.h>
31 #include <xcb/shm.h>
32 #include <xcb/xv.h>
33
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_vout_display.h>
37 #include <vlc_picture_pool.h>
38
39 #include "xcb_vlc.h"
40
41 #define DISPLAY_TEXT N_("X11 display")
42 #define DISPLAY_LONGTEXT N_( \
43     "X11 hardware display to use. By default, VLC will " \
44     "use the value of the DISPLAY environment variable.")
45
46 #define ADAPTOR_TEXT N_("XVideo adaptor number")
47 #define ADAPTOR_LONGTEXT N_( \
48     "XVideo hardware adaptor to use. By default, VLC will " \
49     "use the first functional adaptor.")
50
51 #define SHM_TEXT N_("Use shared memory")
52 #define SHM_LONGTEXT N_( \
53     "Use shared memory to communicate between VLC and the X server.")
54
55 static int  Open (vlc_object_t *);
56 static void Close (vlc_object_t *);
57
58 /*
59  * Module descriptor
60  */
61 vlc_module_begin ()
62     set_shortname (N_("XVideo"))
63     set_description (N_("XVideo output (XCB)"))
64     set_category (CAT_VIDEO)
65     set_subcategory (SUBCAT_VIDEO_VOUT)
66     set_capability ("vout display", 155)
67     set_callbacks (Open, Close)
68
69     add_string ("x11-display", NULL, NULL,
70                 DISPLAY_TEXT, DISPLAY_LONGTEXT, true)
71         add_deprecated_alias ("xvideo-display")
72     add_integer ("xvideo-adaptor", -1, NULL,
73                  ADAPTOR_TEXT, ADAPTOR_LONGTEXT, true)
74     add_bool ("x11-shm", true, NULL, SHM_TEXT, SHM_LONGTEXT, true)
75         add_deprecated_alias ("xvideo-shm")
76     add_shortcut ("xcb-xv")
77     add_shortcut ("xv")
78     add_shortcut ("xvideo")
79 vlc_module_end ()
80
81 #define MAX_PICTURES (VOUT_MAX_PICTURES)
82
83 struct vout_display_sys_t
84 {
85     xcb_connection_t *conn;
86     vout_window_t *embed;/* VLC window */
87
88     xcb_window_t window; /* drawable X window */
89     xcb_gcontext_t gc;   /* context to put images */
90     xcb_xv_port_t port;  /* XVideo port */
91     uint32_t id;         /* XVideo format */
92     uint16_t width;      /* display width */
93     uint16_t height;     /* display height */
94     uint32_t data_size;  /* picture byte size (for non-SHM) */
95     bool shm;            /* whether to use MIT-SHM */
96
97     xcb_xv_query_image_attributes_reply_t *att;
98     picture_pool_t *pool; /* picture pool */
99     picture_resource_t resource[MAX_PICTURES];
100 };
101
102 static picture_t *Get (vout_display_t *);
103 static void Display (vout_display_t *, picture_t *);
104 static int Control (vout_display_t *, int, va_list);
105 static void Manage (vout_display_t *);
106
107 /**
108  * Check that the X server supports the XVideo extension.
109  */
110 static bool CheckXVideo (vout_display_t *vd, xcb_connection_t *conn)
111 {
112     xcb_xv_query_extension_reply_t *r;
113     xcb_xv_query_extension_cookie_t ck = xcb_xv_query_extension (conn);
114     bool ok = false;
115
116     r = xcb_xv_query_extension_reply (conn, ck, NULL);
117     if (r != NULL)
118     {   /* We need XVideo 2.2 for PutImage */
119         if ((r->major > 2) || (r->major == 2 && r->minor >= 2))
120         {
121             msg_Dbg (vd, "using XVideo extension v%"PRIu8".%"PRIu8,
122                      r->major, r->minor);
123             ok = true;
124         }
125         else
126             msg_Dbg (vd, "XVideo extension too old (v%"PRIu8".%"PRIu8,
127                      r->major, r->minor);
128         free (r);
129     }
130     else
131         msg_Dbg (vd, "XVideo extension not available");
132     return ok;
133 }
134
135 static vlc_fourcc_t ParseFormat (vout_display_t *vd,
136                                  const xcb_xv_image_format_info_t *restrict f)
137 {
138     if (f->byte_order != ORDER && f->bpp != 8)
139         return 0; /* Argh! */
140
141     switch (f->type)
142     {
143       case XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB:
144         switch (f->num_planes)
145         {
146           case 1:
147             switch (f->bpp)
148             {
149               case 32:
150                 if (f->depth == 24)
151                     return VLC_CODEC_RGB32;
152                 break;
153               case 24:
154                 if (f->depth == 24)
155                     return VLC_CODEC_RGB24;
156                 break;
157               case 16:
158                 if (f->depth == 16)
159                     return VLC_CODEC_RGB16;
160                 if (f->depth == 15)
161                     return VLC_CODEC_RGB15;
162                 break;
163               case 8:
164                 if (f->depth == 8)
165                     return VLC_CODEC_RGB8;
166                 break;
167             }
168             break;
169         }
170         msg_Err (vd, "unknown XVideo RGB format %"PRIx32" (%.4s)",
171                  f->id, f->guid);
172         msg_Dbg (vd, " %"PRIu8" planes, %"PRIu8" bits/pixel, "
173                  "depth %"PRIu8, f->num_planes, f->bpp, f->depth);
174         break;
175
176       case XCB_XV_IMAGE_FORMAT_INFO_TYPE_YUV:
177         if (f->u_sample_bits != f->v_sample_bits
178          || f->vhorz_u_period != f->vhorz_v_period
179          || f->vvert_u_period != f->vvert_v_period
180          || f->y_sample_bits != 8 || f->u_sample_bits != 8
181          || f->vhorz_y_period != 1 || f->vvert_y_period != 1)
182             goto bad;
183         switch (f->num_planes)
184         {
185           case 1:
186             switch (f->bpp)
187             {
188               /*untested: case 24:
189                 if (f->vhorz_u_period == 1 && f->vvert_u_period == 1)
190                     return VLC_CODEC_I444;
191                 break;*/
192               case 16:
193                 if (f->vhorz_u_period == 2 && f->vvert_u_period == 1)
194                 {
195                     if (!strcmp ((const char *)f->vcomp_order, "YUYV"))
196                         return VLC_CODEC_YUYV;
197                     if (!strcmp ((const char *)f->vcomp_order, "UYVY"))
198                         return VLC_CODEC_UYVY;
199                 }
200                 break;
201             }
202             break;
203           case 3:
204             switch (f->bpp)
205             {
206               case 12:
207                 if (f->vhorz_u_period == 2 && f->vvert_u_period == 2)
208                 {
209                     if (!strcmp ((const char *)f->vcomp_order, "YVU"))
210                         return VLC_CODEC_YV12;
211                     if (!strcmp ((const char *)f->vcomp_order, "YUV"))
212                         return VLC_CODEC_I420;
213                 }
214             }
215             break;
216         }
217     bad:
218         msg_Err (vd, "unknown XVideo YUV format %"PRIx32" (%.4s)", f->id,
219                  f->guid);
220         msg_Dbg (vd, " %"PRIu8" planes, %"PRIu32" bits/pixel, "
221                  "%"PRIu32"/%"PRIu32"/%"PRIu32" bits/sample", f->num_planes,
222                  f->bpp, f->y_sample_bits, f->u_sample_bits, f->v_sample_bits);
223         msg_Dbg (vd, " period: %"PRIu32"/%"PRIu32"/%"PRIu32"x"
224                  "%"PRIu32"/%"PRIu32"/%"PRIu32,
225                  f->vhorz_y_period, f->vhorz_u_period, f->vhorz_v_period,
226                  f->vvert_y_period, f->vvert_u_period, f->vvert_v_period);
227         msg_Warn (vd, " order: %.32s", f->vcomp_order);
228         break;
229     }
230     return 0;
231 }
232
233
234 static const xcb_xv_image_format_info_t *
235 FindFormat (vout_display_t *vd,
236             vlc_fourcc_t chroma, const video_format_t *fmt,
237             xcb_xv_port_t port,
238             const xcb_xv_list_image_formats_reply_t *list,
239             xcb_xv_query_image_attributes_reply_t **restrict pa)
240 {
241     xcb_connection_t *conn = vd->sys->conn;
242     const xcb_xv_image_format_info_t *f, *end;
243
244 #ifndef XCB_XV_OLD
245     f = xcb_xv_list_image_formats_format (list);
246 #else
247     f = (xcb_xv_image_format_info_t *) (list + 1);
248 #endif
249     end = f + xcb_xv_list_image_formats_format_length (list);
250     for (; f < end; f++)
251     {
252         if (chroma != ParseFormat (vd, f))
253             continue;
254
255         xcb_xv_query_image_attributes_reply_t *i;
256         i = xcb_xv_query_image_attributes_reply (conn,
257             xcb_xv_query_image_attributes (conn, port, f->id,
258                 fmt->i_width, fmt->i_height), NULL);
259         if (i == NULL)
260             continue;
261
262         if (i->width != fmt->i_width
263          || i->height != fmt->i_height)
264         {
265             msg_Warn (vd, "incompatible size %ux%u -> %"PRIu32"x%"PRIu32,
266                       fmt->i_width, fmt->i_height,
267                       i->width, i->height);
268             free (i);
269             continue;
270         }
271         *pa = i;
272         return f;
273     }
274     return NULL;
275 }
276
277
278 /**
279  * Probe the X server.
280  */
281 static int Open (vlc_object_t *obj)
282 {
283     vout_display_t *vd = (vout_display_t *)obj;
284     vout_display_sys_t *p_sys = malloc (sizeof (*p_sys));
285     if (p_sys == NULL)
286         return VLC_ENOMEM;
287
288     vd->sys = p_sys;
289
290     /* Connect to X */
291     xcb_connection_t *conn = Connect (obj);
292     if (conn == NULL)
293     {
294         free (p_sys);
295         return VLC_EGENERIC;
296     }
297     p_sys->conn = conn;
298
299     if (!CheckXVideo (vd, conn))
300     {
301         msg_Warn (vd, "Please enable XVideo 2.2 for faster video display");
302         xcb_disconnect (conn);
303         free (p_sys);
304         return VLC_EGENERIC;
305     }
306
307     const xcb_screen_t *screen;
308     p_sys->embed = GetWindow (vd, conn, &screen, &p_sys->shm);
309     if (p_sys->embed == NULL)
310     {
311         xcb_disconnect (conn);
312         free (p_sys);
313         return VLC_EGENERIC;
314     }
315
316     /* */
317     p_sys->att = NULL;
318     p_sys->pool = NULL;
319
320     /* Cache adaptors infos */
321     xcb_xv_query_adaptors_reply_t *adaptors =
322         xcb_xv_query_adaptors_reply (conn,
323             xcb_xv_query_adaptors (conn, p_sys->embed->handle.xid), NULL);
324     if (adaptors == NULL)
325         goto error;
326
327     int forced_adaptor = var_CreateGetInteger (obj, "xvideo-adaptor");
328
329     /* */
330     video_format_t fmt = vd->fmt;
331     bool found_adaptor = false;
332
333     /* FIXME: check max image size */
334     xcb_xv_adaptor_info_iterator_t it;
335     for (it = xcb_xv_query_adaptors_info_iterator (adaptors);
336          it.rem > 0;
337          xcb_xv_adaptor_info_next (&it))
338     {
339         const xcb_xv_adaptor_info_t *a = it.data;
340
341         if (forced_adaptor != -1 && forced_adaptor != 0)
342         {
343             forced_adaptor--;
344             continue;
345         }
346
347         /* FIXME: Open() should fail if none of the ports are usable to VLC */
348         if (!(a->type & XCB_XV_TYPE_IMAGE_MASK))
349             continue;
350
351         xcb_xv_list_image_formats_reply_t *r =
352             xcb_xv_list_image_formats_reply (conn,
353                 xcb_xv_list_image_formats (conn, a->base_id), NULL);
354         if (r == NULL)
355             continue;
356
357         const xcb_xv_image_format_info_t *xfmt;
358
359         /* */
360         const vlc_fourcc_t *chromas, chromas_default[] = {
361             fmt.i_chroma,
362             VLC_CODEC_RGB24,
363             VLC_CODEC_RGB15,
364             VLC_CODEC_YUYV,
365             0
366         };
367         if (vlc_fourcc_IsYUV (fmt.i_chroma))
368             chromas = vlc_fourcc_GetYUVFallback (fmt.i_chroma);
369         else
370             chromas = chromas_default;
371
372         for (size_t i = 0; chromas[i]; i++)
373         {
374             vlc_fourcc_t chroma = chromas[i];
375             xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
376             if (xfmt != NULL)
377             {
378                 fmt.i_chroma = chroma;
379                 goto found_format;
380             }
381         }
382         free (r);
383         continue;
384
385     found_format:
386         /* Grab a port */
387         /* XXX: assume all of an adapter's ports have the same formats */
388         for (unsigned i = 0; i < a->num_ports; i++)
389         {
390              xcb_xv_port_t port = a->base_id + i;
391              xcb_xv_grab_port_reply_t *gr =
392                  xcb_xv_grab_port_reply (conn,
393                      xcb_xv_grab_port (conn, port, XCB_CURRENT_TIME), NULL);
394              uint8_t result = gr ? gr->result : 0xff;
395
396              free (gr);
397              if (result == 0)
398              {
399                  p_sys->port = port;
400                  goto grabbed_port;
401              }
402              msg_Dbg (vd, "cannot grab port %"PRIu32, port);
403         }
404         continue;
405
406     grabbed_port:
407         msg_Dbg (vd, "using port %"PRIu32, p_sys->port);
408
409         p_sys->id = xfmt->id;
410         msg_Dbg (vd, "using image format 0x%"PRIx32, p_sys->id);
411         if (xfmt->type == XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB)
412         {
413             fmt.i_rmask = xfmt->red_mask;
414             fmt.i_gmask = xfmt->green_mask;
415             fmt.i_bmask = xfmt->blue_mask;
416         }
417         else
418         if (xfmt->num_planes == 3
419          && !strcmp ((const char *)xfmt->vcomp_order, "YVU"))
420             fmt.i_chroma = VLC_CODEC_YV12;
421         free (r);
422         found_adaptor = true;
423         break;
424     }
425     free (adaptors);
426     if (!found_adaptor)
427     {
428         msg_Err (vd, "no available XVideo adaptor");
429         goto error;
430     }
431
432     /* Create window */
433     {
434         const uint32_t mask =
435             /* XCB_CW_EVENT_MASK */
436             XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE |
437             XCB_EVENT_MASK_POINTER_MOTION;
438         xcb_void_cookie_t c;
439         xcb_window_t window = xcb_generate_id (conn);
440
441         c = xcb_create_window_checked (conn, screen->root_depth, window,
442                                        p_sys->embed->handle.xid, 0, 0, 1, 1, 0,
443                                        XCB_WINDOW_CLASS_INPUT_OUTPUT,
444                                        screen->root_visual,
445                                        XCB_CW_EVENT_MASK, &mask);
446         if (CheckError (vd, conn, "cannot create X11 window", c))
447             goto error;
448         p_sys->window = window;
449         msg_Dbg (vd, "using X11 window %08"PRIx32, window);
450         xcb_map_window (conn, window);
451
452         vout_display_place_t place;
453
454         vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
455         p_sys->width  = place.width;
456         p_sys->height = place.height;
457
458         /* */
459         const uint32_t values[] = { place.x, place.y, place.width, place.height };
460         xcb_configure_window (conn, window,
461                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
462                               XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
463                               values);
464     }
465
466     /* Create graphic context */
467     p_sys->gc = xcb_generate_id (conn);
468     xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
469     msg_Dbg (vd, "using X11 graphic context %08"PRIx32, p_sys->gc);
470
471     /* */
472     p_sys->pool = NULL;
473
474     /* */
475     vout_display_info_t info = vd->info;
476     info.has_pictures_invalid = false;
477
478     /* Setup vout_display_t once everything is fine */
479     vd->fmt = fmt;
480     vd->info = info;
481
482     vd->get = Get;
483     vd->prepare = NULL;
484     vd->display = Display;
485     vd->control = Control;
486     vd->manage = Manage;
487
488     /* */
489     unsigned width, height;
490     if (!GetWindowSize (p_sys->embed, conn, &width, &height))
491         vout_display_SendEventDisplaySize (vd, width, height);
492     vout_display_SendEventFullscreen (vd, false);
493
494     return VLC_SUCCESS;
495
496 error:
497     Close (obj);
498     return VLC_EGENERIC;
499 }
500
501
502 /**
503  * Disconnect from the X server.
504  */
505 static void Close (vlc_object_t *obj)
506 {
507     vout_display_t *vd = (vout_display_t *)obj;
508     vout_display_sys_t *p_sys = vd->sys;
509
510     if (p_sys->pool)
511     {
512         for (unsigned i = 0; i < MAX_PICTURES; i++)
513         {
514             picture_resource_t *res = &p_sys->resource[i];
515
516             if (!res->p->p_pixels)
517                 break;
518             PictureResourceFree (res, p_sys->conn);
519         }
520         picture_pool_Delete (p_sys->pool);
521     }
522
523     free (p_sys->att);
524     vout_display_DeleteWindow (vd, p_sys->embed);
525     xcb_disconnect (p_sys->conn);
526     free (p_sys);
527 }
528
529 /**
530  * Return a direct buffer
531  */
532 static picture_t *Get (vout_display_t *vd)
533 {
534     vout_display_sys_t *p_sys = vd->sys;
535
536     if (!p_sys->pool)
537     {
538         picture_t *pic = picture_New (vd->fmt.i_chroma,
539                                       p_sys->att->width, p_sys->att->height, 0);
540         if (!pic)
541             return NULL;
542
543         memset (p_sys->resource, 0, sizeof(p_sys->resource));
544
545         const uint32_t *offsets =
546             xcb_xv_query_image_attributes_offsets (p_sys->att);
547         p_sys->data_size = p_sys->att->data_size;
548
549         unsigned count;
550         picture_t *pic_array[MAX_PICTURES];
551         for (count = 0; count < MAX_PICTURES; count++)
552         {
553             picture_resource_t *res = &p_sys->resource[count];
554
555             for (int i = 0; i < pic->i_planes; i++)
556             {
557                 res->p[i].i_lines = pic->p[i].i_lines; /* FIXME seems wrong*/
558                 res->p[i].i_pitch = pic->p[i].i_pitch;
559             }
560             if (PictureResourceAlloc (vd, res, p_sys->att->data_size,
561                                       p_sys->conn, p_sys->shm))
562                 break;
563
564             /* Allocate further planes as specified by XVideo */
565             /* We assume that offsets[0] is zero */
566             for (int i = 1; i < pic->i_planes; i++)
567                 res->p[i].p_pixels = res->p[0].p_pixels + offsets[i];
568             pic_array[count] = picture_NewFromResource (&vd->fmt, res);
569             if (!pic_array[count])
570             {
571                 PictureResourceFree (res, p_sys->conn);
572                 memset (res, 0, sizeof(*res));
573                 break;
574             }
575         }
576         picture_Release (pic);
577
578         if (count == 0)
579             return NULL;
580
581         p_sys->pool = picture_pool_New (count, pic_array);
582         if (!p_sys->pool)
583         {
584             /* TODO release picture resources */
585             return NULL;
586         }
587         /* FIXME should also do it in case of error ? */
588         xcb_flush (p_sys->conn);
589     }
590
591     return picture_pool_Get (p_sys->pool);
592 }
593
594 /**
595  * Sends an image to the X server.
596  */
597 static void Display (vout_display_t *vd, picture_t *pic)
598 {
599     vout_display_sys_t *p_sys = vd->sys;
600     xcb_shm_seg_t segment = pic->p_sys->segment;
601     xcb_void_cookie_t ck;
602
603     if (segment)
604         ck = xcb_xv_shm_put_image_checked (p_sys->conn, p_sys->port,
605                               p_sys->window, p_sys->gc, segment, p_sys->id, 0,
606                    /* Src: */ vd->source.i_x_offset,
607                               vd->source.i_y_offset,
608                               vd->source.i_visible_width,
609                               vd->source.i_visible_height,
610                    /* Dst: */ 0, 0, p_sys->width, p_sys->height,
611                 /* Memory: */ pic->p->i_pitch / pic->p->i_pixel_pitch,
612                               pic->p->i_visible_lines, false);
613     else
614         ck = xcb_xv_put_image_checked (p_sys->conn, p_sys->port, p_sys->window,
615                           p_sys->gc, p_sys->id,
616                           vd->source.i_x_offset,
617                           vd->source.i_y_offset,
618                           vd->source.i_visible_width,
619                           vd->source.i_visible_height,
620                           0, 0, p_sys->width, p_sys->height,
621                           vd->source.i_width, vd->source.i_height,
622                           p_sys->data_size, pic->p->p_pixels);
623
624     /* Wait for reply. See x11.c for rationale. */
625     xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
626     if (e != NULL)
627     {
628         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
629         free (e);
630     }
631
632     picture_Release (pic);
633 }
634
635 static int Control (vout_display_t *vd, int query, va_list ap)
636 {
637     vout_display_sys_t *p_sys = vd->sys;
638
639     switch (query)
640     {
641     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
642     {
643         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
644         return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
645     }
646
647     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
648     case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
649     case VOUT_DISPLAY_CHANGE_ZOOM:
650     case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
651     case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
652     {
653         const vout_display_cfg_t *cfg;
654         const video_format_t *source;
655
656         if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
657          || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
658         {
659             source = (const video_format_t *)va_arg (ap, const video_format_t *);
660             cfg = vd->cfg;
661         }
662         else
663         {
664             source = &vd->source;
665             cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
666         }
667
668         /* */
669         if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
670          && (cfg->display.width  != vd->cfg->display.width
671            ||cfg->display.height != vd->cfg->display.height)
672          && vout_window_SetSize (p_sys->embed,
673                                   cfg->display.width,
674                                   cfg->display.height))
675             return VLC_EGENERIC;
676
677         vout_display_place_t place;
678         vout_display_PlacePicture (&place, source, cfg, false);
679         p_sys->width  = place.width;
680         p_sys->height = place.height;
681
682         /* Move the picture within the window */
683         const uint32_t values[] = { place.x, place.y,
684                                     place.width, place.height, };
685         xcb_configure_window (p_sys->conn, p_sys->window,
686                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
687                             | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
688                               values);
689         xcb_flush (p_sys->conn);
690         return VLC_SUCCESS;
691     }
692     case VOUT_DISPLAY_CHANGE_ON_TOP:
693     {
694         int on_top = (int)va_arg (ap, int);
695         return vout_window_SetOnTop (p_sys->embed, on_top);
696     }
697
698     /* TODO */
699 #if 0
700     /* Hide the mouse. It will be send when
701      * vout_display_t::info.b_hide_mouse is false */
702     VOUT_DISPLAY_HIDE_MOUSE,
703 #endif
704     case VOUT_DISPLAY_RESET_PICTURES:
705         assert(0);
706     default:
707         msg_Err (vd, "Unknown request in XCB vout display");
708         return VLC_EGENERIC;
709     }
710 }
711
712 static void Manage (vout_display_t *vd)
713 {
714     vout_display_sys_t *p_sys = vd->sys;
715
716     ManageEvent (vd, p_sys->conn, p_sys->window);
717 }
718