]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xvideo.c
xcb-xv: adaptor selection with --xvideo-adaptor
[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     xcb_xv_query_adaptors_reply_t *adaptors;
87     vout_window_t *embed;/* VLC window */
88
89     xcb_window_t window; /* drawable X window */
90     xcb_gcontext_t gc;   /* context to put images */
91     xcb_xv_port_t port;  /* XVideo port */
92     uint32_t id;         /* XVideo format */
93     uint16_t width;      /* display width */
94     uint16_t height;     /* display height */
95     uint32_t data_size;  /* picture byte size (for non-SHM) */
96     bool shm;            /* whether to use MIT-SHM */
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         xcb_xv_query_image_attributes_reply_t *i;
257         i = xcb_xv_query_image_attributes_reply (conn,
258             xcb_xv_query_image_attributes (conn, port, f->id,
259                 fmt->i_width, fmt->i_height), NULL);
260         if (i == NULL)
261             continue;
262
263         if (i->width != fmt->i_width
264          || i->height != fmt->i_height)
265         {
266             msg_Warn (vd, "incompatible size %ux%u -> %"PRIu32"x%"PRIu32,
267                       fmt->i_width, fmt->i_height,
268                       i->width, i->height);
269             free (i);
270             continue;
271         }
272         *pa = i;
273         return f;
274     }
275     return NULL;
276 }
277
278
279 /**
280  * Get a list of XVideo adaptors for a given window.
281  */
282 static xcb_xv_query_adaptors_reply_t *GetAdaptors (vout_window_t *wnd,
283                                                    xcb_connection_t *conn)
284 {
285     xcb_xv_query_adaptors_cookie_t ck;
286
287     ck = xcb_xv_query_adaptors (conn, wnd->handle.xid);
288     return xcb_xv_query_adaptors_reply (conn, ck, NULL);
289 }
290
291 /**
292  * Probe the X server.
293  */
294 static int Open (vlc_object_t *obj)
295 {
296     vout_display_t *vd = (vout_display_t *)obj;
297     vout_display_sys_t *p_sys = malloc (sizeof (*p_sys));
298     if (p_sys == NULL)
299         return VLC_ENOMEM;
300
301     vd->sys = p_sys;
302
303     /* Connect to X */
304     p_sys->conn = Connect (obj);
305     if (p_sys->conn == NULL)
306     {
307         free (p_sys);
308         return VLC_EGENERIC;
309     }
310
311     if (!CheckXVideo (vd, p_sys->conn))
312     {
313         msg_Warn (vd, "Please enable XVideo 2.2 for faster video display");
314         xcb_disconnect (p_sys->conn);
315         free (p_sys);
316         return VLC_EGENERIC;
317     }
318
319     const xcb_screen_t *screen;
320     p_sys->embed = GetWindow (vd, p_sys->conn, &screen, &p_sys->shm);
321     if (p_sys->embed == NULL)
322     {
323         xcb_disconnect (p_sys->conn);
324         free (p_sys);
325         return VLC_EGENERIC;
326     }
327
328     /* */
329     p_sys->att = NULL;
330     p_sys->pool = NULL;
331
332     /* Cache adaptors infos */
333     p_sys->adaptors = GetAdaptors (p_sys->embed, p_sys->conn);
334     if (p_sys->adaptors == NULL)
335         goto error;
336
337     int forced_adaptor = var_CreateGetInteger (obj, "xvideo-adaptor");
338
339     /* */
340     video_format_t fmt = vd->fmt;
341     bool found_adaptor = false;
342
343     /* FIXME: check max image size */
344     xcb_xv_adaptor_info_iterator_t it;
345     for (it = xcb_xv_query_adaptors_info_iterator (p_sys->adaptors);
346          it.rem > 0;
347          xcb_xv_adaptor_info_next (&it))
348     {
349         const xcb_xv_adaptor_info_t *a = it.data;
350
351         if (forced_adaptor != -1 && forced_adaptor != 0)
352         {
353             forced_adaptor--;
354             continue;
355         }
356
357         /* FIXME: Open() should fail if none of the ports are usable to VLC */
358         if (!(a->type & XCB_XV_TYPE_IMAGE_MASK))
359             continue;
360
361         xcb_xv_list_image_formats_reply_t *r;
362         r = xcb_xv_list_image_formats_reply (p_sys->conn,
363             xcb_xv_list_image_formats (p_sys->conn, a->base_id), NULL);
364         if (r == NULL)
365             continue;
366
367         const xcb_xv_image_format_info_t *xfmt;
368
369         /* */
370         const vlc_fourcc_t *chromas, chromas_default[] = {
371             fmt.i_chroma,
372             VLC_CODEC_RGB24,
373             VLC_CODEC_RGB15,
374             VLC_CODEC_YUYV,
375             0
376         };
377         if (vlc_fourcc_IsYUV (fmt.i_chroma))
378             chromas = vlc_fourcc_GetYUVFallback (fmt.i_chroma);
379         else
380             chromas = chromas_default;
381
382         for (size_t i = 0; chromas[i]; i++)
383         {
384             vlc_fourcc_t chroma = chromas[i];
385             xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
386             if (xfmt != NULL)
387             {
388                 fmt.i_chroma = chroma;
389                 goto found_format;
390             }
391         }
392         free (r);
393         continue;
394
395     found_format:
396         /* Grab a port */
397         /* XXX: assume all of an adapter's ports have the same formats */
398         for (unsigned i = 0; i < a->num_ports; i++)
399         {
400              xcb_xv_port_t port = a->base_id + i;
401              xcb_xv_grab_port_reply_t *gr =
402                  xcb_xv_grab_port_reply (p_sys->conn,
403                      xcb_xv_grab_port (p_sys->conn, port,
404                                        XCB_CURRENT_TIME), NULL);
405              uint8_t result = gr ? gr->result : 0xff;
406
407              free (gr);
408              if (result == 0)
409              {
410                  p_sys->port = port;
411                  goto grabbed_port;
412              }
413              msg_Dbg (vd, "cannot grab port %"PRIu32, port);
414         }
415         continue;
416
417     grabbed_port:
418         msg_Dbg (vd, "using port %"PRIu32, p_sys->port);
419
420         p_sys->id = xfmt->id;
421         msg_Dbg (vd, "using image format 0x%"PRIx32, p_sys->id);
422         if (xfmt->type == XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB)
423         {
424             fmt.i_rmask = xfmt->red_mask;
425             fmt.i_gmask = xfmt->green_mask;
426             fmt.i_bmask = xfmt->blue_mask;
427         }
428         else
429         if (xfmt->num_planes == 3
430          && !strcmp ((const char *)xfmt->vcomp_order, "YVU"))
431             fmt.i_chroma = VLC_CODEC_YV12;
432         free (r);
433         found_adaptor = true;
434         break;
435     }
436     if (!found_adaptor)
437     {
438         msg_Err (vd, "no available XVideo adaptor");
439         goto error;
440     }
441
442     /* Create window */
443     {
444         const uint32_t mask =
445             /* XCB_CW_EVENT_MASK */
446             XCB_EVENT_MASK_BUTTON_PRESS | XCB_EVENT_MASK_BUTTON_RELEASE |
447             XCB_EVENT_MASK_POINTER_MOTION;
448         xcb_void_cookie_t c;
449         xcb_window_t window = xcb_generate_id (p_sys->conn);
450
451         c = xcb_create_window_checked (p_sys->conn, screen->root_depth, window,
452                                        p_sys->embed->handle.xid, 0, 0, 1, 1, 0,
453                                        XCB_WINDOW_CLASS_INPUT_OUTPUT,
454                                        screen->root_visual,
455                                        XCB_CW_EVENT_MASK, &mask);
456         if (CheckError (vd, p_sys->conn, "cannot create X11 window", c))
457             goto error;
458         p_sys->window = window;
459         msg_Dbg (vd, "using X11 window %08"PRIx32, p_sys->window);
460         xcb_map_window (p_sys->conn, window);
461
462         vout_display_place_t place;
463
464         vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
465         p_sys->width  = place.width;
466         p_sys->height = place.height;
467
468         /* */
469         const uint32_t values[] = { place.x, place.y, place.width, place.height };
470         xcb_configure_window (p_sys->conn, p_sys->window,
471                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
472                               XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
473                               values);
474     }
475
476     /* Create graphic context */
477     p_sys->gc = xcb_generate_id (p_sys->conn);
478     xcb_create_gc (p_sys->conn, p_sys->gc, p_sys->window, 0, NULL);
479     msg_Dbg (vd, "using X11 graphic context %08"PRIx32, p_sys->gc);
480
481     /* */
482     p_sys->pool = NULL;
483
484     /* */
485     vout_display_info_t info = vd->info;
486     info.has_pictures_invalid = false;
487
488     /* Setup vout_display_t once everything is fine */
489     vd->fmt = fmt;
490     vd->info = info;
491
492     vd->get = Get;
493     vd->prepare = NULL;
494     vd->display = Display;
495     vd->control = Control;
496     vd->manage = Manage;
497
498     /* */
499     unsigned width, height;
500     if (!GetWindowSize (p_sys->embed, p_sys->conn, &width, &height))
501         vout_display_SendEventDisplaySize (vd, width, height);
502     vout_display_SendEventFullscreen (vd, false);
503
504     return VLC_SUCCESS;
505
506 error:
507     Close (obj);
508     return VLC_EGENERIC;
509 }
510
511
512 /**
513  * Disconnect from the X server.
514  */
515 static void Close (vlc_object_t *obj)
516 {
517     vout_display_t *vd = (vout_display_t *)obj;
518     vout_display_sys_t *p_sys = vd->sys;
519
520     if (p_sys->pool)
521     {
522         for (unsigned i = 0; i < MAX_PICTURES; i++)
523         {
524             picture_resource_t *res = &p_sys->resource[i];
525
526             if (!res->p->p_pixels)
527                 break;
528             PictureResourceFree (res, p_sys->conn);
529         }
530         picture_pool_Delete (p_sys->pool);
531     }
532
533     free (p_sys->att);
534     free (p_sys->adaptors);
535     vout_display_DeleteWindow (vd, p_sys->embed);
536     xcb_disconnect (p_sys->conn);
537     free (p_sys);
538 }
539
540 /**
541  * Return a direct buffer
542  */
543 static picture_t *Get (vout_display_t *vd)
544 {
545     vout_display_sys_t *p_sys = vd->sys;
546
547     if (!p_sys->pool)
548     {
549         picture_t *pic = picture_New (vd->fmt.i_chroma,
550                                       p_sys->att->width, p_sys->att->height, 0);
551         if (!pic)
552             return NULL;
553
554         memset (p_sys->resource, 0, sizeof(p_sys->resource));
555
556         const uint32_t *offsets =
557             xcb_xv_query_image_attributes_offsets (p_sys->att);
558         p_sys->data_size = p_sys->att->data_size;
559
560         unsigned count;
561         picture_t *pic_array[MAX_PICTURES];
562         for (count = 0; count < MAX_PICTURES; count++)
563         {
564             picture_resource_t *res = &p_sys->resource[count];
565
566             for (int i = 0; i < pic->i_planes; i++)
567             {
568                 res->p[i].i_lines = pic->p[i].i_lines; /* FIXME seems wrong*/
569                 res->p[i].i_pitch = pic->p[i].i_pitch;
570             }
571             if (PictureResourceAlloc (vd, res, p_sys->att->data_size,
572                                       p_sys->conn, p_sys->shm))
573                 break;
574
575             /* Allocate further planes as specified by XVideo */
576             /* We assume that offsets[0] is zero */
577             for (int i = 1; i < pic->i_planes; i++)
578                 res->p[i].p_pixels = res->p[0].p_pixels + offsets[i];
579             pic_array[count] = picture_NewFromResource (&vd->fmt, res);
580             if (!pic_array[count])
581             {
582                 PictureResourceFree (res, p_sys->conn);
583                 memset (res, 0, sizeof(*res));
584                 break;
585             }
586         }
587         picture_Release (pic);
588
589         if (count == 0)
590             return NULL;
591
592         p_sys->pool = picture_pool_New (count, pic_array);
593         if (!p_sys->pool)
594         {
595             /* TODO release picture resources */
596             return NULL;
597         }
598         /* FIXME should also do it in case of error ? */
599         xcb_flush (p_sys->conn);
600     }
601
602     return picture_pool_Get (p_sys->pool);
603 }
604
605 /**
606  * Sends an image to the X server.
607  */
608 static void Display (vout_display_t *vd, picture_t *pic)
609 {
610     vout_display_sys_t *p_sys = vd->sys;
611     xcb_shm_seg_t segment = pic->p_sys->segment;
612     xcb_void_cookie_t ck;
613
614     if (segment)
615         ck = xcb_xv_shm_put_image_checked (p_sys->conn, p_sys->port,
616                               p_sys->window, p_sys->gc, segment, p_sys->id, 0,
617                    /* Src: */ vd->source.i_x_offset,
618                               vd->source.i_y_offset,
619                               vd->source.i_visible_width,
620                               vd->source.i_visible_height,
621                    /* Dst: */ 0, 0, p_sys->width, p_sys->height,
622                 /* Memory: */ pic->p->i_pitch / pic->p->i_pixel_pitch,
623                               pic->p->i_visible_lines, false);
624     else
625         ck = xcb_xv_put_image_checked (p_sys->conn, p_sys->port, p_sys->window,
626                           p_sys->gc, p_sys->id,
627                           vd->source.i_x_offset,
628                           vd->source.i_y_offset,
629                           vd->source.i_visible_width,
630                           vd->source.i_visible_height,
631                           0, 0, p_sys->width, p_sys->height,
632                           vd->source.i_width, vd->source.i_height,
633                           p_sys->data_size, pic->p->p_pixels);
634
635     /* Wait for reply. See x11.c for rationale. */
636     xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
637     if (e != NULL)
638     {
639         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
640         free (e);
641     }
642
643     picture_Release (pic);
644 }
645
646 static int Control (vout_display_t *vd, int query, va_list ap)
647 {
648     vout_display_sys_t *p_sys = vd->sys;
649
650     switch (query)
651     {
652     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
653     {
654         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
655         return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
656     }
657
658     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
659     case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
660     case VOUT_DISPLAY_CHANGE_ZOOM:
661     case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
662     case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
663     {
664         const vout_display_cfg_t *cfg;
665         const video_format_t *source;
666
667         if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
668          || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
669         {
670             source = (const video_format_t *)va_arg (ap, const video_format_t *);
671             cfg = vd->cfg;
672         }
673         else
674         {
675             source = &vd->source;
676             cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
677         }
678
679         /* */
680         if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
681          && (cfg->display.width  != vd->cfg->display.width
682            ||cfg->display.height != vd->cfg->display.height)
683          && vout_window_SetSize (p_sys->embed,
684                                   cfg->display.width,
685                                   cfg->display.height))
686             return VLC_EGENERIC;
687
688         vout_display_place_t place;
689         vout_display_PlacePicture (&place, source, cfg, false);
690         p_sys->width  = place.width;
691         p_sys->height = place.height;
692
693         /* Move the picture within the window */
694         const uint32_t values[] = { place.x, place.y,
695                                     place.width, place.height, };
696         xcb_configure_window (p_sys->conn, p_sys->window,
697                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
698                             | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
699                               values);
700         xcb_flush (p_sys->conn);
701         return VLC_SUCCESS;
702     }
703     case VOUT_DISPLAY_CHANGE_ON_TOP:
704     {
705         int on_top = (int)va_arg (ap, int);
706         return vout_window_SetOnTop (p_sys->embed, on_top);
707     }
708
709     /* TODO */
710 #if 0
711     /* Hide the mouse. It will be send when
712      * vout_display_t::info.b_hide_mouse is false */
713     VOUT_DISPLAY_HIDE_MOUSE,
714 #endif
715     case VOUT_DISPLAY_RESET_PICTURES:
716         assert(0);
717     default:
718         msg_Err (vd, "Unknown request in XCB vout display");
719         return VLC_EGENERIC;
720     }
721 }
722
723 static void Manage (vout_display_t *vd)
724 {
725     vout_display_sys_t *p_sys = vd->sys;
726
727     ManageEvent (vd, p_sys->conn, p_sys->window);
728 }
729