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