]> git.sesse.net Git - vlc/blob - modules/video_output/xcb/xvideo.c
194837c548ec804a8ab714a6806f5a2dfeb53cdd
[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 #include <vlc_dialog.h>
39
40 #include "xcb_vlc.h"
41
42 #define ADAPTOR_TEXT N_("XVideo adaptor number")
43 #define ADAPTOR_LONGTEXT N_( \
44     "XVideo hardware adaptor to use. By default, VLC will " \
45     "use the first functional adaptor.")
46
47 #define SHM_TEXT N_("Use shared memory")
48 #define SHM_LONGTEXT N_( \
49     "Use shared memory to communicate between VLC and the X server.")
50
51 static int  Open (vlc_object_t *);
52 static void Close (vlc_object_t *);
53
54 /*
55  * Module descriptor
56  */
57 vlc_module_begin ()
58     set_shortname (N_("XVideo"))
59     set_description (N_("XVideo output (XCB)"))
60     set_category (CAT_VIDEO)
61     set_subcategory (SUBCAT_VIDEO_VOUT)
62     set_capability ("vout display", 155)
63     set_callbacks (Open, Close)
64
65     add_integer ("xvideo-adaptor", -1, NULL,
66                  ADAPTOR_TEXT, ADAPTOR_LONGTEXT, true)
67     add_bool ("x11-shm", true, NULL, SHM_TEXT, SHM_LONGTEXT, true)
68         add_deprecated_alias ("xvideo-shm")
69     add_shortcut ("xcb-xv")
70     add_shortcut ("xv")
71     add_shortcut ("xvideo")
72 vlc_module_end ()
73
74 #define MAX_PICTURES (VOUT_MAX_PICTURES)
75
76 struct vout_display_sys_t
77 {
78     xcb_connection_t *conn;
79     vout_window_t *embed;/* VLC window */
80
81     xcb_cursor_t cursor; /* blank cursor */
82     xcb_window_t window; /* drawable X window */
83     xcb_gcontext_t gc;   /* context to put images */
84     xcb_xv_port_t port;  /* XVideo port */
85     uint32_t id;         /* XVideo format */
86     uint16_t width;      /* display width */
87     uint16_t height;     /* display height */
88     uint32_t data_size;  /* picture byte size (for non-SHM) */
89     bool shm;            /* whether to use MIT-SHM */
90     bool visible;        /* whether it makes sense to draw at all */
91
92     xcb_xv_query_image_attributes_reply_t *att;
93     picture_pool_t *pool; /* picture pool */
94     picture_resource_t resource[MAX_PICTURES];
95 };
96
97 static picture_pool_t *Pool (vout_display_t *, unsigned);
98 static void Display (vout_display_t *, picture_t *);
99 static int Control (vout_display_t *, int, va_list);
100 static void Manage (vout_display_t *);
101
102 /**
103  * Check that the X server supports the XVideo extension.
104  */
105 static bool CheckXVideo (vout_display_t *vd, xcb_connection_t *conn)
106 {
107     xcb_xv_query_extension_reply_t *r;
108     xcb_xv_query_extension_cookie_t ck = xcb_xv_query_extension (conn);
109     bool ok = false;
110
111     /* We need XVideo 2.2 for PutImage */
112     r = xcb_xv_query_extension_reply (conn, ck, NULL);
113     if (r == NULL)
114         msg_Dbg (vd, "XVideo extension not available");
115     else
116     if (r->major != 2)
117         msg_Dbg (vd, "XVideo extension v%"PRIu8".%"PRIu8" unknown",
118                  r->major, r->minor);
119     else
120     if (r->minor < 2)
121         msg_Dbg (vd, "XVideo extension v%"PRIu8".%"PRIu8" too old",
122                  r->major, r->minor);
123     else
124     {
125         msg_Dbg (vd, "using XVideo extension v%"PRIu8".%"PRIu8,
126                  r->major, r->minor);
127         ok = true;
128     }
129     free (r);
130     return ok;
131 }
132
133 static vlc_fourcc_t ParseFormat (vout_display_t *vd,
134                                  const xcb_xv_image_format_info_t *restrict f)
135 {
136     if (f->byte_order != ORDER && f->bpp != 8)
137         return 0; /* Argh! */
138
139     switch (f->type)
140     {
141       case XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB:
142         switch (f->num_planes)
143         {
144           case 1:
145             switch (f->bpp)
146             {
147               case 32:
148                 if (f->depth == 24)
149                     return VLC_CODEC_RGB32;
150                 if (f->depth == 32)
151                     return 0; /* ARGB -> VLC cannot do that currently */
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         /* VLC pads scanline to 16 pixels internally */
256         unsigned width = (fmt->i_width + 15) & ~15;
257         unsigned height = (fmt->i_height + 15) & ~15;
258         xcb_xv_query_image_attributes_reply_t *i;
259         i = xcb_xv_query_image_attributes_reply (conn,
260             xcb_xv_query_image_attributes (conn, port, f->id,
261                                            width, height), NULL);
262         if (i == NULL)
263             continue;
264
265         if (i->width != width || i->height != height)
266         {
267             msg_Warn (vd, "incompatible size %ux%u -> %"PRIu32"x%"PRIu32,
268                       fmt->i_width, fmt->i_height,
269                       i->width, i->height);
270             var_Create (vd->p_libvlc, "xvideo-resolution-error", VLC_VAR_BOOL);
271             if (!var_GetBool (vd->p_libvlc, "xvideo-resolution-error"))
272             {
273                 dialog_FatalWait (vd, _("Video acceleration not available"),
274                     _("Your video output acceleration driver does not support "
275                       "the required resolution: %ux%u pixels. The maximum "
276                       "supported resolution is %"PRIu32"x%"PRIu32".\n"
277                       "Video output acceleration will be disabled. However, "
278                       "rendering videos with overly large resolution "
279                       "may cause severe performance degration."),
280                                   width, height, i->width, i->height);
281                 var_SetBool (vd->p_libvlc, "xvideo-resolution-error", true);
282             }
283             free (i);
284             continue;
285         }
286         *pa = i;
287         return f;
288     }
289     return NULL;
290 }
291
292
293 /**
294  * Probe the X server.
295  */
296 static int Open (vlc_object_t *obj)
297 {
298     vout_display_t *vd = (vout_display_t *)obj;
299     vout_display_sys_t *p_sys = malloc (sizeof (*p_sys));
300
301     if (!var_CreateGetBool (obj, "overlay"))
302         return VLC_EGENERIC;
303     if (p_sys == NULL)
304         return VLC_ENOMEM;
305
306     vd->sys = p_sys;
307
308     /* Connect to X */
309     xcb_connection_t *conn;
310     const xcb_screen_t *screen;
311     uint8_t depth;
312     p_sys->embed = GetWindow (vd, &conn, &screen, &depth);
313     if (p_sys->embed == NULL)
314     {
315         free (p_sys);
316         return VLC_EGENERIC;
317     }
318
319     p_sys->conn = conn;
320     p_sys->att = NULL;
321     p_sys->pool = NULL;
322
323     if (!CheckXVideo (vd, conn))
324     {
325         msg_Warn (vd, "Please enable XVideo 2.2 for faster video display");
326         goto error;
327     }
328
329     p_sys->window = xcb_generate_id (conn);
330
331     /* Cache adaptors infos */
332     xcb_xv_query_adaptors_reply_t *adaptors =
333         xcb_xv_query_adaptors_reply (conn,
334             xcb_xv_query_adaptors (conn, p_sys->embed->handle.xid), NULL);
335     if (adaptors == NULL)
336         goto error;
337
338     int forced_adaptor = var_CreateGetInteger (obj, "xvideo-adaptor");
339
340     /* */
341     video_format_t fmt = vd->fmt;
342     bool found_adaptor = false;
343
344     xcb_xv_adaptor_info_iterator_t it;
345     for (it = xcb_xv_query_adaptors_info_iterator (adaptors);
346          it.rem > 0 && !found_adaptor;
347          xcb_xv_adaptor_info_next (&it))
348     {
349         const xcb_xv_adaptor_info_t *a = it.data;
350         char *name;
351
352         if (forced_adaptor != -1 && forced_adaptor != 0)
353         {
354             forced_adaptor--;
355             continue;
356         }
357
358         if (!(a->type & XCB_XV_TYPE_IMAGE_MASK))
359             continue;
360
361         xcb_xv_list_image_formats_reply_t *r =
362             xcb_xv_list_image_formats_reply (conn,
363                 xcb_xv_list_image_formats (conn, a->base_id), NULL);
364         if (r == NULL)
365             continue;
366
367         /* Look for an image format */
368         const xcb_xv_image_format_info_t *xfmt = NULL;
369         const vlc_fourcc_t *chromas, chromas_default[] = {
370             fmt.i_chroma,
371             VLC_CODEC_RGB32,
372             VLC_CODEC_RGB24,
373             VLC_CODEC_RGB16,
374             VLC_CODEC_RGB15,
375             VLC_CODEC_YUYV,
376             0
377         };
378         if (vlc_fourcc_IsYUV (fmt.i_chroma))
379             chromas = vlc_fourcc_GetYUVFallback (fmt.i_chroma);
380         else
381             chromas = chromas_default;
382
383         vlc_fourcc_t chroma;
384         for (size_t i = 0; chromas[i]; i++)
385         {
386             chroma = chromas[i];
387
388             /* Oink oink! */
389             if ((chroma == VLC_CODEC_I420 || chroma == VLC_CODEC_YV12)
390              && a->name_size >= 4
391              && !memcmp ("OMAP", xcb_xv_adaptor_info_name (a), 4))
392             {
393                 msg_Dbg (vd, "skipping slow I420 format");
394                 continue; /* OMAP framebuffer sucks at YUV 4:2:0 */
395             }
396
397             xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
398             if (xfmt != NULL)
399             {
400                 p_sys->id = xfmt->id;
401                 fmt.i_chroma = chroma;
402                 if (xfmt->type == XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB)
403                 {
404                     fmt.i_rmask = xfmt->red_mask;
405                     fmt.i_gmask = xfmt->green_mask;
406                     fmt.i_bmask = xfmt->blue_mask;
407                 }
408                 break;
409             }
410         }
411         free (r);
412         if (xfmt == NULL) /* No acceptable image formats */
413             continue;
414
415         /* Grab a port */
416         for (unsigned i = 0; i < a->num_ports; i++)
417         {
418              xcb_xv_port_t port = a->base_id + i;
419              xcb_xv_grab_port_reply_t *gr =
420                  xcb_xv_grab_port_reply (conn,
421                      xcb_xv_grab_port (conn, port, XCB_CURRENT_TIME), NULL);
422              uint8_t result = gr ? gr->result : 0xff;
423
424              free (gr);
425              if (result == 0)
426              {
427                  p_sys->port = port;
428                  goto grabbed_port;
429              }
430              msg_Dbg (vd, "cannot grab port %"PRIu32, port);
431         }
432         continue; /* No usable port */
433
434     grabbed_port:
435         /* Found port - initialize selected format */
436         name = strndup (xcb_xv_adaptor_info_name (a), a->name_size);
437         if (name != NULL)
438         {
439             msg_Dbg (vd, "using adaptor %s", name);
440             free (name);
441         }
442         msg_Dbg (vd, "using port %"PRIu32, p_sys->port);
443         msg_Dbg (vd, "using image format 0x%"PRIx32, p_sys->id);
444
445         /* Look for an X11 visual, create a window */
446         xcb_xv_format_t *f = xcb_xv_adaptor_info_formats (a);
447         for (uint_fast16_t i = a->num_formats; i > 0; i--, f++)
448         {
449             if (f->depth != depth)
450                 continue; /* this would fail anyway */
451
452             const uint32_t mask =
453                 /* XCB_CW_EVENT_MASK */
454                 XCB_EVENT_MASK_VISIBILITY_CHANGE;
455             xcb_void_cookie_t c;
456
457             c = xcb_create_window_checked (conn, f->depth, p_sys->window,
458                  p_sys->embed->handle.xid, 0, 0, 1, 1, 0,
459                  XCB_WINDOW_CLASS_INPUT_OUTPUT, f->visual,
460                  XCB_CW_EVENT_MASK, &mask);
461
462             if (!CheckError (vd, conn, "cannot create X11 window", c))
463             {
464                 msg_Dbg (vd, "using X11 visual ID 0x%"PRIx32
465                          " (depth: %"PRIu8")", f->visual, f->depth);
466                 msg_Dbg (vd, "using X11 window 0x%08"PRIx32, p_sys->window);
467                 goto created_window;
468             }
469         }
470         xcb_xv_ungrab_port (conn, p_sys->port, XCB_CURRENT_TIME);
471         continue; /* No workable XVideo format (visual/depth) */
472
473     created_window:
474         found_adaptor = true;
475         break;
476     }
477     free (adaptors);
478     if (!found_adaptor)
479     {
480         msg_Err (vd, "no available XVideo adaptor");
481         goto error;
482     }
483     else
484     {
485         xcb_map_window (conn, p_sys->window);
486
487         vout_display_place_t place;
488
489         vout_display_PlacePicture (&place, &vd->source, vd->cfg, false);
490         p_sys->width  = place.width;
491         p_sys->height = place.height;
492
493         /* */
494         const uint32_t values[] = {
495             place.x, place.y, place.width, place.height };
496         xcb_configure_window (conn, p_sys->window,
497                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y |
498                               XCB_CONFIG_WINDOW_WIDTH |
499                               XCB_CONFIG_WINDOW_HEIGHT,
500                               values);
501     }
502     p_sys->visible = false;
503
504     /* Create graphic context */
505     p_sys->gc = xcb_generate_id (conn);
506     xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
507     msg_Dbg (vd, "using X11 graphic context 0x%08"PRIx32, p_sys->gc);
508
509     /* Create cursor */
510     p_sys->cursor = CreateBlankCursor (conn, screen);
511
512     CheckSHM (obj, conn, &p_sys->shm);
513
514     /* */
515     vout_display_info_t info = vd->info;
516     info.has_pictures_invalid = false;
517
518     /* Setup vout_display_t once everything is fine */
519     vd->fmt = fmt;
520     vd->info = info;
521
522     vd->pool = Pool;
523     vd->prepare = NULL;
524     vd->display = Display;
525     vd->control = Control;
526     vd->manage = Manage;
527
528     /* */
529     vout_display_SendEventFullscreen (vd, false);
530     unsigned width, height;
531     if (!GetWindowSize (p_sys->embed, conn, &width, &height))
532         vout_display_SendEventDisplaySize (vd, width, height, false);
533
534     return VLC_SUCCESS;
535
536 error:
537     Close (obj);
538     return VLC_EGENERIC;
539 }
540
541
542 /**
543  * Disconnect from the X server.
544  */
545 static void Close (vlc_object_t *obj)
546 {
547     vout_display_t *vd = (vout_display_t *)obj;
548     vout_display_sys_t *p_sys = vd->sys;
549
550     if (p_sys->pool)
551     {
552         for (unsigned i = 0; i < MAX_PICTURES; i++)
553         {
554             picture_resource_t *res = &p_sys->resource[i];
555
556             if (!res->p->p_pixels)
557                 break;
558             PictureResourceFree (res, NULL);
559         }
560         picture_pool_Delete (p_sys->pool);
561     }
562
563     /* show the default cursor */
564     xcb_change_window_attributes (p_sys->conn, p_sys->embed->handle.xid, XCB_CW_CURSOR,
565                                   &(uint32_t) { XCB_CURSOR_NONE });
566     xcb_flush (p_sys->conn);
567
568     free (p_sys->att);
569     xcb_disconnect (p_sys->conn);
570     vout_display_DeleteWindow (vd, p_sys->embed);
571     free (p_sys);
572 }
573
574 /**
575  * Return a direct buffer
576  */
577 static picture_pool_t *Pool (vout_display_t *vd, unsigned requested_count)
578 {
579     vout_display_sys_t *p_sys = vd->sys;
580     (void)requested_count;
581
582     if (!p_sys->pool)
583     {
584         picture_t *pic = picture_New (vd->fmt.i_chroma, p_sys->att->width,
585                                       p_sys->att->height, 0, 1);
586         if (!pic)
587             return NULL;
588
589         memset (p_sys->resource, 0, sizeof(p_sys->resource));
590
591         const uint32_t *offsets =
592             xcb_xv_query_image_attributes_offsets (p_sys->att);
593         p_sys->data_size = p_sys->att->data_size;
594
595         unsigned count;
596         picture_t *pic_array[MAX_PICTURES];
597         for (count = 0; count < MAX_PICTURES; count++)
598         {
599             picture_resource_t *res = &p_sys->resource[count];
600
601             for (int i = 0; i < pic->i_planes; i++)
602             {
603                 res->p[i].i_lines = pic->p[i].i_lines; /* FIXME seems wrong*/
604                 res->p[i].i_pitch = pic->p[i].i_pitch;
605             }
606             if (PictureResourceAlloc (vd, res, p_sys->att->data_size,
607                                       p_sys->conn, p_sys->shm))
608                 break;
609
610             /* Allocate further planes as specified by XVideo */
611             /* We assume that offsets[0] is zero */
612             for (int i = 1; i < pic->i_planes; i++)
613                 res->p[i].p_pixels = res->p[0].p_pixels + offsets[i];
614             if (vd->fmt.i_chroma == VLC_CODEC_YV12)
615             {   /* YVU: swap U and V planes */
616                 uint8_t *buf = res->p[2].p_pixels;
617                 res->p[2].p_pixels = res->p[1].p_pixels;
618                 res->p[1].p_pixels = buf;
619             }
620
621             pic_array[count] = picture_NewFromResource (&vd->fmt, res);
622             if (!pic_array[count])
623             {
624                 PictureResourceFree (res, p_sys->conn);
625                 memset (res, 0, sizeof(*res));
626                 break;
627             }
628         }
629         picture_Release (pic);
630
631         if (count == 0)
632             return NULL;
633
634         p_sys->pool = picture_pool_New (count, pic_array);
635         /* TODO release picture resources if NULL */
636         xcb_flush (p_sys->conn);
637     }
638
639     return p_sys->pool;
640 }
641
642 /**
643  * Sends an image to the X server.
644  */
645 static void Display (vout_display_t *vd, picture_t *pic)
646 {
647     vout_display_sys_t *p_sys = vd->sys;
648     xcb_shm_seg_t segment = pic->p_sys->segment;
649     xcb_void_cookie_t ck;
650
651     if (!p_sys->visible)
652         goto out;
653     if (segment)
654         ck = xcb_xv_shm_put_image_checked (p_sys->conn, p_sys->port,
655                               p_sys->window, p_sys->gc, segment, p_sys->id, 0,
656                    /* Src: */ vd->source.i_x_offset,
657                               vd->source.i_y_offset,
658                               vd->source.i_visible_width,
659                               vd->source.i_visible_height,
660                    /* Dst: */ 0, 0, p_sys->width, p_sys->height,
661                 /* Memory: */ pic->p->i_pitch / pic->p->i_pixel_pitch,
662                               pic->p->i_lines, false);
663     else
664         ck = xcb_xv_put_image_checked (p_sys->conn, p_sys->port, p_sys->window,
665                           p_sys->gc, p_sys->id,
666                           vd->source.i_x_offset,
667                           vd->source.i_y_offset,
668                           vd->source.i_visible_width,
669                           vd->source.i_visible_height,
670                           0, 0, p_sys->width, p_sys->height,
671                           pic->p->i_pitch / pic->p->i_pixel_pitch,
672                           pic->p->i_lines,
673                           p_sys->data_size, pic->p->p_pixels);
674
675     /* Wait for reply. See x11.c for rationale. */
676     xcb_generic_error_t *e = xcb_request_check (p_sys->conn, ck);
677     if (e != NULL)
678     {
679         msg_Dbg (vd, "%s: X11 error %d", "cannot put image", e->error_code);
680         free (e);
681     }
682 out:
683     picture_Release (pic);
684 }
685
686 static int Control (vout_display_t *vd, int query, va_list ap)
687 {
688     vout_display_sys_t *p_sys = vd->sys;
689
690     switch (query)
691     {
692     case VOUT_DISPLAY_CHANGE_FULLSCREEN:
693     {
694         const vout_display_cfg_t *c = va_arg (ap, const vout_display_cfg_t *);
695         return vout_window_SetFullScreen (p_sys->embed, c->is_fullscreen);
696     }
697
698     case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE:
699     case VOUT_DISPLAY_CHANGE_DISPLAY_FILLED:
700     case VOUT_DISPLAY_CHANGE_ZOOM:
701     case VOUT_DISPLAY_CHANGE_SOURCE_ASPECT:
702     case VOUT_DISPLAY_CHANGE_SOURCE_CROP:
703     {
704         const vout_display_cfg_t *cfg;
705         const video_format_t *source;
706         bool is_forced = false;
707
708         if (query == VOUT_DISPLAY_CHANGE_SOURCE_ASPECT
709          || query == VOUT_DISPLAY_CHANGE_SOURCE_CROP)
710         {
711             source = (const video_format_t *)va_arg (ap, const video_format_t *);
712             cfg = vd->cfg;
713         }
714         else
715         {
716             source = &vd->source;
717             cfg = (const vout_display_cfg_t*)va_arg (ap, const vout_display_cfg_t *);
718             if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE)
719                 is_forced = (bool)va_arg (ap, int);
720         }
721
722         /* */
723         if (query == VOUT_DISPLAY_CHANGE_DISPLAY_SIZE
724          && is_forced
725          && (cfg->display.width  != vd->cfg->display.width
726            ||cfg->display.height != vd->cfg->display.height)
727          && vout_window_SetSize (p_sys->embed,
728                                   cfg->display.width,
729                                   cfg->display.height))
730             return VLC_EGENERIC;
731
732         vout_display_place_t place;
733         vout_display_PlacePicture (&place, source, cfg, false);
734         p_sys->width  = place.width;
735         p_sys->height = place.height;
736
737         /* Move the picture within the window */
738         const uint32_t values[] = { place.x, place.y,
739                                     place.width, place.height, };
740         xcb_configure_window (p_sys->conn, p_sys->window,
741                               XCB_CONFIG_WINDOW_X | XCB_CONFIG_WINDOW_Y
742                             | XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT,
743                               values);
744         xcb_flush (p_sys->conn);
745         return VLC_SUCCESS;
746     }
747     case VOUT_DISPLAY_CHANGE_WINDOW_STATE:
748     {
749         unsigned state = va_arg (ap, unsigned);
750         return vout_window_SetState (p_sys->embed, state);
751     }
752
753     /* Hide the mouse. It will be send when
754      * vout_display_t::info.b_hide_mouse is false */
755     case VOUT_DISPLAY_HIDE_MOUSE:
756         xcb_change_window_attributes (p_sys->conn, p_sys->embed->handle.xid,
757                                   XCB_CW_CURSOR, &(uint32_t){ p_sys->cursor });
758         return VLC_SUCCESS;
759     case VOUT_DISPLAY_RESET_PICTURES:
760         assert(0);
761     default:
762         msg_Err (vd, "Unknown request in XCB vout display");
763         return VLC_EGENERIC;
764     }
765 }
766
767 static void Manage (vout_display_t *vd)
768 {
769     vout_display_sys_t *p_sys = vd->sys;
770
771     ManageEvent (vd, p_sys->conn, &p_sys->visible);
772 }
773