]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xvideo.c
Revert "XCB-XVideo: fix shared-memory YUY2"
[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         if (!(a->type & XCB_XV_TYPE_IMAGE_MASK))
348             continue;
349
350         xcb_xv_list_image_formats_reply_t *r =
351             xcb_xv_list_image_formats_reply (conn,
352                 xcb_xv_list_image_formats (conn, a->base_id), NULL);
353         if (r == NULL)
354             continue;
355
356         const xcb_xv_image_format_info_t *xfmt;
357
358         /* */
359         const vlc_fourcc_t *chromas, chromas_default[] = {
360             fmt.i_chroma,
361             VLC_CODEC_RGB32,
362             VLC_CODEC_RGB24,
363             VLC_CODEC_RGB16,
364             VLC_CODEC_RGB15,
365             VLC_CODEC_YUYV,
366             0
367         };
368         if (vlc_fourcc_IsYUV (fmt.i_chroma))
369             chromas = vlc_fourcc_GetYUVFallback (fmt.i_chroma);
370         else
371             chromas = chromas_default;
372
373         for (size_t i = 0; chromas[i]; i++)
374         {
375             vlc_fourcc_t chroma = chromas[i];
376             xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
377             if (xfmt != NULL)
378             {
379                 fmt.i_chroma = chroma;
380                 goto found_format;
381             }
382         }
383         free (r);
384         continue;
385
386     found_format:
387         /* Grab a port */
388         /* XXX: assume all of an adapter's ports have the same formats */
389         for (unsigned i = 0; i < a->num_ports; i++)
390         {
391              xcb_xv_port_t port = a->base_id + i;
392              xcb_xv_grab_port_reply_t *gr =
393                  xcb_xv_grab_port_reply (conn,
394                      xcb_xv_grab_port (conn, port, XCB_CURRENT_TIME), NULL);
395              uint8_t result = gr ? gr->result : 0xff;
396
397              free (gr);
398              if (result == 0)
399              {
400                  p_sys->port = port;
401                  goto grabbed_port;
402              }
403              msg_Dbg (vd, "cannot grab port %"PRIu32, port);
404         }
405         continue;
406
407     grabbed_port:
408         msg_Dbg (vd, "using port %"PRIu32, p_sys->port);
409
410         p_sys->id = xfmt->id;
411         msg_Dbg (vd, "using image format 0x%"PRIx32, p_sys->id);
412         if (xfmt->type == XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB)
413         {
414             fmt.i_rmask = xfmt->red_mask;
415             fmt.i_gmask = xfmt->green_mask;
416             fmt.i_bmask = xfmt->blue_mask;
417         }
418         free (r);
419         found_adaptor = true;
420         break;
421     }
422     free (adaptors);
423     if (!found_adaptor)
424     {
425         msg_Err (vd, "no available XVideo adaptor");
426         goto error;
427     }
428
429     /* Create window */
430     {
431         const uint32_t mask =
432             /* XCB_CW_EVENT_MASK */
433             XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE |
434             XCB_EVENT_MASK_POINTER_MOTION;
435         xcb_void_cookie_t c;
436         xcb_window_t window = xcb_generate_id (conn);
437
438         c = xcb_create_window_checked (conn, screen->root_depth, window,
439                                        p_sys->embed->handle.xid, 0, 0, 1, 1, 0,
440                                        XCB_WINDOW_CLASS_INPUT_OUTPUT,
441                                        screen->root_visual,
442                                        XCB_CW_EVENT_MASK, &mask);
443         if (CheckError (vd, conn, "cannot create X11 window", c))
444             goto error;
445         p_sys->window = window;
446         msg_Dbg (vd, "using X11 window %08"PRIx32, window);
447         xcb_map_window (conn, window);
448
449         vout_display_place_t place;
450
451         vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
452         p_sys->width  = place.width;
453         p_sys->height = place.height;
454
455         /* */
456         const uint32_t values[] = { place.x, place.y, place.width, place.height };
457         xcb_configure_window (conn, window,
458                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
459                               XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
460                               values);
461     }
462
463     /* Create graphic context */
464     p_sys->gc = xcb_generate_id (conn);
465     xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
466     msg_Dbg (vd, "using X11 graphic context %08"PRIx32, p_sys->gc);
467
468     /* */
469     p_sys->pool = NULL;
470
471     /* */
472     vout_display_info_t info = vd->info;
473     info.has_pictures_invalid = false;
474
475     /* Setup vout_display_t once everything is fine */
476     vd->fmt = fmt;
477     vd->info = info;
478
479     vd->get = Get;
480     vd->prepare = NULL;
481     vd->display = Display;
482     vd->control = Control;
483     vd->manage = Manage;
484
485     /* */
486     unsigned width, height;
487     if (!GetWindowSize (p_sys->embed, conn, &width, &height))
488         vout_display_SendEventDisplaySize (vd, width, height);
489     vout_display_SendEventFullscreen (vd, false);
490
491     return VLC_SUCCESS;
492
493 error:
494     Close (obj);
495     return VLC_EGENERIC;
496 }
497
498
499 /**
500  * Disconnect from the X server.
501  */
502 static void Close (vlc_object_t *obj)
503 {
504     vout_display_t *vd = (vout_display_t *)obj;
505     vout_display_sys_t *p_sys = vd->sys;
506
507     if (p_sys->pool)
508     {
509         for (unsigned i = 0; i < MAX_PICTURES; i++)
510         {
511             picture_resource_t *res = &p_sys->resource[i];
512
513             if (!res->p->p_pixels)
514                 break;
515             PictureResourceFree (res, p_sys->conn);
516         }
517         picture_pool_Delete (p_sys->pool);
518     }
519
520     free (p_sys->att);
521     vout_display_DeleteWindow (vd, p_sys->embed);
522     xcb_disconnect (p_sys->conn);
523     free (p_sys);
524 }
525
526 /**
527  * Return a direct buffer
528  */
529 static picture_t *Get (vout_display_t *vd)
530 {
531     vout_display_sys_t *p_sys = vd->sys;
532
533     if (!p_sys->pool)
534     {
535         picture_t *pic = picture_New (vd->fmt.i_chroma,
536                                       p_sys->att->width, p_sys->att->height, 0);
537         if (!pic)
538             return NULL;
539
540         memset (p_sys->resource, 0, sizeof(p_sys->resource));
541
542         const uint32_t *offsets =
543             xcb_xv_query_image_attributes_offsets (p_sys->att);
544         p_sys->data_size = p_sys->att->data_size;
545
546         unsigned count;
547         picture_t *pic_array[MAX_PICTURES];
548         for (count = 0; count < MAX_PICTURES; count++)
549         {
550             picture_resource_t *res = &p_sys->resource[count];
551
552             for (int i = 0; i < pic->i_planes; i++)
553             {
554                 res->p[i].i_lines = pic->p[i].i_lines; /* FIXME seems wrong*/
555                 res->p[i].i_pitch = pic->p[i].i_pitch;
556             }
557             if (PictureResourceAlloc (vd, res, p_sys->att->data_size,
558                                       p_sys->conn, p_sys->shm))
559                 break;
560
561             /* Allocate further planes as specified by XVideo */
562             /* We assume that offsets[0] is zero */
563             for (int i = 1; i < pic->i_planes; i++)
564                 res->p[i].p_pixels = res->p[0].p_pixels + offsets[i];
565             if (vd->fmt.i_chroma == VLC_CODEC_YV12)
566             {   /* YVU: swap U and V planes */
567                 uint8_t *buf = res->p[2].p_pixels;
568                 res->p[2].p_pixels = res->p[1].p_pixels;
569                 res->p[1].p_pixels = buf;
570             }
571
572             pic_array[count] = picture_NewFromResource (&vd->fmt, res);
573             if (!pic_array[count])
574             {
575                 PictureResourceFree (res, p_sys->conn);
576                 memset (res, 0, sizeof(*res));
577                 break;
578             }
579         }
580         picture_Release (pic);
581
582         if (count == 0)
583             return NULL;
584
585         p_sys->pool = picture_pool_New (count, pic_array);
586         if (!p_sys->pool)
587         {
588             /* TODO release picture resources */
589             return NULL;
590         }
591         /* FIXME should also do it in case of error ? */
592         xcb_flush (p_sys->conn);
593     }
594
595     return picture_pool_Get (p_sys->pool);
596 }
597
598 /**
599  * Sends an image to the X server.
600  */
601 static void Display (vout_display_t *vd, picture_t *pic)
602 {
603     vout_display_sys_t *p_sys = vd->sys;
604     xcb_shm_seg_t segment = pic->p_sys->segment;
605     xcb_void_cookie_t ck;
606
607     if (segment)
608         ck = xcb_xv_shm_put_image_checked (p_sys->conn, p_sys->port,
609                               p_sys->window, p_sys->gc, segment, p_sys->id, 0,
610                    /* Src: */ vd->source.i_x_offset,
611                               vd->source.i_y_offset,
612                               vd->source.i_visible_width,
613                               vd->source.i_visible_height,
614                    /* Dst: */ 0, 0, p_sys->width, p_sys->height,
615                 /* Memory: */ pic->p->i_pitch / pic->p->i_pixel_pitch,
616                               pic->p->i_visible_lines, false);
617     else
618         ck = xcb_xv_put_image_checked (p_sys->conn, p_sys->port, p_sys->window,
619                           p_sys->gc, p_sys->id,
620                           vd->source.i_x_offset,
621                           vd->source.i_y_offset,
622                           vd->source.i_visible_width,
623                           vd->source.i_visible_height,
624                           0, 0, p_sys->width, p_sys->height,
625                           vd->source.i_width, vd->source.i_height,
626                           p_sys->data_size, pic->p->p_pixels);
627
628     /* Wait for reply. See x11.c for rationale. */
629     xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
630     if (e != NULL)
631     {
632         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
633         free (e);
634     }
635
636     picture_Release (pic);
637 }
638
639 static int Control (vout_display_t *vd, int query, va_list ap)
640 {
641     vout_display_sys_t *p_sys = vd->sys;
642
643     switch (query)
644     {
645     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
646     {
647         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
648         return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
649     }
650
651     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
652     case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
653     case VOUT_DISPLAY_CHANGE_ZOOM:
654     case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
655     case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
656     {
657         const vout_display_cfg_t *cfg;
658         const video_format_t *source;
659
660         if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
661          || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
662         {
663             source = (const video_format_t *)va_arg (ap, const video_format_t *);
664             cfg = vd->cfg;
665         }
666         else
667         {
668             source = &vd->source;
669             cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
670         }
671
672         /* */
673         if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
674          && (cfg->display.width  != vd->cfg->display.width
675            ||cfg->display.height != vd->cfg->display.height)
676          && vout_window_SetSize (p_sys->embed,
677                                   cfg->display.width,
678                                   cfg->display.height))
679             return VLC_EGENERIC;
680
681         vout_display_place_t place;
682         vout_display_PlacePicture (&place, source, cfg, false);
683         p_sys->width  = place.width;
684         p_sys->height = place.height;
685
686         /* Move the picture within the window */
687         const uint32_t values[] = { place.x, place.y,
688                                     place.width, place.height, };
689         xcb_configure_window (p_sys->conn, p_sys->window,
690                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
691                             | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
692                               values);
693         xcb_flush (p_sys->conn);
694         return VLC_SUCCESS;
695     }
696     case VOUT_DISPLAY_CHANGE_ON_TOP:
697     {
698         int on_top = (int)va_arg (ap, int);
699         return vout_window_SetOnTop (p_sys->embed, on_top);
700     }
701
702     /* TODO */
703 #if 0
704     /* Hide the mouse. It will be send when
705      * vout_display_t::info.b_hide_mouse is false */
706     VOUT_DISPLAY_HIDE_MOUSE,
707 #endif
708     case VOUT_DISPLAY_RESET_PICTURES:
709         assert(0);
710     default:
711         msg_Err (vd, "Unknown request in XCB vout display");
712         return VLC_EGENERIC;
713     }
714 }
715
716 static void Manage (vout_display_t *vd)
717 {
718     vout_display_sys_t *p_sys = vd->sys;
719
720     ManageEvent (vd, p_sys->conn, p_sys->window);
721 }
722