]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xvideo.c
XCB: follow pointer motion in the parent window
[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
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 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     bool visible;        /* whether it makes sense to draw at all */
97
98     xcb_xv_query_image_attributes_reply_t *att;
99     picture_pool_t *pool; /* picture pool */
100     picture_resource_t resource[MAX_PICTURES];
101 };
102
103 static picture_t *Get (vout_display_t *);
104 static void Display (vout_display_t *, picture_t *);
105 static int Control (vout_display_t *, int, va_list);
106 static void Manage (vout_display_t *);
107
108 /**
109  * Check that the X server supports the XVideo extension.
110  */
111 static bool CheckXVideo (vout_display_t *vd, xcb_connection_t *conn)
112 {
113     xcb_xv_query_extension_reply_t *r;
114     xcb_xv_query_extension_cookie_t ck = xcb_xv_query_extension (conn);
115     bool ok = false;
116
117     r = xcb_xv_query_extension_reply (conn, ck, NULL);
118     if (r != NULL)
119     {   /* We need XVideo 2.2 for PutImage */
120         if ((r->major > 2) || (r->major == 2 && r->minor >= 2))
121         {
122             msg_Dbg (vd, "using XVideo extension v%"PRIu8".%"PRIu8,
123                      r->major, r->minor);
124             ok = true;
125         }
126         else
127             msg_Dbg (vd, "XVideo extension too old (v%"PRIu8".%"PRIu8,
128                      r->major, r->minor);
129         free (r);
130     }
131     else
132         msg_Dbg (vd, "XVideo extension not available");
133     return ok;
134 }
135
136 static vlc_fourcc_t ParseFormat (vout_display_t *vd,
137                                  const xcb_xv_image_format_info_t *restrict f)
138 {
139     if (f->byte_order != ORDER && f->bpp != 8)
140         return 0; /* Argh! */
141
142     switch (f->type)
143     {
144       case XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB:
145         switch (f->num_planes)
146         {
147           case 1:
148             switch (f->bpp)
149             {
150               case 32:
151                 if (f->depth == 24)
152                     return VLC_CODEC_RGB32;
153                 break;
154               case 24:
155                 if (f->depth == 24)
156                     return VLC_CODEC_RGB24;
157                 break;
158               case 16:
159                 if (f->depth == 16)
160                     return VLC_CODEC_RGB16;
161                 if (f->depth == 15)
162                     return VLC_CODEC_RGB15;
163                 break;
164               case 8:
165                 if (f->depth == 8)
166                     return VLC_CODEC_RGB8;
167                 break;
168             }
169             break;
170         }
171         msg_Err (vd, "unknown XVideo RGB format %"PRIx32" (%.4s)",
172                  f->id, f->guid);
173         msg_Dbg (vd, " %"PRIu8" planes, %"PRIu8" bits/pixel, "
174                  "depth %"PRIu8, f->num_planes, f->bpp, f->depth);
175         break;
176
177       case XCB_XV_IMAGE_FORMAT_INFO_TYPE_YUV:
178         if (f->u_sample_bits != f->v_sample_bits
179          || f->vhorz_u_period != f->vhorz_v_period
180          || f->vvert_u_period != f->vvert_v_period
181          || f->y_sample_bits != 8 || f->u_sample_bits != 8
182          || f->vhorz_y_period != 1 || f->vvert_y_period != 1)
183             goto bad;
184         switch (f->num_planes)
185         {
186           case 1:
187             switch (f->bpp)
188             {
189               /*untested: case 24:
190                 if (f->vhorz_u_period == 1 && f->vvert_u_period == 1)
191                     return VLC_CODEC_I444;
192                 break;*/
193               case 16:
194                 if (f->vhorz_u_period == 2 && f->vvert_u_period == 1)
195                 {
196                     if (!strcmp ((const char *)f->vcomp_order, "YUYV"))
197                         return VLC_CODEC_YUYV;
198                     if (!strcmp ((const char *)f->vcomp_order, "UYVY"))
199                         return VLC_CODEC_UYVY;
200                 }
201                 break;
202             }
203             break;
204           case 3:
205             switch (f->bpp)
206             {
207               case 12:
208                 if (f->vhorz_u_period == 2 && f->vvert_u_period == 2)
209                 {
210                     if (!strcmp ((const char *)f->vcomp_order, "YVU"))
211                         return VLC_CODEC_YV12;
212                     if (!strcmp ((const char *)f->vcomp_order, "YUV"))
213                         return VLC_CODEC_I420;
214                 }
215             }
216             break;
217         }
218     bad:
219         msg_Err (vd, "unknown XVideo YUV format %"PRIx32" (%.4s)", f->id,
220                  f->guid);
221         msg_Dbg (vd, " %"PRIu8" planes, %"PRIu32" bits/pixel, "
222                  "%"PRIu32"/%"PRIu32"/%"PRIu32" bits/sample", f->num_planes,
223                  f->bpp, f->y_sample_bits, f->u_sample_bits, f->v_sample_bits);
224         msg_Dbg (vd, " period: %"PRIu32"/%"PRIu32"/%"PRIu32"x"
225                  "%"PRIu32"/%"PRIu32"/%"PRIu32,
226                  f->vhorz_y_period, f->vhorz_u_period, f->vhorz_v_period,
227                  f->vvert_y_period, f->vvert_u_period, f->vvert_v_period);
228         msg_Warn (vd, " order: %.32s", f->vcomp_order);
229         break;
230     }
231     return 0;
232 }
233
234
235 static const xcb_xv_image_format_info_t *
236 FindFormat (vout_display_t *vd,
237             vlc_fourcc_t chroma, const video_format_t *fmt,
238             xcb_xv_port_t port,
239             const xcb_xv_list_image_formats_reply_t *list,
240             xcb_xv_query_image_attributes_reply_t **restrict pa)
241 {
242     xcb_connection_t *conn = vd->sys->conn;
243     const xcb_xv_image_format_info_t *f, *end;
244
245 #ifndef XCB_XV_OLD
246     f = xcb_xv_list_image_formats_format (list);
247 #else
248     f = (xcb_xv_image_format_info_t *) (list + 1);
249 #endif
250     end = f + xcb_xv_list_image_formats_format_length (list);
251     for (; f < end; f++)
252     {
253         if (chroma != ParseFormat (vd, f))
254             continue;
255
256         /* VLC pads scanline to 16 pixels internally */
257         unsigned width = (fmt->i_width + 15) & ~15;
258         unsigned height = (fmt->i_height + 15) & ~15;
259         xcb_xv_query_image_attributes_reply_t *i;
260         i = xcb_xv_query_image_attributes_reply (conn,
261             xcb_xv_query_image_attributes (conn, port, f->id,
262                                            width, height), NULL);
263         if (i == NULL)
264             continue;
265
266         if (i->width != width || i->height != height)
267         {
268             msg_Warn (vd, "incompatible size %ux%u -> %"PRIu32"x%"PRIu32,
269                       fmt->i_width, fmt->i_height,
270                       i->width, i->height);
271             free (i);
272             continue;
273         }
274         *pa = i;
275         return f;
276     }
277     return NULL;
278 }
279
280
281 /**
282  * Probe the X server.
283  */
284 static int Open (vlc_object_t *obj)
285 {
286     vout_display_t *vd = (vout_display_t *)obj;
287     vout_display_sys_t *p_sys = malloc (sizeof (*p_sys));
288     if (p_sys == NULL)
289         return VLC_ENOMEM;
290
291     vd->sys = p_sys;
292
293     /* Connect to X */
294     xcb_connection_t *conn = Connect (obj);
295     if (conn == NULL)
296     {
297         free (p_sys);
298         return VLC_EGENERIC;
299     }
300     p_sys->conn = conn;
301
302     if (!CheckXVideo (vd, conn))
303     {
304         msg_Warn (vd, "Please enable XVideo 2.2 for faster video display");
305         xcb_disconnect (conn);
306         free (p_sys);
307         return VLC_EGENERIC;
308     }
309
310     const xcb_screen_t *screen;
311     p_sys->embed = GetWindow (vd, conn, &screen, &p_sys->shm);
312     if (p_sys->embed == NULL)
313     {
314         xcb_disconnect (conn);
315         free (p_sys);
316         return VLC_EGENERIC;
317     }
318
319     /* */
320     p_sys->att = NULL;
321     p_sys->pool = NULL;
322
323     /* Cache adaptors infos */
324     xcb_xv_query_adaptors_reply_t *adaptors =
325         xcb_xv_query_adaptors_reply (conn,
326             xcb_xv_query_adaptors (conn, p_sys->embed->handle.xid), NULL);
327     if (adaptors == NULL)
328         goto error;
329
330     int forced_adaptor = var_CreateGetInteger (obj, "xvideo-adaptor");
331
332     /* */
333     video_format_t fmt = vd->fmt;
334     bool found_adaptor = false;
335
336     xcb_xv_adaptor_info_iterator_t it;
337     for (it = xcb_xv_query_adaptors_info_iterator (adaptors);
338          it.rem > 0 && !found_adaptor;
339          xcb_xv_adaptor_info_next (&it))
340     {
341         const xcb_xv_adaptor_info_t *a = it.data;
342         char *name;
343
344         if (forced_adaptor != -1 && forced_adaptor != 0)
345         {
346             forced_adaptor--;
347             continue;
348         }
349
350         if (!(a->type & XCB_XV_TYPE_IMAGE_MASK))
351             continue;
352
353         xcb_xv_list_image_formats_reply_t *r =
354             xcb_xv_list_image_formats_reply (conn,
355                 xcb_xv_list_image_formats (conn, a->base_id), NULL);
356         if (r == NULL)
357             continue;
358
359         /* Look for an image format */
360         const xcb_xv_image_format_info_t *xfmt = NULL;
361         const vlc_fourcc_t *chromas, chromas_default[] = {
362             fmt.i_chroma,
363             VLC_CODEC_RGB32,
364             VLC_CODEC_RGB24,
365             VLC_CODEC_RGB16,
366             VLC_CODEC_RGB15,
367             VLC_CODEC_YUYV,
368             0
369         };
370         if (vlc_fourcc_IsYUV (fmt.i_chroma))
371             chromas = vlc_fourcc_GetYUVFallback (fmt.i_chroma);
372         else
373             chromas = chromas_default;
374
375         vlc_fourcc_t chroma;
376         for (size_t i = 0; chromas[i] && (xfmt == NULL); i++)
377         {
378             chroma = chromas[i];
379
380             /* Oink oink! */
381             if ((chroma == VLC_CODEC_I420 || chroma == VLC_CODEC_YV12)
382              && a->name_size >= 4
383              && !memcmp ("OMAP", xcb_xv_adaptor_info_name (a), 4))
384             {
385                 msg_Dbg (vd, "skipping slow I420 format");
386                 continue; /* OMAP framebuffer sucks at YUV 4:2:0 */
387             }
388
389             xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
390         }
391
392         if (xfmt == NULL) /* No acceptable image formats */
393             goto skip_adaptor;
394
395         /* Grab a port */
396         for (unsigned i = 0; i < a->num_ports; i++)
397         {
398              xcb_xv_port_t port = a->base_id + i;
399              xcb_xv_grab_port_reply_t *gr =
400                  xcb_xv_grab_port_reply (conn,
401                      xcb_xv_grab_port (conn, port, XCB_CURRENT_TIME), NULL);
402              uint8_t result = gr ? gr->result : 0xff;
403
404              free (gr);
405              if (result == 0)
406              {
407                  p_sys->port = port;
408                  found_adaptor = true;
409                  break;
410              }
411              msg_Dbg (vd, "cannot grab port %"PRIu32, port);
412         }
413         if (!found_adaptor)
414             goto skip_adaptor;
415
416         /* Found port - initialize selected format */
417         name = strndup (xcb_xv_adaptor_info_name (a), a->name_size);
418         if (name != NULL)
419         {
420             msg_Dbg (vd, "using adaptor %s", name);
421             free (name);
422         }
423         msg_Dbg (vd, "using port %"PRIu32, p_sys->port);
424
425         p_sys->id = xfmt->id;
426         msg_Dbg (vd, "using image format 0x%"PRIx32, p_sys->id);
427         fmt.i_chroma = chroma;
428         if (xfmt->type == XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB)
429         {
430             fmt.i_rmask = xfmt->red_mask;
431             fmt.i_gmask = xfmt->green_mask;
432             fmt.i_bmask = xfmt->blue_mask;
433         }
434
435     skip_adaptor:
436         free (r);
437     }
438     free (adaptors);
439     if (!found_adaptor)
440     {
441         msg_Err (vd, "no available XVideo adaptor");
442         goto error;
443     }
444
445     /* Create window */
446     {
447         const uint32_t mask =
448             /* XCB_CW_EVENT_MASK */
449             XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE |
450             XCB_EVENT_MASK_VISIBILITY_CHANGE;
451         xcb_void_cookie_t c;
452         xcb_window_t window = xcb_generate_id (conn);
453
454         c = xcb_create_window_checked (conn, screen->root_depth, window,
455                                        p_sys->embed->handle.xid, 0, 0, 1, 1, 0,
456                                        XCB_WINDOW_CLASS_INPUT_OUTPUT,
457                                        screen->root_visual,
458                                        XCB_CW_EVENT_MASK, &mask);
459         if (CheckError (vd, conn, "cannot create X11 window", c))
460             goto error;
461         p_sys->window = window;
462         msg_Dbg (vd, "using X11 window 0x%08"PRIx32, window);
463         xcb_map_window (conn, window);
464
465         vout_display_place_t place;
466
467         vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
468         p_sys->width  = place.width;
469         p_sys->height = place.height;
470
471         /* */
472         const uint32_t values[] = { place.x, place.y, place.width, place.height };
473         xcb_configure_window (conn, window,
474                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
475                               XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
476                               values);
477     }
478     p_sys->visible = false;
479
480     /* Create graphic context */
481     p_sys->gc = xcb_generate_id (conn);
482     xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
483     msg_Dbg (vd, "using X11 graphic context 0x%08"PRIx32, p_sys->gc);
484
485     /* */
486     p_sys->pool = NULL;
487
488     /* */
489     vout_display_info_t info = vd->info;
490     info.has_pictures_invalid = false;
491
492     /* Setup vout_display_t once everything is fine */
493     vd->fmt = fmt;
494     vd->info = info;
495
496     vd->get = Get;
497     vd->prepare = NULL;
498     vd->display = Display;
499     vd->control = Control;
500     vd->manage = Manage;
501
502     /* */
503     vout_display_SendEventFullscreen (vd, false);
504     unsigned width, height;
505     if (!GetWindowSize (p_sys->embed, conn, &width, &height))
506         vout_display_SendEventDisplaySize (vd, width, height, false);
507
508     return VLC_SUCCESS;
509
510 error:
511     Close (obj);
512     return VLC_EGENERIC;
513 }
514
515
516 /**
517  * Disconnect from the X server.
518  */
519 static void Close (vlc_object_t *obj)
520 {
521     vout_display_t *vd = (vout_display_t *)obj;
522     vout_display_sys_t *p_sys = vd->sys;
523
524     if (p_sys->pool)
525     {
526         for (unsigned i = 0; i < MAX_PICTURES; i++)
527         {
528             picture_resource_t *res = &p_sys->resource[i];
529
530             if (!res->p->p_pixels)
531                 break;
532             PictureResourceFree (res, NULL);
533         }
534         picture_pool_Delete (p_sys->pool);
535     }
536
537     free (p_sys->att);
538     vout_display_DeleteWindow (vd, p_sys->embed);
539     xcb_disconnect (p_sys->conn);
540     free (p_sys);
541 }
542
543 /**
544  * Return a direct buffer
545  */
546 static picture_t *Get (vout_display_t *vd)
547 {
548     vout_display_sys_t *p_sys = vd->sys;
549
550     if (!p_sys->pool)
551     {
552         picture_t *pic = picture_New (vd->fmt.i_chroma, p_sys->att->width,
553                                       p_sys->att->height, 0);
554         if (!pic)
555             return NULL;
556
557         memset (p_sys->resource, 0, sizeof(p_sys->resource));
558
559         const uint32_t *offsets =
560             xcb_xv_query_image_attributes_offsets (p_sys->att);
561         p_sys->data_size = p_sys->att->data_size;
562
563         unsigned count;
564         picture_t *pic_array[MAX_PICTURES];
565         for (count = 0; count < MAX_PICTURES; count++)
566         {
567             picture_resource_t *res = &p_sys->resource[count];
568
569             for (int i = 0; i < pic->i_planes; i++)
570             {
571                 res->p[i].i_lines = pic->p[i].i_lines; /* FIXME seems wrong*/
572                 res->p[i].i_pitch = pic->p[i].i_pitch;
573             }
574             if (PictureResourceAlloc (vd, res, p_sys->att->data_size,
575                                       p_sys->conn, p_sys->shm))
576                 break;
577
578             /* Allocate further planes as specified by XVideo */
579             /* We assume that offsets[0] is zero */
580             for (int i = 1; i < pic->i_planes; i++)
581                 res->p[i].p_pixels = res->p[0].p_pixels + offsets[i];
582             if (vd->fmt.i_chroma == VLC_CODEC_YV12)
583             {   /* YVU: swap U and V planes */
584                 uint8_t *buf = res->p[2].p_pixels;
585                 res->p[2].p_pixels = res->p[1].p_pixels;
586                 res->p[1].p_pixels = buf;
587             }
588
589             pic_array[count] = picture_NewFromResource (&vd->fmt, res);
590             if (!pic_array[count])
591             {
592                 PictureResourceFree (res, p_sys->conn);
593                 memset (res, 0, sizeof(*res));
594                 break;
595             }
596         }
597         picture_Release (pic);
598
599         if (count == 0)
600             return NULL;
601
602         p_sys->pool = picture_pool_New (count, pic_array);
603         if (!p_sys->pool)
604         {
605             /* TODO release picture resources */
606             return NULL;
607         }
608         /* FIXME should also do it in case of error ? */
609         xcb_flush (p_sys->conn);
610     }
611
612     return picture_pool_Get (p_sys->pool);
613 }
614
615 /**
616  * Sends an image to the X server.
617  */
618 static void Display (vout_display_t *vd, picture_t *pic)
619 {
620     vout_display_sys_t *p_sys = vd->sys;
621     xcb_shm_seg_t segment = pic->p_sys->segment;
622     xcb_void_cookie_t ck;
623
624     if (!p_sys->visible)
625         goto out;
626     if (segment)
627         ck = xcb_xv_shm_put_image_checked (p_sys->conn, p_sys->port,
628                               p_sys->window, p_sys->gc, segment, p_sys->id, 0,
629                    /* Src: */ vd->source.i_x_offset,
630                               vd->source.i_y_offset,
631                               vd->source.i_visible_width,
632                               vd->source.i_visible_height,
633                    /* Dst: */ 0, 0, p_sys->width, p_sys->height,
634                 /* Memory: */ pic->p->i_pitch / pic->p->i_pixel_pitch,
635                               pic->p->i_lines, false);
636     else
637         ck = xcb_xv_put_image_checked (p_sys->conn, p_sys->port, p_sys->window,
638                           p_sys->gc, p_sys->id,
639                           vd->source.i_x_offset,
640                           vd->source.i_y_offset,
641                           vd->source.i_visible_width,
642                           vd->source.i_visible_height,
643                           0, 0, p_sys->width, p_sys->height,
644                           pic->p->i_pitch / pic->p->i_pixel_pitch,
645                           pic->p->i_lines,
646                           p_sys->data_size, pic->p->p_pixels);
647
648     /* Wait for reply. See x11.c for rationale. */
649     xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
650     if (e != NULL)
651     {
652         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
653         free (e);
654     }
655 out:
656     picture_Release (pic);
657 }
658
659 static int Control (vout_display_t *vd, int query, va_list ap)
660 {
661     vout_display_sys_t *p_sys = vd->sys;
662
663     switch (query)
664     {
665     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
666     {
667         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
668         return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
669     }
670
671     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
672     case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
673     case VOUT_DISPLAY_CHANGE_ZOOM:
674     case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
675     case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
676     {
677         const vout_display_cfg_t *cfg;
678         const video_format_t *source;
679         bool is_forced;
680
681         if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
682          || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
683         {
684             source = (const video_format_t *)va_arg (ap, const video_format_t *);
685             cfg = vd->cfg;
686         }
687         else
688         {
689             source = &vd->source;
690             cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
691             if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE)
692                 is_forced = (bool)va_arg (ap, int);
693         }
694
695         /* */
696         if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
697          && is_forced
698          && (cfg->display.width  != vd->cfg->display.width
699            ||cfg->display.height != vd->cfg->display.height)
700          && vout_window_SetSize (p_sys->embed,
701                                   cfg->display.width,
702                                   cfg->display.height))
703             return VLC_EGENERIC;
704
705         vout_display_place_t place;
706         vout_display_PlacePicture (&place, source, cfg, false);
707         p_sys->width  = place.width;
708         p_sys->height = place.height;
709
710         /* Move the picture within the window */
711         const uint32_t values[] = { place.x, place.y,
712                                     place.width, place.height, };
713         xcb_configure_window (p_sys->conn, p_sys->window,
714                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
715                             | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
716                               values);
717         xcb_flush (p_sys->conn);
718         return VLC_SUCCESS;
719     }
720     case VOUT_DISPLAY_CHANGE_ON_TOP:
721     {
722         int on_top = (int)va_arg (ap, int);
723         return vout_window_SetOnTop (p_sys->embed, on_top);
724     }
725
726     /* TODO */
727 #if 0
728     /* Hide the mouse. It will be send when
729      * vout_display_t::info.b_hide_mouse is false */
730     VOUT_DISPLAY_HIDE_MOUSE,
731 #endif
732     case VOUT_DISPLAY_RESET_PICTURES:
733         assert(0);
734     default:
735         msg_Err (vd, "Unknown request in XCB vout display");
736         return VLC_EGENERIC;
737     }
738 }
739
740 static void Manage (vout_display_t *vd)
741 {
742     vout_display_sys_t *p_sys = vd->sys;
743
744     ManageEvent (vd, p_sys->conn, &p_sys->visible);
745 }
746