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