]> git.sesse.net Git - vlc/blob - modules/video_output/x11/xcommon.c
backport [13049] and [13059]
[vlc] / modules / video_output / x11 / xcommon.c
1 /*****************************************************************************
2  * xcommon.c: Functions common to the X11 and XVideo plugins
3  *****************************************************************************
4  * Copyright (C) 1998-2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Sam Hocevar <sam@zoy.org>
9  *          David Kennedy <dkennedy@tinytoad.com>
10  *          Gildas Bazin <gbazin@videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
25  *****************************************************************************/
26
27 /*****************************************************************************
28  * Preamble
29  *****************************************************************************/
30 #include <errno.h>                                                 /* ENOMEM */
31 #include <stdlib.h>                                                /* free() */
32 #include <string.h>                                            /* strerror() */
33
34 #include <vlc/vlc.h>
35 #include <vlc/intf.h>
36 #include <vlc/vout.h>
37 #include <vlc_keys.h>
38
39 #ifdef HAVE_MACHINE_PARAM_H
40     /* BSD */
41 #   include <machine/param.h>
42 #   include <sys/types.h>                                  /* typedef ushort */
43 #   include <sys/ipc.h>
44 #endif
45
46 #ifndef WIN32
47 #   include <netinet/in.h>                            /* BSD: struct in_addr */
48 #endif
49
50 #ifdef HAVE_SYS_SHM_H
51 #   include <sys/shm.h>                                /* shmget(), shmctl() */
52 #endif
53
54 #include <X11/Xlib.h>
55 #include <X11/Xproto.h>
56 #include <X11/Xmd.h>
57 #include <X11/Xutil.h>
58 #include <X11/keysym.h>
59 #ifdef HAVE_SYS_SHM_H
60 #   include <X11/extensions/XShm.h>
61 #endif
62 #ifdef DPMSINFO_IN_DPMS_H
63 #   include <X11/extensions/dpms.h>
64 #endif
65
66 #ifdef MODULE_NAME_IS_xvideo
67 #   include <X11/extensions/Xv.h>
68 #   include <X11/extensions/Xvlib.h>
69 #endif
70
71 #ifdef MODULE_NAME_IS_glx
72 #   include <GL/glx.h>
73 #endif
74
75 #ifdef HAVE_XINERAMA
76 #   include <X11/extensions/Xinerama.h>
77 #endif
78
79 #include "xcommon.h"
80
81 /*****************************************************************************
82  * Local prototypes
83  *****************************************************************************/
84 int  E_(Activate)   ( vlc_object_t * );
85 void E_(Deactivate) ( vlc_object_t * );
86
87 static int  InitVideo      ( vout_thread_t * );
88 static void EndVideo       ( vout_thread_t * );
89 static void DisplayVideo   ( vout_thread_t *, picture_t * );
90 static int  ManageVideo    ( vout_thread_t * );
91 static int  Control        ( vout_thread_t *, int, va_list );
92
93 static int  InitDisplay    ( vout_thread_t * );
94
95 static int  CreateWindow   ( vout_thread_t *, x11_window_t * );
96 static void DestroyWindow  ( vout_thread_t *, x11_window_t * );
97
98 static int  NewPicture     ( vout_thread_t *, picture_t * );
99 static void FreePicture    ( vout_thread_t *, picture_t * );
100
101 static IMAGE_TYPE *CreateImage    ( vout_thread_t *,
102                                     Display *, EXTRA_ARGS, int, int );
103 #ifdef HAVE_SYS_SHM_H
104 static IMAGE_TYPE *CreateShmImage ( vout_thread_t *,
105                                     Display *, EXTRA_ARGS_SHM, int, int );
106 static vlc_bool_t b_shm = VLC_TRUE;
107 #endif
108
109 static void ToggleFullScreen      ( vout_thread_t * );
110
111 static void EnableXScreenSaver    ( vout_thread_t * );
112 static void DisableXScreenSaver   ( vout_thread_t * );
113
114 static void CreateCursor   ( vout_thread_t * );
115 static void DestroyCursor  ( vout_thread_t * );
116 static void ToggleCursor   ( vout_thread_t * );
117
118 #ifdef MODULE_NAME_IS_xvideo
119 static int  XVideoGetPort    ( vout_thread_t *, vlc_fourcc_t, vlc_fourcc_t * );
120 static void XVideoReleasePort( vout_thread_t *, int );
121 #endif
122
123 #ifdef MODULE_NAME_IS_x11
124 static void SetPalette     ( vout_thread_t *,
125                              uint16_t *, uint16_t *, uint16_t * );
126 #endif
127
128 static void TestNetWMSupport( vout_thread_t * );
129 static int ConvertKey( int );
130
131 static int WindowOnTop( vout_thread_t *, vlc_bool_t );
132
133 static int X11ErrorHandler( Display *, XErrorEvent * );
134
135 /*****************************************************************************
136  * Activate: allocate X11 video thread output method
137  *****************************************************************************
138  * This function allocate and initialize a X11 vout method. It uses some of the
139  * vout properties to choose the window size, and change them according to the
140  * actual properties of the display.
141  *****************************************************************************/
142 int E_(Activate) ( vlc_object_t *p_this )
143 {
144     vout_thread_t *p_vout = (vout_thread_t *)p_this;
145     char *        psz_display;
146     vlc_value_t   val;
147
148 #ifdef MODULE_NAME_IS_xvideo
149     char *       psz_chroma;
150     vlc_fourcc_t i_chroma = 0;
151     vlc_bool_t   b_chroma = 0;
152 #endif
153
154     p_vout->pf_init = InitVideo;
155     p_vout->pf_end = EndVideo;
156     p_vout->pf_manage = ManageVideo;
157     p_vout->pf_render = NULL;
158     p_vout->pf_display = DisplayVideo;
159     p_vout->pf_control = Control;
160
161     /* Allocate structure */
162     p_vout->p_sys = malloc( sizeof( vout_sys_t ) );
163     if( p_vout->p_sys == NULL )
164     {
165         msg_Err( p_vout, "out of memory" );
166         return VLC_ENOMEM;
167     }
168
169     vlc_mutex_init( p_vout, &p_vout->p_sys->lock );
170
171     /* Open display, using the "display" config variable or the DISPLAY
172      * environment variable */
173     psz_display = config_GetPsz( p_vout, MODULE_STRING "-display" );
174
175     p_vout->p_sys->p_display = XOpenDisplay( psz_display );
176
177     if( p_vout->p_sys->p_display == NULL )                          /* error */
178     {
179         msg_Err( p_vout, "cannot open display %s",
180                          XDisplayName( psz_display ) );
181         free( p_vout->p_sys );
182         if( psz_display ) free( psz_display );
183         return VLC_EGENERIC;
184     }
185     if( psz_display ) free( psz_display );
186
187     /* Replace error handler so we can intercept some non-fatal errors */
188     XSetErrorHandler( X11ErrorHandler );
189
190     /* Get a screen ID matching the XOpenDisplay return value */
191     p_vout->p_sys->i_screen = DefaultScreen( p_vout->p_sys->p_display );
192
193 #ifdef MODULE_NAME_IS_xvideo
194     psz_chroma = config_GetPsz( p_vout, "xvideo-chroma" );
195     if( psz_chroma )
196     {
197         if( strlen( psz_chroma ) >= 4 )
198         {
199             /* Do not use direct assignment because we are not sure of the
200              * alignment. */
201             memcpy(&i_chroma, psz_chroma, 4);
202             b_chroma = 1;
203         }
204
205         free( psz_chroma );
206     }
207
208     if( b_chroma )
209     {
210         msg_Dbg( p_vout, "forcing chroma 0x%.8x (%4.4s)",
211                  i_chroma, (char*)&i_chroma );
212     }
213     else
214     {
215         i_chroma = p_vout->render.i_chroma;
216     }
217
218     /* Check that we have access to an XVideo port providing this chroma */
219     p_vout->p_sys->i_xvport = XVideoGetPort( p_vout, VLC2X11_FOURCC(i_chroma),
220                                              &p_vout->output.i_chroma );
221     if( p_vout->p_sys->i_xvport < 0 )
222     {
223         /* If a specific chroma format was requested, then we don't try to
224          * be cleverer than the user. He knew pretty well what he wanted. */
225         if( b_chroma )
226         {
227             XCloseDisplay( p_vout->p_sys->p_display );
228             free( p_vout->p_sys );
229             return VLC_EGENERIC;
230         }
231
232         /* It failed, but it's not completely lost ! We try to open an
233          * XVideo port for an YUY2 picture. We'll need to do an YUV
234          * conversion, but at least it has got scaling. */
235         p_vout->p_sys->i_xvport =
236                         XVideoGetPort( p_vout, X11_FOURCC('Y','U','Y','2'),
237                                                &p_vout->output.i_chroma );
238         if( p_vout->p_sys->i_xvport < 0 )
239         {
240             /* It failed, but it's not completely lost ! We try to open an
241              * XVideo port for a simple 16bpp RGB picture. We'll need to do
242              * an YUV conversion, but at least it has got scaling. */
243             p_vout->p_sys->i_xvport =
244                             XVideoGetPort( p_vout, X11_FOURCC('R','V','1','6'),
245                                                    &p_vout->output.i_chroma );
246             if( p_vout->p_sys->i_xvport < 0 )
247             {
248                 XCloseDisplay( p_vout->p_sys->p_display );
249                 free( p_vout->p_sys );
250                 return VLC_EGENERIC;
251             }
252         }
253     }
254     p_vout->output.i_chroma = X112VLC_FOURCC(p_vout->output.i_chroma);
255 #endif
256
257     /* Create blank cursor (for mouse cursor autohiding) */
258     p_vout->p_sys->i_time_mouse_last_moved = mdate();
259     p_vout->p_sys->b_mouse_pointer_visible = 1;
260     CreateCursor( p_vout );
261
262     /* Set main window's size */
263     p_vout->p_sys->original_window.i_width = p_vout->i_window_width;
264     p_vout->p_sys->original_window.i_height = p_vout->i_window_height;
265     var_Create( p_vout, "video-title", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
266     /* Spawn base window - this window will include the video output window,
267      * but also command buttons, subtitles and other indicators */
268     if( CreateWindow( p_vout, &p_vout->p_sys->original_window ) )
269     {
270         msg_Err( p_vout, "cannot create X11 window" );
271         DestroyCursor( p_vout );
272         XCloseDisplay( p_vout->p_sys->p_display );
273         free( p_vout->p_sys );
274         return VLC_EGENERIC;
275     }
276
277     /* Open and initialize device. */
278     if( InitDisplay( p_vout ) )
279     {
280         msg_Err( p_vout, "cannot initialize X11 display" );
281         DestroyCursor( p_vout );
282         DestroyWindow( p_vout, &p_vout->p_sys->original_window );
283         XCloseDisplay( p_vout->p_sys->p_display );
284         free( p_vout->p_sys );
285         return VLC_EGENERIC;
286     }
287
288     /* Disable screen saver */
289     DisableXScreenSaver( p_vout );
290
291     /* Misc init */
292     p_vout->p_sys->b_altfullscreen = 0;
293     p_vout->p_sys->i_time_button_last_pressed = 0;
294
295     TestNetWMSupport( p_vout );
296
297     /* Variable to indicate if the window should be on top of others */
298     /* Trigger a callback right now */
299     var_Get( p_vout, "video-on-top", &val );
300     var_Set( p_vout, "video-on-top", val );
301
302     return VLC_SUCCESS;
303 }
304
305 /*****************************************************************************
306  * Deactivate: destroy X11 video thread output method
307  *****************************************************************************
308  * Terminate an output method created by Open
309  *****************************************************************************/
310 void E_(Deactivate) ( vlc_object_t *p_this )
311 {
312     vout_thread_t *p_vout = (vout_thread_t *)p_this;
313
314     /* If the fullscreen window is still open, close it */
315     if( p_vout->b_fullscreen )
316     {
317         ToggleFullScreen( p_vout );
318     }
319
320     /* Restore cursor if it was blanked */
321     if( !p_vout->p_sys->b_mouse_pointer_visible )
322     {
323         ToggleCursor( p_vout );
324     }
325
326 #ifdef MODULE_NAME_IS_x11
327     /* Destroy colormap */
328     if( XDefaultDepth(p_vout->p_sys->p_display, p_vout->p_sys->i_screen) == 8 )
329     {
330         XFreeColormap( p_vout->p_sys->p_display, p_vout->p_sys->colormap );
331     }
332 #elif defined(MODULE_NAME_IS_xvideo)
333     XVideoReleasePort( p_vout, p_vout->p_sys->i_xvport );
334 #endif
335
336     DestroyCursor( p_vout );
337     EnableXScreenSaver( p_vout );
338     DestroyWindow( p_vout, &p_vout->p_sys->original_window );
339
340     XCloseDisplay( p_vout->p_sys->p_display );
341
342     /* Destroy structure */
343     vlc_mutex_destroy( &p_vout->p_sys->lock );
344     free( p_vout->p_sys );
345 }
346
347 /*****************************************************************************
348  * InitVideo: initialize X11 video thread output method
349  *****************************************************************************
350  * This function create the XImages needed by the output thread. It is called
351  * at the beginning of the thread, but also each time the window is resized.
352  *****************************************************************************/
353 static int InitVideo( vout_thread_t *p_vout )
354 {
355     int i_index;
356     picture_t *p_pic;
357
358     I_OUTPUTPICTURES = 0;
359
360 #ifdef MODULE_NAME_IS_xvideo
361     /* Initialize the output structure; we already found an XVideo port,
362      * and the corresponding chroma we will be using. Since we can
363      * arbitrary scale, stick to the coordinates and aspect. */
364     p_vout->output.i_width  = p_vout->render.i_width;
365     p_vout->output.i_height = p_vout->render.i_height;
366     p_vout->output.i_aspect = p_vout->render.i_aspect;
367
368     p_vout->fmt_out = p_vout->fmt_in;
369     p_vout->fmt_out.i_chroma = p_vout->output.i_chroma;
370
371     switch( p_vout->output.i_chroma )
372     {
373         case VLC_FOURCC('R','V','1','5'):
374             p_vout->output.i_rmask = 0x001f;
375             p_vout->output.i_gmask = 0x07e0;
376             p_vout->output.i_bmask = 0xf800;
377             break;
378         case VLC_FOURCC('R','V','1','6'):
379             p_vout->output.i_rmask = 0x001f;
380             p_vout->output.i_gmask = 0x03e0;
381             p_vout->output.i_bmask = 0x7c00;
382             break;
383     }
384
385 #elif defined(MODULE_NAME_IS_x11)
386     /* Initialize the output structure: RGB with square pixels, whatever
387      * the input format is, since it's the only format we know */
388     switch( p_vout->p_sys->i_screen_depth )
389     {
390         case 8: /* FIXME: set the palette */
391             p_vout->output.i_chroma = VLC_FOURCC('R','G','B','2'); break;
392         case 15:
393             p_vout->output.i_chroma = VLC_FOURCC('R','V','1','5'); break;
394         case 16:
395             p_vout->output.i_chroma = VLC_FOURCC('R','V','1','6'); break;
396         case 24:
397         case 32:
398             p_vout->output.i_chroma = VLC_FOURCC('R','V','3','2'); break;
399         default:
400             msg_Err( p_vout, "unknown screen depth %i",
401                      p_vout->p_sys->i_screen_depth );
402             return VLC_SUCCESS;
403     }
404
405     vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
406                        p_vout->p_sys->p_win->i_height,
407                        &i_index, &i_index,
408                        &p_vout->fmt_out.i_visible_width,
409                        &p_vout->fmt_out.i_visible_height );
410
411     p_vout->fmt_out.i_chroma = p_vout->output.i_chroma;
412
413     p_vout->output.i_width = p_vout->fmt_out.i_width =
414         p_vout->fmt_out.i_visible_width * p_vout->fmt_in.i_width /
415         p_vout->fmt_in.i_visible_width;
416     p_vout->output.i_height = p_vout->fmt_out.i_height =
417         p_vout->fmt_out.i_visible_height * p_vout->fmt_in.i_height /
418         p_vout->fmt_in.i_visible_height;
419     p_vout->fmt_out.i_x_offset =
420         p_vout->fmt_out.i_visible_width * p_vout->fmt_in.i_x_offset /
421         p_vout->fmt_in.i_visible_width;
422     p_vout->fmt_out.i_y_offset =
423         p_vout->fmt_out.i_visible_height * p_vout->fmt_in.i_y_offset /
424         p_vout->fmt_in.i_visible_height;
425
426     p_vout->fmt_out.i_sar_num = p_vout->fmt_out.i_sar_den = 1;
427     p_vout->output.i_aspect = p_vout->fmt_out.i_aspect =
428         p_vout->fmt_out.i_width * VOUT_ASPECT_FACTOR /p_vout->fmt_out.i_height;
429
430     msg_Dbg( p_vout, "x11 image size %ix%i (%i,%i,%ix%i)",
431              p_vout->fmt_out.i_width, p_vout->fmt_out.i_height,
432              p_vout->fmt_out.i_x_offset, p_vout->fmt_out.i_y_offset,
433              p_vout->fmt_out.i_visible_width,
434              p_vout->fmt_out.i_visible_height );
435 #endif
436
437     /* Try to initialize up to MAX_DIRECTBUFFERS direct buffers */
438     while( I_OUTPUTPICTURES < MAX_DIRECTBUFFERS )
439     {
440         p_pic = NULL;
441
442         /* Find an empty picture slot */
443         for( i_index = 0 ; i_index < VOUT_MAX_PICTURES ; i_index++ )
444         {
445           if( p_vout->p_picture[ i_index ].i_status == FREE_PICTURE )
446             {
447                 p_pic = p_vout->p_picture + i_index;
448                 break;
449             }
450         }
451
452         /* Allocate the picture */
453         if( p_pic == NULL || NewPicture( p_vout, p_pic ) )
454         {
455             break;
456         }
457
458         p_pic->i_status = DESTROYED_PICTURE;
459         p_pic->i_type   = DIRECT_PICTURE;
460
461         PP_OUTPUTPICTURE[ I_OUTPUTPICTURES ] = p_pic;
462
463         I_OUTPUTPICTURES++;
464     }
465
466     if( p_vout->output.i_chroma == VLC_FOURCC('Y','V','1','2') )
467     {
468         /* U and V inverted compared to I420
469          * Fixme: this should be handled by the vout core */
470         p_vout->output.i_chroma = VLC_FOURCC('I','4','2','0');
471         p_vout->fmt_out.i_chroma = VLC_FOURCC('I','4','2','0');
472     }
473
474     return VLC_SUCCESS;
475 }
476
477 /*****************************************************************************
478  * DisplayVideo: displays previously rendered output
479  *****************************************************************************
480  * This function sends the currently rendered image to X11 server.
481  * (The Xv extension takes care of "double-buffering".)
482  *****************************************************************************/
483 static void DisplayVideo( vout_thread_t *p_vout, picture_t *p_pic )
484 {
485     int i_width, i_height, i_x, i_y;
486
487     vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
488                        p_vout->p_sys->p_win->i_height,
489                        &i_x, &i_y, &i_width, &i_height );
490
491     vlc_mutex_lock( &p_vout->p_sys->lock );
492
493 #ifdef HAVE_SYS_SHM_H
494     if( p_vout->p_sys->b_shm )
495     {
496         /* Display rendered image using shared memory extension */
497 #   ifdef MODULE_NAME_IS_xvideo
498         XvShmPutImage( p_vout->p_sys->p_display, p_vout->p_sys->i_xvport,
499                        p_vout->p_sys->p_win->video_window,
500                        p_vout->p_sys->p_win->gc, p_pic->p_sys->p_image,
501                        p_vout->fmt_out.i_x_offset,
502                        p_vout->fmt_out.i_y_offset,
503                        p_vout->fmt_out.i_visible_width,
504                        p_vout->fmt_out.i_visible_height,
505                        0 /*dest_x*/, 0 /*dest_y*/, i_width, i_height,
506                        False /* Don't put True here or you'll waste your CPU */ );
507 #   else
508         XShmPutImage( p_vout->p_sys->p_display,
509                       p_vout->p_sys->p_win->video_window,
510                       p_vout->p_sys->p_win->gc, p_pic->p_sys->p_image,
511                       p_vout->fmt_out.i_x_offset,
512                       p_vout->fmt_out.i_y_offset,
513                       0 /*dest_x*/, 0 /*dest_y*/,
514                       p_vout->fmt_out.i_visible_width,
515                       p_vout->fmt_out.i_visible_height,
516                       False /* Don't put True here ! */ );
517 #   endif
518     }
519     else
520 #endif /* HAVE_SYS_SHM_H */
521     {
522         /* Use standard XPutImage -- this is gonna be slow ! */
523 #ifdef MODULE_NAME_IS_xvideo
524         XvPutImage( p_vout->p_sys->p_display, p_vout->p_sys->i_xvport,
525                     p_vout->p_sys->p_win->video_window,
526                     p_vout->p_sys->p_win->gc, p_pic->p_sys->p_image,
527                     p_vout->fmt_out.i_x_offset,
528                     p_vout->fmt_out.i_y_offset,
529                     p_vout->fmt_out.i_visible_width,
530                     p_vout->fmt_out.i_visible_height,
531                     0 /*dest_x*/, 0 /*dest_y*/, i_width, i_height );
532 #else
533         XPutImage( p_vout->p_sys->p_display,
534                    p_vout->p_sys->p_win->video_window,
535                    p_vout->p_sys->p_win->gc, p_pic->p_sys->p_image,
536                    p_vout->fmt_out.i_x_offset,
537                    p_vout->fmt_out.i_y_offset,
538                    0 /*dest_x*/, 0 /*dest_y*/,
539                    p_vout->fmt_out.i_visible_width,
540                    p_vout->fmt_out.i_visible_height );
541 #endif
542     }
543
544     /* Make sure the command is sent now - do NOT use XFlush !*/
545     XSync( p_vout->p_sys->p_display, False );
546
547     vlc_mutex_unlock( &p_vout->p_sys->lock );
548 }
549
550 /*****************************************************************************
551  * ManageVideo: handle X11 events
552  *****************************************************************************
553  * This function should be called regularly by video output thread. It manages
554  * X11 events and allows window resizing. It returns a non null value on
555  * error.
556  *****************************************************************************/
557 static int ManageVideo( vout_thread_t *p_vout )
558 {
559     XEvent      xevent;                                         /* X11 event */
560     vlc_value_t val;
561
562     vlc_mutex_lock( &p_vout->p_sys->lock );
563
564     /* Handle events from the owner window */
565     if( p_vout->p_sys->p_win->owner_window )
566     {
567         while( XCheckWindowEvent( p_vout->p_sys->p_display,
568                                   p_vout->p_sys->p_win->owner_window,
569                                   StructureNotifyMask, &xevent ) == True )
570         {
571             /* ConfigureNotify event: prepare  */
572             if( xevent.type == ConfigureNotify )
573             {
574                 /* Update dimensions */
575                 XResizeWindow( p_vout->p_sys->p_display,
576                                p_vout->p_sys->p_win->base_window,
577                                xevent.xconfigure.width,
578                                xevent.xconfigure.height );
579             }
580         }
581     }
582
583     /* Handle X11 events: ConfigureNotify events are parsed to know if the
584      * output window's size changed, MapNotify and UnmapNotify to know if the
585      * window is mapped (and if the display is useful), and ClientMessages
586      * to intercept window destruction requests */
587
588     while( XCheckWindowEvent( p_vout->p_sys->p_display,
589                               p_vout->p_sys->p_win->base_window,
590                               StructureNotifyMask | KeyPressMask |
591                               ButtonPressMask | ButtonReleaseMask |
592                               PointerMotionMask | Button1MotionMask , &xevent )
593            == True )
594     {
595         /* ConfigureNotify event: prepare  */
596         if( xevent.type == ConfigureNotify )
597         {
598             if( (unsigned int)xevent.xconfigure.width
599                    != p_vout->p_sys->p_win->i_width
600               || (unsigned int)xevent.xconfigure.height
601                     != p_vout->p_sys->p_win->i_height )
602             {
603                 /* Update dimensions */
604                 p_vout->i_changes |= VOUT_SIZE_CHANGE;
605                 p_vout->p_sys->p_win->i_width = xevent.xconfigure.width;
606                 p_vout->p_sys->p_win->i_height = xevent.xconfigure.height;
607             }
608         }
609         /* Keyboard event */
610         else if( xevent.type == KeyPress )
611         {
612             unsigned int state = xevent.xkey.state;
613             KeySym x_key_symbol;
614             char i_key;                                   /* ISO Latin-1 key */
615
616             /* We may have keys like F1 trough F12, ESC ... */
617             x_key_symbol = XKeycodeToKeysym( p_vout->p_sys->p_display,
618                                              xevent.xkey.keycode, 0 );
619             val.i_int = ConvertKey( (int)x_key_symbol );
620
621             xevent.xkey.state &= ~ShiftMask;
622             xevent.xkey.state &= ~ControlMask;
623             xevent.xkey.state &= ~Mod1Mask;
624
625             if( !val.i_int &&
626                 XLookupString( &xevent.xkey, &i_key, 1, NULL, NULL ) )
627             {
628                 /* "Normal Keys"
629                  * The reason why I use this instead of XK_0 is that
630                  * with XLookupString, we don't have to care about
631                  * keymaps. */
632                 val.i_int = i_key;
633             }
634
635             if( val.i_int )
636             {
637                 if( state & ShiftMask )
638                 {
639                     val.i_int |= KEY_MODIFIER_SHIFT;
640                 }
641                 if( state & ControlMask )
642                 {
643                     val.i_int |= KEY_MODIFIER_CTRL;
644                 }
645                 if( state & Mod1Mask )
646                 {
647                     val.i_int |= KEY_MODIFIER_ALT;
648                 }
649                 var_Set( p_vout->p_vlc, "key-pressed", val );
650             }
651         }
652         /* Mouse click */
653         else if( xevent.type == ButtonPress )
654         {
655             switch( ((XButtonEvent *)&xevent)->button )
656             {
657                 case Button1:
658                     var_Get( p_vout, "mouse-button-down", &val );
659                     val.i_int |= 1;
660                     var_Set( p_vout, "mouse-button-down", val );
661
662                     /* detect double-clicks */
663                     if( ( ((XButtonEvent *)&xevent)->time -
664                           p_vout->p_sys->i_time_button_last_pressed ) < 300 )
665                     {
666                         p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
667                     }
668
669                     p_vout->p_sys->i_time_button_last_pressed =
670                         ((XButtonEvent *)&xevent)->time;
671                     break;
672                 case Button2:
673                     var_Get( p_vout, "mouse-button-down", &val );
674                     val.i_int |= 2;
675                     var_Set( p_vout, "mouse-button-down", val );
676                     break;
677
678                 case Button3:
679                     var_Get( p_vout, "mouse-button-down", &val );
680                     val.i_int |= 4;
681                     var_Set( p_vout, "mouse-button-down", val );
682                     break;
683
684                 case Button4:
685                     var_Get( p_vout, "mouse-button-down", &val );
686                     val.i_int |= 8;
687                     var_Set( p_vout, "mouse-button-down", val );
688                     break;
689
690                 case Button5:
691                     var_Get( p_vout, "mouse-button-down", &val );
692                     val.i_int |= 16;
693                     var_Set( p_vout, "mouse-button-down", val );
694                     break;
695             }
696         }
697         /* Mouse release */
698         else if( xevent.type == ButtonRelease )
699         {
700             switch( ((XButtonEvent *)&xevent)->button )
701             {
702                 case Button1:
703                     var_Get( p_vout, "mouse-button-down", &val );
704                     val.i_int &= ~1;
705                     var_Set( p_vout, "mouse-button-down", val );
706
707                     val.b_bool = VLC_TRUE;
708                     var_Set( p_vout, "mouse-clicked", val );
709                     break;
710
711                 case Button2:
712                     {
713                         playlist_t *p_playlist;
714
715                         var_Get( p_vout, "mouse-button-down", &val );
716                         val.i_int &= ~2;
717                         var_Set( p_vout, "mouse-button-down", val );
718
719                         p_playlist = vlc_object_find( p_vout,
720                                                       VLC_OBJECT_PLAYLIST,
721                                                       FIND_ANYWHERE );
722                         if( p_playlist != NULL )
723                         {
724                             vlc_value_t val;
725                             var_Get( p_playlist, "intf-show", &val );
726                             val.b_bool = !val.b_bool;
727                             var_Set( p_playlist, "intf-show", val );
728                             vlc_object_release( p_playlist );
729                         }
730                     }
731                     break;
732
733                 case Button3:
734                     {
735                         intf_thread_t *p_intf;
736                         playlist_t *p_playlist;
737
738                         var_Get( p_vout, "mouse-button-down", &val );
739                         val.i_int &= ~4;
740                         var_Set( p_vout, "mouse-button-down", val );
741                         p_intf = vlc_object_find( p_vout, VLC_OBJECT_INTF,
742                                                           FIND_ANYWHERE );
743                         if( p_intf )
744                         {
745                             p_intf->b_menu_change = 1;
746                             vlc_object_release( p_intf );
747                         }
748
749                         p_playlist = vlc_object_find( p_vout,
750                                                       VLC_OBJECT_PLAYLIST,
751                                                       FIND_ANYWHERE );
752                         if( p_playlist != NULL )
753                         {
754                             vlc_value_t val; val.b_bool = VLC_TRUE;
755                             var_Set( p_playlist, "intf-popupmenu", val );
756                             vlc_object_release( p_playlist );
757                         }
758                     }
759                     break;
760
761                 case Button4:
762                     var_Get( p_vout, "mouse-button-down", &val );
763                     val.i_int &= ~8;
764                     var_Set( p_vout, "mouse-button-down", val );
765                     break;
766
767                 case Button5:
768                     var_Get( p_vout, "mouse-button-down", &val );
769                     val.i_int &= ~16;
770                     var_Set( p_vout, "mouse-button-down", val );
771                     break;
772
773             }
774         }
775         /* Mouse move */
776         else if( xevent.type == MotionNotify )
777         {
778             int i_width, i_height, i_x, i_y;
779             vlc_value_t val;
780
781             /* somewhat different use for vout_PlacePicture:
782              * here the values are needed to give to mouse coordinates
783              * in the original picture space */
784             vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
785                                p_vout->p_sys->p_win->i_height,
786                                &i_x, &i_y, &i_width, &i_height );
787
788             val.i_int = ( xevent.xmotion.x - i_x ) *
789                 p_vout->fmt_in.i_visible_width / i_width +
790                 p_vout->fmt_in.i_x_offset;
791             var_Set( p_vout, "mouse-x", val );
792             val.i_int = ( xevent.xmotion.y - i_y ) *
793                 p_vout->fmt_in.i_visible_height / i_height +
794                 p_vout->fmt_in.i_y_offset;
795             var_Set( p_vout, "mouse-y", val );
796
797             val.b_bool = VLC_TRUE;
798             var_Set( p_vout, "mouse-moved", val );
799
800             p_vout->p_sys->i_time_mouse_last_moved = mdate();
801             if( ! p_vout->p_sys->b_mouse_pointer_visible )
802             {
803                 ToggleCursor( p_vout );
804             }
805         }
806         else if( xevent.type == ReparentNotify /* XXX: why do we get this? */
807                   || xevent.type == MapNotify
808                   || xevent.type == UnmapNotify )
809         {
810             /* Ignore these events */
811         }
812         else /* Other events */
813         {
814             msg_Warn( p_vout, "unhandled event %d received", xevent.type );
815         }
816     }
817
818     /* Handle events for video output sub-window */
819     while( XCheckWindowEvent( p_vout->p_sys->p_display,
820                               p_vout->p_sys->p_win->video_window,
821                               ExposureMask, &xevent ) == True )
822     {
823         /* Window exposed (only handled if stream playback is paused) */
824         if( xevent.type == Expose )
825         {
826             if( ((XExposeEvent *)&xevent)->count == 0 )
827             {
828                 /* (if this is the last a collection of expose events...) */
829 #if 0
830                 if( p_vout->p_vlc->p_input_bank->pp_input[0] != NULL )
831                 {
832                     if( PAUSE_S == p_vout->p_vlc->p_input_bank->pp_input[0]
833                                                    ->stream.control.i_status )
834                     {
835                         /* XVideoDisplay( p_vout )*/;
836                     }
837                 }
838 #endif
839             }
840         }
841     }
842
843     /* ClientMessage event - only WM_PROTOCOLS with WM_DELETE_WINDOW data
844      * are handled - according to the man pages, the format is always 32
845      * in this case */
846     while( XCheckTypedEvent( p_vout->p_sys->p_display,
847                              ClientMessage, &xevent ) )
848     {
849         if( (xevent.xclient.message_type == p_vout->p_sys->p_win->wm_protocols)
850                && ((Atom)xevent.xclient.data.l[0]
851                      == p_vout->p_sys->p_win->wm_delete_window ) )
852         {
853             /* the user wants to close the window */
854             playlist_t * p_playlist =
855                 (playlist_t *)vlc_object_find( p_vout, VLC_OBJECT_PLAYLIST,
856                                                FIND_ANYWHERE );
857             if( p_playlist != NULL )
858             {
859                 playlist_Stop( p_playlist );
860                 vlc_object_release( p_playlist );
861             }
862         }
863     }
864
865     /*
866      * Fullscreen Change
867      */
868     if ( p_vout->i_changes & VOUT_FULLSCREEN_CHANGE )
869     {
870         vlc_value_t val;
871
872         /* Update the object variable and trigger callback */
873         val.b_bool = !p_vout->b_fullscreen;
874         var_Set( p_vout, "fullscreen", val );
875
876         ToggleFullScreen( p_vout );
877         p_vout->i_changes &= ~VOUT_FULLSCREEN_CHANGE;
878     }
879
880     if( p_vout->i_changes & VOUT_CROP_CHANGE ||
881         p_vout->i_changes & VOUT_ASPECT_CHANGE )
882     {
883         p_vout->i_changes &= ~VOUT_CROP_CHANGE;
884         p_vout->i_changes &= ~VOUT_ASPECT_CHANGE;
885
886         p_vout->fmt_out.i_x_offset = p_vout->fmt_in.i_x_offset;
887         p_vout->fmt_out.i_y_offset = p_vout->fmt_in.i_y_offset;
888         p_vout->fmt_out.i_visible_width = p_vout->fmt_in.i_visible_width;
889         p_vout->fmt_out.i_visible_height = p_vout->fmt_in.i_visible_height;
890         p_vout->fmt_out.i_aspect = p_vout->fmt_in.i_aspect;
891         p_vout->fmt_out.i_sar_num = p_vout->fmt_in.i_sar_num;
892         p_vout->fmt_out.i_sar_den = p_vout->fmt_in.i_sar_den;
893         p_vout->output.i_aspect = p_vout->fmt_in.i_aspect;
894
895         p_vout->i_changes |= VOUT_SIZE_CHANGE;
896     }
897
898     /*
899      * Size change
900      *
901      * (Needs to be placed after VOUT_FULLSREEN_CHANGE because we can activate
902      *  the size flag inside the fullscreen routine)
903      */
904     if( p_vout->i_changes & VOUT_SIZE_CHANGE )
905     {
906         int i_width, i_height, i_x, i_y;
907
908         p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
909
910 #ifdef MODULE_NAME_IS_x11
911         /* We need to signal the vout thread about the size change because it
912          * is doing the rescaling */
913         p_vout->i_changes |= VOUT_SIZE_CHANGE;
914 #endif
915
916         vout_PlacePicture( p_vout, p_vout->p_sys->p_win->i_width,
917                            p_vout->p_sys->p_win->i_height,
918                            &i_x, &i_y, &i_width, &i_height );
919
920         XMoveResizeWindow( p_vout->p_sys->p_display,
921                            p_vout->p_sys->p_win->video_window,
922                            i_x, i_y, i_width, i_height );
923     }
924
925     /* Autohide Cursour */
926     if( mdate() - p_vout->p_sys->i_time_mouse_last_moved > 2000000 )
927     {
928         /* Hide the mouse automatically */
929         if( p_vout->p_sys->b_mouse_pointer_visible )
930         {
931             ToggleCursor( p_vout );
932         }
933     }
934
935     vlc_mutex_unlock( &p_vout->p_sys->lock );
936
937     return 0;
938 }
939
940 /*****************************************************************************
941  * EndVideo: terminate X11 video thread output method
942  *****************************************************************************
943  * Destroy the X11 XImages created by Init. It is called at the end of
944  * the thread, but also each time the window is resized.
945  *****************************************************************************/
946 static void EndVideo( vout_thread_t *p_vout )
947 {
948     int i_index;
949
950     /* Free the direct buffers we allocated */
951     for( i_index = I_OUTPUTPICTURES ; i_index ; )
952     {
953         i_index--;
954         FreePicture( p_vout, PP_OUTPUTPICTURE[ i_index ] );
955     }
956 }
957
958 /* following functions are local */
959
960 /*****************************************************************************
961  * CreateWindow: open and set-up X11 main window
962  *****************************************************************************/
963 static int CreateWindow( vout_thread_t *p_vout, x11_window_t *p_win )
964 {
965     XSizeHints              xsize_hints;
966     XSetWindowAttributes    xwindow_attributes;
967     XGCValues               xgcvalues;
968     XEvent                  xevent;
969
970     vlc_bool_t              b_expose = VLC_FALSE;
971     vlc_bool_t              b_configure_notify = VLC_FALSE;
972     vlc_bool_t              b_map_notify = VLC_FALSE;
973     vlc_value_t             val;
974
975     /* Prepare window manager hints and properties */
976     p_win->wm_protocols =
977              XInternAtom( p_vout->p_sys->p_display, "WM_PROTOCOLS", True );
978     p_win->wm_delete_window =
979              XInternAtom( p_vout->p_sys->p_display, "WM_DELETE_WINDOW", True );
980
981     /* Never have a 0-pixel-wide window */
982     xsize_hints.min_width = 2;
983     xsize_hints.min_height = 1;
984
985     /* Prepare window attributes */
986     xwindow_attributes.backing_store = Always;       /* save the hidden part */
987     xwindow_attributes.background_pixel = BlackPixel(p_vout->p_sys->p_display,
988                                                      p_vout->p_sys->i_screen);
989     xwindow_attributes.event_mask = ExposureMask | StructureNotifyMask;
990
991     if( !p_vout->b_fullscreen )
992     {
993         p_win->owner_window =
994             (Window)vout_RequestWindow( p_vout, &p_win->i_x, &p_win->i_y,
995                                         &p_win->i_width, &p_win->i_height );
996
997         xsize_hints.base_width  = xsize_hints.width = p_win->i_width;
998         xsize_hints.base_height = xsize_hints.height = p_win->i_height;
999         xsize_hints.flags       = PSize | PMinSize;
1000
1001         if( p_win->i_x >=0 || p_win->i_y >= 0 )
1002         {
1003             xsize_hints.x = p_win->i_x;
1004             xsize_hints.y = p_win->i_y;
1005             xsize_hints.flags |= PPosition;
1006         }
1007     }
1008     else
1009     {
1010         /* Fullscreen window size and position */
1011         p_win->owner_window = 0;
1012         p_win->i_x = p_win->i_y = 0;
1013         p_win->i_width =
1014             DisplayWidth( p_vout->p_sys->p_display, p_vout->p_sys->i_screen );
1015         p_win->i_height =
1016             DisplayHeight( p_vout->p_sys->p_display, p_vout->p_sys->i_screen );
1017     }
1018
1019     if( !p_win->owner_window )
1020     {
1021         /* Create the window and set hints - the window must receive
1022          * ConfigureNotify events, and until it is displayed, Expose and
1023          * MapNotify events. */
1024
1025         p_win->base_window =
1026             XCreateWindow( p_vout->p_sys->p_display,
1027                            DefaultRootWindow( p_vout->p_sys->p_display ),
1028                            p_win->i_x, p_win->i_y,
1029                            p_win->i_width, p_win->i_height,
1030                            0,
1031                            0, InputOutput, 0,
1032                            CWBackingStore | CWBackPixel | CWEventMask,
1033                            &xwindow_attributes );
1034
1035         if( !p_vout->b_fullscreen )
1036         {
1037             /* Set window manager hints and properties: size hints, command,
1038              * window's name, and accepted protocols */
1039             XSetWMNormalHints( p_vout->p_sys->p_display,
1040                                p_win->base_window, &xsize_hints );
1041             XSetCommand( p_vout->p_sys->p_display, p_win->base_window,
1042                          p_vout->p_vlc->ppsz_argv, p_vout->p_vlc->i_argc );
1043
1044             if( !var_GetBool( p_vout, "video-deco") )
1045             {
1046                 Atom prop;
1047                 mwmhints_t mwmhints;
1048
1049                 mwmhints.flags = MWM_HINTS_DECORATIONS;
1050                 mwmhints.decorations = False;
1051
1052                 prop = XInternAtom( p_vout->p_sys->p_display, "_MOTIF_WM_HINTS",
1053                                     False );
1054
1055                 XChangeProperty( p_vout->p_sys->p_display,
1056                                  p_win->base_window,
1057                                  prop, prop, 32, PropModeReplace,
1058                                  (unsigned char *)&mwmhints,
1059                                  PROP_MWM_HINTS_ELEMENTS );
1060             }
1061             else
1062             {
1063                  var_Get( p_vout, "video-title", &val );
1064                  if( !val.psz_string || !*val.psz_string )
1065                  {
1066                     XStoreName( p_vout->p_sys->p_display, p_win->base_window,
1067 #ifdef MODULE_NAME_IS_x11
1068                                 VOUT_TITLE " (X11 output)"
1069 #elif defined(MODULE_NAME_IS_glx)
1070                                 VOUT_TITLE " (GLX output)"
1071 #else
1072                                 VOUT_TITLE " (XVideo output)"
1073 #endif
1074                       );
1075                 }
1076                 else
1077                 {
1078                     XStoreName( p_vout->p_sys->p_display,
1079                                p_win->base_window, val.psz_string );
1080                 }
1081             }
1082         }
1083     }
1084     else
1085     {
1086         Window dummy1;
1087         unsigned int dummy2, dummy3;
1088
1089         /* Select events we are interested in. */
1090         XSelectInput( p_vout->p_sys->p_display, p_win->owner_window,
1091                       StructureNotifyMask );
1092
1093         /* Get the parent window's geometry information */
1094         XGetGeometry( p_vout->p_sys->p_display, p_win->owner_window,
1095                       &dummy1, &dummy2, &dummy3,
1096                       &p_win->i_width,
1097                       &p_win->i_height,
1098                       &dummy2, &dummy3 );
1099
1100         /* We are already configured */
1101         b_configure_notify = VLC_TRUE;
1102
1103         /* From man XSelectInput: only one client at a time can select a
1104          * ButtonPress event, so we need to open a new window anyway. */
1105         p_win->base_window =
1106             XCreateWindow( p_vout->p_sys->p_display,
1107                            p_win->owner_window,
1108                            0, 0,
1109                            p_win->i_width, p_win->i_height,
1110                            0,
1111                            0, CopyFromParent, 0,
1112                            CWBackingStore | CWBackPixel | CWEventMask,
1113                            &xwindow_attributes );
1114     }
1115
1116     if( (p_win->wm_protocols == None)        /* use WM_DELETE_WINDOW */
1117         || (p_win->wm_delete_window == None)
1118         || !XSetWMProtocols( p_vout->p_sys->p_display, p_win->base_window,
1119                              &p_win->wm_delete_window, 1 ) )
1120     {
1121         /* WM_DELETE_WINDOW is not supported by window manager */
1122         msg_Warn( p_vout, "missing or bad window manager" );
1123     }
1124
1125     /* Creation of a graphic context that doesn't generate a GraphicsExpose
1126      * event when using functions like XCopyArea */
1127     xgcvalues.graphics_exposures = False;
1128     p_win->gc = XCreateGC( p_vout->p_sys->p_display,
1129                            p_win->base_window,
1130                            GCGraphicsExposures, &xgcvalues );
1131
1132     /* Send orders to server, and wait until window is displayed - three
1133      * events must be received: a MapNotify event, an Expose event allowing
1134      * drawing in the window, and a ConfigureNotify to get the window
1135      * dimensions. Once those events have been received, only
1136      * ConfigureNotify events need to be received. */
1137     XMapWindow( p_vout->p_sys->p_display, p_win->base_window );
1138     do
1139     {
1140         XWindowEvent( p_vout->p_sys->p_display, p_win->base_window,
1141                       SubstructureNotifyMask | StructureNotifyMask |
1142                       ExposureMask, &xevent);
1143         if( (xevent.type == Expose)
1144             && (xevent.xexpose.window == p_win->base_window) )
1145         {
1146             b_expose = VLC_TRUE;
1147             /* ConfigureNotify isn't sent if there isn't a window manager.
1148              * Expose should be the last event to be received so it should
1149              * be fine to assume we won't receive it anymore. */
1150             b_configure_notify = VLC_TRUE;
1151         }
1152         else if( (xevent.type == MapNotify)
1153                  && (xevent.xmap.window == p_win->base_window) )
1154         {
1155             b_map_notify = VLC_TRUE;
1156         }
1157         else if( (xevent.type == ConfigureNotify)
1158                  && (xevent.xconfigure.window == p_win->base_window) )
1159         {
1160             b_configure_notify = VLC_TRUE;
1161             p_win->i_width = xevent.xconfigure.width;
1162             p_win->i_height = xevent.xconfigure.height;
1163         }
1164     } while( !( b_expose && b_configure_notify && b_map_notify ) );
1165
1166     XSelectInput( p_vout->p_sys->p_display, p_win->base_window,
1167                   StructureNotifyMask | KeyPressMask |
1168                   ButtonPressMask | ButtonReleaseMask |
1169                   PointerMotionMask );
1170
1171 #ifdef MODULE_NAME_IS_x11
1172     if( XDefaultDepth(p_vout->p_sys->p_display, p_vout->p_sys->i_screen) == 8 )
1173     {
1174         /* Allocate a new palette */
1175         p_vout->p_sys->colormap =
1176             XCreateColormap( p_vout->p_sys->p_display,
1177                              DefaultRootWindow( p_vout->p_sys->p_display ),
1178                              DefaultVisual( p_vout->p_sys->p_display,
1179                                             p_vout->p_sys->i_screen ),
1180                              AllocAll );
1181
1182         xwindow_attributes.colormap = p_vout->p_sys->colormap;
1183         XChangeWindowAttributes( p_vout->p_sys->p_display, p_win->base_window,
1184                                  CWColormap, &xwindow_attributes );
1185     }
1186 #endif
1187
1188     /* Create video output sub-window. */
1189     p_win->video_window =  XCreateSimpleWindow(
1190                                       p_vout->p_sys->p_display,
1191                                       p_win->base_window, 0, 0,
1192                                       p_win->i_width, p_win->i_height,
1193                                       0,
1194                                       BlackPixel( p_vout->p_sys->p_display,
1195                                                   p_vout->p_sys->i_screen ),
1196                                       WhitePixel( p_vout->p_sys->p_display,
1197                                                   p_vout->p_sys->i_screen ) );
1198
1199     XSetWindowBackground( p_vout->p_sys->p_display, p_win->video_window,
1200                           BlackPixel( p_vout->p_sys->p_display,
1201                                       p_vout->p_sys->i_screen ) );
1202
1203     XMapWindow( p_vout->p_sys->p_display, p_win->video_window );
1204     XSelectInput( p_vout->p_sys->p_display, p_win->video_window,
1205                   ExposureMask );
1206
1207     /* make sure the video window will be centered in the next ManageVideo() */
1208     p_vout->i_changes |= VOUT_SIZE_CHANGE;
1209
1210     /* If the cursor was formerly blank than blank it again */
1211     if( !p_vout->p_sys->b_mouse_pointer_visible )
1212     {
1213         ToggleCursor( p_vout );
1214         ToggleCursor( p_vout );
1215     }
1216
1217     /* Do NOT use XFlush here ! */
1218     XSync( p_vout->p_sys->p_display, False );
1219
1220     /* At this stage, the window is open, displayed, and ready to
1221      * receive data */
1222     p_vout->p_sys->p_win = p_win;
1223
1224     return VLC_SUCCESS;
1225 }
1226
1227 /*****************************************************************************
1228  * DestroyWindow: destroy the window
1229  *****************************************************************************
1230  *
1231  *****************************************************************************/
1232 static void DestroyWindow( vout_thread_t *p_vout, x11_window_t *p_win )
1233 {
1234     /* Do NOT use XFlush here ! */
1235     XSync( p_vout->p_sys->p_display, False );
1236
1237     if( p_win->video_window != None )
1238         XDestroyWindow( p_vout->p_sys->p_display, p_win->video_window );
1239
1240     XFreeGC( p_vout->p_sys->p_display, p_win->gc );
1241
1242     XUnmapWindow( p_vout->p_sys->p_display, p_win->base_window );
1243     XDestroyWindow( p_vout->p_sys->p_display, p_win->base_window );
1244
1245     if( p_win->owner_window )
1246         vout_ReleaseWindow( p_vout, (void *)p_win->owner_window );
1247 }
1248
1249 /*****************************************************************************
1250  * NewPicture: allocate a picture
1251  *****************************************************************************
1252  * Returns 0 on success, -1 otherwise
1253  *****************************************************************************/
1254 static int NewPicture( vout_thread_t *p_vout, picture_t *p_pic )
1255 {
1256 #ifndef MODULE_NAME_IS_glx
1257
1258 #ifdef MODULE_NAME_IS_xvideo
1259     int i_plane;
1260 #endif
1261
1262     /* We know the chroma, allocate a buffer which will be used
1263      * directly by the decoder */
1264     p_pic->p_sys = malloc( sizeof( picture_sys_t ) );
1265
1266     if( p_pic->p_sys == NULL )
1267     {
1268         return -1;
1269     }
1270
1271     /* Fill in picture_t fields */
1272     vout_InitPicture( VLC_OBJECT(p_vout), p_pic, p_vout->output.i_chroma,
1273                       p_vout->output.i_width, p_vout->output.i_height,
1274                       p_vout->output.i_aspect );
1275
1276 #ifdef HAVE_SYS_SHM_H
1277     if( p_vout->p_sys->b_shm )
1278     {
1279         /* Create image using XShm extension */
1280         p_pic->p_sys->p_image =
1281             CreateShmImage( p_vout, p_vout->p_sys->p_display,
1282 #   ifdef MODULE_NAME_IS_xvideo
1283                             p_vout->p_sys->i_xvport, 
1284                             VLC2X11_FOURCC(p_vout->output.i_chroma),
1285 #   else
1286                             p_vout->p_sys->p_visual,
1287                             p_vout->p_sys->i_screen_depth,
1288 #   endif
1289                             &p_pic->p_sys->shminfo,
1290                             p_vout->output.i_width, p_vout->output.i_height );
1291     }
1292
1293     if( !p_vout->p_sys->b_shm || !p_pic->p_sys->p_image )
1294 #endif /* HAVE_SYS_SHM_H */
1295     {
1296         /* Create image without XShm extension */
1297         p_pic->p_sys->p_image =
1298             CreateImage( p_vout, p_vout->p_sys->p_display,
1299 #ifdef MODULE_NAME_IS_xvideo
1300                          p_vout->p_sys->i_xvport, 
1301                          VLC2X11_FOURCC(p_vout->output.i_chroma),
1302                          p_pic->format.i_bits_per_pixel,
1303 #else
1304                          p_vout->p_sys->p_visual,
1305                          p_vout->p_sys->i_screen_depth,
1306                          p_vout->p_sys->i_bytes_per_pixel,
1307 #endif
1308                          p_vout->output.i_width, p_vout->output.i_height );
1309
1310 #ifdef HAVE_SYS_SHM_H
1311         if( p_pic->p_sys->p_image && p_vout->p_sys->b_shm )
1312         {
1313             msg_Warn( p_vout, "couldn't create SHM image, disabling SHM." );
1314             p_vout->p_sys->b_shm = VLC_FALSE;
1315         }
1316 #endif /* HAVE_SYS_SHM_H */
1317     }
1318
1319     if( p_pic->p_sys->p_image == NULL )
1320     {
1321         free( p_pic->p_sys );
1322         return -1;
1323     }
1324
1325     switch( p_vout->output.i_chroma )
1326     {
1327 #ifdef MODULE_NAME_IS_xvideo
1328         case VLC_FOURCC('I','4','2','0'):
1329         case VLC_FOURCC('Y','V','1','2'):
1330         case VLC_FOURCC('Y','2','1','1'):
1331         case VLC_FOURCC('Y','U','Y','2'):
1332         case VLC_FOURCC('U','Y','V','Y'):
1333         case VLC_FOURCC('R','V','1','5'):
1334         case VLC_FOURCC('R','V','1','6'):
1335         case VLC_FOURCC('R','V','2','4'): /* Fixme: pixel pitch == 4 ? */
1336         case VLC_FOURCC('R','V','3','2'):
1337
1338             for( i_plane = 0; i_plane < p_pic->p_sys->p_image->num_planes;
1339                  i_plane++ )
1340             {
1341                 p_pic->p[i_plane].p_pixels = p_pic->p_sys->p_image->data
1342                     + p_pic->p_sys->p_image->offsets[i_plane];
1343                 p_pic->p[i_plane].i_pitch =
1344                     p_pic->p_sys->p_image->pitches[i_plane];
1345             }
1346             if( p_vout->output.i_chroma == VLC_FOURCC('Y','V','1','2') )
1347             {
1348                 /* U and V inverted compared to I420
1349                  * Fixme: this should be handled by the vout core */
1350                 p_pic->U_PIXELS = p_pic->p_sys->p_image->data
1351                     + p_pic->p_sys->p_image->offsets[2];
1352                 p_pic->V_PIXELS = p_pic->p_sys->p_image->data
1353                     + p_pic->p_sys->p_image->offsets[1];
1354             }
1355             break;
1356
1357 #else
1358         case VLC_FOURCC('R','G','B','2'):
1359         case VLC_FOURCC('R','V','1','6'):
1360         case VLC_FOURCC('R','V','1','5'):
1361         case VLC_FOURCC('R','V','2','4'):
1362         case VLC_FOURCC('R','V','3','2'):
1363
1364             p_pic->p->i_lines = p_pic->p_sys->p_image->height;
1365             p_pic->p->i_visible_lines = p_pic->p_sys->p_image->height;
1366             p_pic->p->p_pixels = p_pic->p_sys->p_image->data
1367                                   + p_pic->p_sys->p_image->xoffset;
1368             p_pic->p->i_pitch = p_pic->p_sys->p_image->bytes_per_line;
1369
1370             /* p_pic->p->i_pixel_pitch = 4 for RV24 but this should be set
1371              * properly by vout_InitPicture() */
1372             p_pic->p->i_visible_pitch = p_pic->p->i_pixel_pitch
1373                                          * p_pic->p_sys->p_image->width;
1374             break;
1375 #endif
1376
1377         default:
1378             /* Unknown chroma, tell the guy to get lost */
1379             IMAGE_FREE( p_pic->p_sys->p_image );
1380             free( p_pic->p_sys );
1381             msg_Err( p_vout, "never heard of chroma 0x%.8x (%4.4s)",
1382                      p_vout->output.i_chroma, (char*)&p_vout->output.i_chroma );
1383             p_pic->i_planes = 0;
1384             return -1;
1385     }
1386
1387 #endif /* !MODULE_NAME_IS_glx */
1388
1389     return 0;
1390 }
1391
1392 /*****************************************************************************
1393  * FreePicture: destroy a picture allocated with NewPicture
1394  *****************************************************************************
1395  * Destroy XImage AND associated data. If using Shm, detach shared memory
1396  * segment from server and process, then free it. The XDestroyImage manpage
1397  * says that both the image structure _and_ the data pointed to by the
1398  * image structure are freed, so no need to free p_image->data.
1399  *****************************************************************************/
1400 static void FreePicture( vout_thread_t *p_vout, picture_t *p_pic )
1401 {
1402     /* The order of operations is correct */
1403 #ifdef HAVE_SYS_SHM_H
1404     if( p_vout->p_sys->b_shm )
1405     {
1406         XShmDetach( p_vout->p_sys->p_display, &p_pic->p_sys->shminfo );
1407         IMAGE_FREE( p_pic->p_sys->p_image );
1408
1409         shmctl( p_pic->p_sys->shminfo.shmid, IPC_RMID, 0 );
1410         if( shmdt( p_pic->p_sys->shminfo.shmaddr ) )
1411         {
1412             msg_Err( p_vout, "cannot detach shared memory (%s)",
1413                              strerror(errno) );
1414         }
1415     }
1416     else
1417 #endif
1418     {
1419         IMAGE_FREE( p_pic->p_sys->p_image );
1420     }
1421
1422     /* Do NOT use XFlush here ! */
1423     XSync( p_vout->p_sys->p_display, False );
1424
1425     free( p_pic->p_sys );
1426 }
1427
1428 /*****************************************************************************
1429  * ToggleFullScreen: Enable or disable full screen mode
1430  *****************************************************************************
1431  * This function will switch between fullscreen and window mode.
1432  *****************************************************************************/
1433 static void ToggleFullScreen ( vout_thread_t *p_vout )
1434 {
1435     Atom prop;
1436     XEvent xevent;
1437     mwmhints_t mwmhints;
1438     XSetWindowAttributes attributes;
1439
1440 #ifdef HAVE_XINERAMA
1441     int i_d1, i_d2;
1442 #endif
1443
1444     p_vout->b_fullscreen = !p_vout->b_fullscreen;
1445
1446     if( p_vout->b_fullscreen )
1447     {
1448         msg_Dbg( p_vout, "entering fullscreen mode" );
1449
1450         p_vout->p_sys->b_altfullscreen =
1451             config_GetInt( p_vout, MODULE_STRING "-altfullscreen" );
1452
1453         XUnmapWindow( p_vout->p_sys->p_display,
1454                       p_vout->p_sys->p_win->base_window );
1455
1456         p_vout->p_sys->p_win = &p_vout->p_sys->fullscreen_window;
1457
1458         CreateWindow( p_vout, p_vout->p_sys->p_win );
1459         XDestroyWindow( p_vout->p_sys->p_display,
1460                         p_vout->p_sys->fullscreen_window.video_window );
1461         XReparentWindow( p_vout->p_sys->p_display,
1462                          p_vout->p_sys->original_window.video_window,
1463                          p_vout->p_sys->fullscreen_window.base_window, 0, 0 );
1464         p_vout->p_sys->fullscreen_window.video_window =
1465             p_vout->p_sys->original_window.video_window;
1466
1467         /* To my knowledge there are two ways to create a borderless window.
1468          * There's the generic way which is to tell x to bypass the window
1469          * manager, but this creates problems with the focus of other
1470          * applications.
1471          * The other way is to use the motif property "_MOTIF_WM_HINTS" which
1472          * luckily seems to be supported by most window managers. */
1473         if( !p_vout->p_sys->b_altfullscreen )
1474         {
1475             mwmhints.flags = MWM_HINTS_DECORATIONS;
1476             mwmhints.decorations = False;
1477
1478             prop = XInternAtom( p_vout->p_sys->p_display, "_MOTIF_WM_HINTS",
1479                                 False );
1480             XChangeProperty( p_vout->p_sys->p_display,
1481                              p_vout->p_sys->p_win->base_window,
1482                              prop, prop, 32, PropModeReplace,
1483                              (unsigned char *)&mwmhints,
1484                              PROP_MWM_HINTS_ELEMENTS );
1485         }
1486         else
1487         {
1488             /* brute force way to remove decorations */
1489             attributes.override_redirect = True;
1490             XChangeWindowAttributes( p_vout->p_sys->p_display,
1491                                      p_vout->p_sys->p_win->base_window,
1492                                      CWOverrideRedirect,
1493                                      &attributes);
1494
1495             /* Make sure the change is effective */
1496             XReparentWindow( p_vout->p_sys->p_display,
1497                              p_vout->p_sys->p_win->base_window,
1498                              DefaultRootWindow( p_vout->p_sys->p_display ),
1499                              0, 0 );
1500         }
1501
1502         if( p_vout->p_sys->b_net_wm_state_fullscreen )
1503         {
1504             XClientMessageEvent event;
1505
1506             memset( &event, 0, sizeof( XClientMessageEvent ) );
1507
1508             event.type = ClientMessage;
1509             event.message_type = p_vout->p_sys->net_wm_state;
1510             event.display = p_vout->p_sys->p_display;
1511             event.window = p_vout->p_sys->p_win->base_window;
1512             event.format = 32;
1513             event.data.l[ 0 ] = 1; /* set property */
1514             event.data.l[ 1 ] = p_vout->p_sys->net_wm_state_fullscreen;
1515
1516             XSendEvent( p_vout->p_sys->p_display,
1517                         DefaultRootWindow( p_vout->p_sys->p_display ),
1518                         False, SubstructureRedirectMask,
1519                         (XEvent*)&event );
1520         }
1521
1522         /* Make sure the change is effective */
1523         XReparentWindow( p_vout->p_sys->p_display,
1524                          p_vout->p_sys->p_win->base_window,
1525                          DefaultRootWindow( p_vout->p_sys->p_display ),
1526                          0, 0 );
1527
1528 #ifdef HAVE_XINERAMA
1529         if( XineramaQueryExtension( p_vout->p_sys->p_display, &i_d1, &i_d2 ) &&
1530             XineramaIsActive( p_vout->p_sys->p_display ) )
1531         {
1532             XineramaScreenInfo *screens;   /* infos for xinerama */
1533             int i_num_screens;
1534
1535             msg_Dbg( p_vout, "using XFree Xinerama extension");
1536
1537 #define SCREEN p_vout->p_sys->p_win->i_screen
1538
1539             /* Get Information about Xinerama (num of screens) */
1540             screens = XineramaQueryScreens( p_vout->p_sys->p_display,
1541                                             &i_num_screens );
1542
1543             if( !SCREEN )
1544                 SCREEN = config_GetInt( p_vout,
1545                                         MODULE_STRING "-xineramascreen" );
1546
1547             /* just check that user has entered a good value */
1548             if( SCREEN >= i_num_screens || SCREEN < 0 )
1549             {
1550                 msg_Dbg( p_vout, "requested screen number invalid" );
1551                 SCREEN = 0;
1552             }
1553
1554             /* Get the X/Y upper left corner coordinate of the above screen */
1555             p_vout->p_sys->p_win->i_x = screens[SCREEN].x_org;
1556             p_vout->p_sys->p_win->i_y = screens[SCREEN].y_org;
1557
1558             /* Set the Height/width to the screen resolution */
1559             p_vout->p_sys->p_win->i_width = screens[SCREEN].width;
1560             p_vout->p_sys->p_win->i_height = screens[SCREEN].height;
1561
1562             XFree(screens);
1563
1564 #undef SCREEN
1565
1566         }
1567         else
1568 #endif
1569         {
1570             /* The window wasn't necessarily created at the requested size */
1571             p_vout->p_sys->p_win->i_x = p_vout->p_sys->p_win->i_y = 0;
1572             p_vout->p_sys->p_win->i_width =
1573                 DisplayWidth( p_vout->p_sys->p_display,
1574                               p_vout->p_sys->i_screen );
1575             p_vout->p_sys->p_win->i_height =
1576                 DisplayHeight( p_vout->p_sys->p_display,
1577                                p_vout->p_sys->i_screen );
1578         }
1579
1580         XMoveResizeWindow( p_vout->p_sys->p_display,
1581                            p_vout->p_sys->p_win->base_window,
1582                            p_vout->p_sys->p_win->i_x,
1583                            p_vout->p_sys->p_win->i_y,
1584                            p_vout->p_sys->p_win->i_width,
1585                            p_vout->p_sys->p_win->i_height );
1586     }
1587     else
1588     {
1589         msg_Dbg( p_vout, "leaving fullscreen mode" );
1590
1591         XReparentWindow( p_vout->p_sys->p_display,
1592                          p_vout->p_sys->original_window.video_window,
1593                          p_vout->p_sys->original_window.base_window, 0, 0 );
1594
1595         p_vout->p_sys->fullscreen_window.video_window = None;
1596         DestroyWindow( p_vout, &p_vout->p_sys->fullscreen_window );
1597         p_vout->p_sys->p_win = &p_vout->p_sys->original_window;
1598
1599         XMapWindow( p_vout->p_sys->p_display,
1600                     p_vout->p_sys->p_win->base_window );
1601     }
1602
1603     /* Unfortunately, using XSync() here is not enough to ensure the
1604      * window has already been mapped because the XMapWindow() request
1605      * has not necessarily been sent directly to our window (remember,
1606      * the call is first redirected to the window manager) */
1607     do
1608     {
1609         XWindowEvent( p_vout->p_sys->p_display,
1610                       p_vout->p_sys->p_win->base_window,
1611                       StructureNotifyMask, &xevent );
1612     } while( xevent.type != MapNotify );
1613
1614     /* Be careful, this can generate a BadMatch error if the window is not
1615      * already mapped by the server (see above) */
1616     XSetInputFocus(p_vout->p_sys->p_display,
1617                    p_vout->p_sys->p_win->base_window,
1618                    RevertToParent,
1619                    CurrentTime);
1620
1621     /* signal that the size needs to be updated */
1622     p_vout->i_changes |= VOUT_SIZE_CHANGE;
1623 }
1624
1625 /*****************************************************************************
1626  * EnableXScreenSaver: enable screen saver
1627  *****************************************************************************
1628  * This function enables the screen saver on a display after it has been
1629  * disabled by XDisableScreenSaver.
1630  * FIXME: what happens if multiple vlc sessions are running at the same
1631  *        time ???
1632  *****************************************************************************/
1633 static void EnableXScreenSaver( vout_thread_t *p_vout )
1634 {
1635 #ifdef DPMSINFO_IN_DPMS_H
1636     int dummy;
1637 #endif
1638
1639     if( p_vout->p_sys->i_ss_timeout )
1640     {
1641         XSetScreenSaver( p_vout->p_sys->p_display, p_vout->p_sys->i_ss_timeout,
1642                          p_vout->p_sys->i_ss_interval,
1643                          p_vout->p_sys->i_ss_blanking,
1644                          p_vout->p_sys->i_ss_exposure );
1645     }
1646
1647     /* Restore DPMS settings */
1648 #ifdef DPMSINFO_IN_DPMS_H
1649     if( DPMSQueryExtension( p_vout->p_sys->p_display, &dummy, &dummy ) )
1650     {
1651         if( p_vout->p_sys->b_ss_dpms )
1652         {
1653             DPMSEnable( p_vout->p_sys->p_display );
1654         }
1655     }
1656 #endif
1657 }
1658
1659 /*****************************************************************************
1660  * DisableXScreenSaver: disable screen saver
1661  *****************************************************************************
1662  * See XEnableXScreenSaver
1663  *****************************************************************************/
1664 static void DisableXScreenSaver( vout_thread_t *p_vout )
1665 {
1666 #ifdef DPMSINFO_IN_DPMS_H
1667     int dummy;
1668 #endif
1669
1670     /* Save screen saver information */
1671     XGetScreenSaver( p_vout->p_sys->p_display, &p_vout->p_sys->i_ss_timeout,
1672                      &p_vout->p_sys->i_ss_interval,
1673                      &p_vout->p_sys->i_ss_blanking,
1674                      &p_vout->p_sys->i_ss_exposure );
1675
1676     /* Disable screen saver */
1677     if( p_vout->p_sys->i_ss_timeout )
1678     {
1679         XSetScreenSaver( p_vout->p_sys->p_display, 0,
1680                          p_vout->p_sys->i_ss_interval,
1681                          p_vout->p_sys->i_ss_blanking,
1682                          p_vout->p_sys->i_ss_exposure );
1683     }
1684
1685     /* Disable DPMS */
1686 #ifdef DPMSINFO_IN_DPMS_H
1687     if( DPMSQueryExtension( p_vout->p_sys->p_display, &dummy, &dummy ) )
1688     {
1689         CARD16 unused;
1690         /* Save DPMS current state */
1691         DPMSInfo( p_vout->p_sys->p_display, &unused,
1692                   &p_vout->p_sys->b_ss_dpms );
1693         DPMSDisable( p_vout->p_sys->p_display );
1694    }
1695 #endif
1696 }
1697
1698 /*****************************************************************************
1699  * CreateCursor: create a blank mouse pointer
1700  *****************************************************************************/
1701 static void CreateCursor( vout_thread_t *p_vout )
1702 {
1703     XColor cursor_color;
1704
1705     p_vout->p_sys->cursor_pixmap =
1706         XCreatePixmap( p_vout->p_sys->p_display,
1707                        DefaultRootWindow( p_vout->p_sys->p_display ),
1708                        1, 1, 1 );
1709
1710     XParseColor( p_vout->p_sys->p_display,
1711                  XCreateColormap( p_vout->p_sys->p_display,
1712                                   DefaultRootWindow(
1713                                                     p_vout->p_sys->p_display ),
1714                                   DefaultVisual(
1715                                                 p_vout->p_sys->p_display,
1716                                                 p_vout->p_sys->i_screen ),
1717                                   AllocNone ),
1718                  "black", &cursor_color );
1719
1720     p_vout->p_sys->blank_cursor =
1721         XCreatePixmapCursor( p_vout->p_sys->p_display,
1722                              p_vout->p_sys->cursor_pixmap,
1723                              p_vout->p_sys->cursor_pixmap,
1724                              &cursor_color, &cursor_color, 1, 1 );
1725 }
1726
1727 /*****************************************************************************
1728  * DestroyCursor: destroy the blank mouse pointer
1729  *****************************************************************************/
1730 static void DestroyCursor( vout_thread_t *p_vout )
1731 {
1732     XFreePixmap( p_vout->p_sys->p_display, p_vout->p_sys->cursor_pixmap );
1733 }
1734
1735 /*****************************************************************************
1736  * ToggleCursor: hide or show the mouse pointer
1737  *****************************************************************************
1738  * This function hides the X pointer if it is visible by setting the pointer
1739  * sprite to a blank one. To show it again, we disable the sprite.
1740  *****************************************************************************/
1741 static void ToggleCursor( vout_thread_t *p_vout )
1742 {
1743     if( p_vout->p_sys->b_mouse_pointer_visible )
1744     {
1745         XDefineCursor( p_vout->p_sys->p_display,
1746                        p_vout->p_sys->p_win->base_window,
1747                        p_vout->p_sys->blank_cursor );
1748         p_vout->p_sys->b_mouse_pointer_visible = 0;
1749     }
1750     else
1751     {
1752         XUndefineCursor( p_vout->p_sys->p_display,
1753                          p_vout->p_sys->p_win->base_window );
1754         p_vout->p_sys->b_mouse_pointer_visible = 1;
1755     }
1756 }
1757
1758 #ifdef MODULE_NAME_IS_xvideo
1759 /*****************************************************************************
1760  * XVideoGetPort: get YUV12 port
1761  *****************************************************************************/
1762 static int XVideoGetPort( vout_thread_t *p_vout,
1763                           vlc_fourcc_t i_chroma, vlc_fourcc_t *pi_newchroma )
1764 {
1765     XvAdaptorInfo *p_adaptor;
1766     unsigned int i;
1767     int i_adaptor, i_num_adaptors, i_requested_adaptor;
1768     int i_selected_port;
1769
1770     switch( XvQueryExtension( p_vout->p_sys->p_display, &i, &i, &i, &i, &i ) )
1771     {
1772         case Success:
1773             break;
1774
1775         case XvBadExtension:
1776             msg_Warn( p_vout, "XvBadExtension" );
1777             return -1;
1778
1779         case XvBadAlloc:
1780             msg_Warn( p_vout, "XvBadAlloc" );
1781             return -1;
1782
1783         default:
1784             msg_Warn( p_vout, "XvQueryExtension failed" );
1785             return -1;
1786     }
1787
1788     switch( XvQueryAdaptors( p_vout->p_sys->p_display,
1789                              DefaultRootWindow( p_vout->p_sys->p_display ),
1790                              &i_num_adaptors, &p_adaptor ) )
1791     {
1792         case Success:
1793             break;
1794
1795         case XvBadExtension:
1796             msg_Warn( p_vout, "XvBadExtension for XvQueryAdaptors" );
1797             return -1;
1798
1799         case XvBadAlloc:
1800             msg_Warn( p_vout, "XvBadAlloc for XvQueryAdaptors" );
1801             return -1;
1802
1803         default:
1804             msg_Warn( p_vout, "XvQueryAdaptors failed" );
1805             return -1;
1806     }
1807
1808     i_selected_port = -1;
1809     i_requested_adaptor = config_GetInt( p_vout, "xvideo-adaptor" );
1810
1811     for( i_adaptor = 0; i_adaptor < i_num_adaptors; ++i_adaptor )
1812     {
1813         XvImageFormatValues *p_formats;
1814         int i_format, i_num_formats;
1815         int i_port;
1816
1817         /* If we requested an adaptor and it's not this one, we aren't
1818          * interested */
1819         if( i_requested_adaptor != -1 && i_adaptor != i_requested_adaptor )
1820         {
1821             continue;
1822         }
1823
1824         /* If the adaptor doesn't have the required properties, skip it */
1825         if( !( p_adaptor[ i_adaptor ].type & XvInputMask ) ||
1826             !( p_adaptor[ i_adaptor ].type & XvImageMask ) )
1827         {
1828             continue;
1829         }
1830
1831         /* Check that adaptor supports our requested format... */
1832         p_formats = XvListImageFormats( p_vout->p_sys->p_display,
1833                                         p_adaptor[i_adaptor].base_id,
1834                                         &i_num_formats );
1835
1836         for( i_format = 0;
1837              i_format < i_num_formats && ( i_selected_port == -1 );
1838              i_format++ )
1839         {
1840             XvAttribute     *p_attr;
1841             int             i_attr, i_num_attributes;
1842
1843             /* If this is not the format we want, or at least a
1844              * similar one, forget it */
1845             if( !vout_ChromaCmp( p_formats[ i_format ].id, i_chroma ) )
1846             {
1847                 continue;
1848             }
1849
1850             /* Look for the first available port supporting this format */
1851             for( i_port = p_adaptor[i_adaptor].base_id;
1852                  ( i_port < (int)(p_adaptor[i_adaptor].base_id
1853                                    + p_adaptor[i_adaptor].num_ports) )
1854                    && ( i_selected_port == -1 );
1855                  i_port++ )
1856             {
1857                 if( XvGrabPort( p_vout->p_sys->p_display, i_port, CurrentTime )
1858                      == Success )
1859                 {
1860                     i_selected_port = i_port;
1861                     *pi_newchroma = p_formats[ i_format ].id;
1862                 }
1863             }
1864
1865             /* If no free port was found, forget it */
1866             if( i_selected_port == -1 )
1867             {
1868                 continue;
1869             }
1870
1871             /* If we found a port, print information about it */
1872             msg_Dbg( p_vout, "adaptor %i, port %i, format 0x%x (%4.4s) %s",
1873                      i_adaptor, i_selected_port, p_formats[ i_format ].id,
1874                      (char *)&p_formats[ i_format ].id,
1875                      ( p_formats[ i_format ].format == XvPacked ) ?
1876                          "packed" : "planar" );
1877
1878             /* Make sure XV_AUTOPAINT_COLORKEY is set */
1879             p_attr = XvQueryPortAttributes( p_vout->p_sys->p_display,
1880                                             i_selected_port,
1881                                             &i_num_attributes );
1882
1883             for( i_attr = 0; i_attr < i_num_attributes; i_attr++ )
1884             {
1885                 if( !strcmp( p_attr[i_attr].name, "XV_AUTOPAINT_COLORKEY" ) )
1886                 {
1887                     const Atom autopaint =
1888                         XInternAtom( p_vout->p_sys->p_display,
1889                                      "XV_AUTOPAINT_COLORKEY", False );
1890                     XvSetPortAttribute( p_vout->p_sys->p_display,
1891                                         i_selected_port, autopaint, 1 );
1892                     break;
1893                 }
1894             }
1895
1896             if( p_attr != NULL )
1897             {
1898                 XFree( p_attr );
1899             }
1900         }
1901
1902         if( p_formats != NULL )
1903         {
1904             XFree( p_formats );
1905         }
1906
1907     }
1908
1909     if( i_num_adaptors > 0 )
1910     {
1911         XvFreeAdaptorInfo( p_adaptor );
1912     }
1913
1914     if( i_selected_port == -1 )
1915     {
1916         int i_chroma_tmp = X112VLC_FOURCC( i_chroma );
1917         if( i_requested_adaptor == -1 )
1918         {
1919             msg_Warn( p_vout, "no free XVideo port found for format "
1920                       "0x%.8x (%4.4s)", i_chroma_tmp, (char*)&i_chroma_tmp );
1921         }
1922         else
1923         {
1924             msg_Warn( p_vout, "XVideo adaptor %i does not have a free "
1925                       "XVideo port for format 0x%.8x (%4.4s)",
1926                       i_requested_adaptor, i_chroma_tmp, (char*)&i_chroma_tmp );
1927         }
1928     }
1929
1930     return i_selected_port;
1931 }
1932
1933 /*****************************************************************************
1934  * XVideoReleasePort: release YUV12 port
1935  *****************************************************************************/
1936 static void XVideoReleasePort( vout_thread_t *p_vout, int i_port )
1937 {
1938     XvUngrabPort( p_vout->p_sys->p_display, i_port, CurrentTime );
1939 }
1940 #endif
1941
1942 /*****************************************************************************
1943  * InitDisplay: open and initialize X11 device
1944  *****************************************************************************
1945  * Create a window according to video output given size, and set other
1946  * properties according to the display properties.
1947  *****************************************************************************/
1948 static int InitDisplay( vout_thread_t *p_vout )
1949 {
1950 #ifdef MODULE_NAME_IS_x11
1951     XPixmapFormatValues *       p_formats;                 /* pixmap formats */
1952     XVisualInfo *               p_xvisual;            /* visuals information */
1953     XVisualInfo                 xvisual_template;         /* visual template */
1954     int                         i_count;                       /* array size */
1955 #endif
1956
1957 #ifdef HAVE_SYS_SHM_H
1958     p_vout->p_sys->b_shm = 0;
1959
1960     if( config_GetInt( p_vout, MODULE_STRING "-shm" ) )
1961     {
1962 #   ifdef SYS_DARWIN
1963         /* FIXME: As of 2001-03-16, XFree4 for MacOS X does not support Xshm */
1964 #   else
1965         p_vout->p_sys->b_shm =
1966                   ( XShmQueryExtension( p_vout->p_sys->p_display ) == True );
1967 #   endif
1968
1969         if( !p_vout->p_sys->b_shm )
1970         {
1971             msg_Warn( p_vout, "XShm video extension is unavailable" );
1972         }
1973     }
1974     else
1975     {
1976         msg_Dbg( p_vout, "disabling XShm video extension" );
1977     }
1978
1979 #else
1980     msg_Warn( p_vout, "XShm video extension is unavailable" );
1981
1982 #endif
1983
1984 #ifdef MODULE_NAME_IS_xvideo
1985     /* XXX The brightness and contrast values should be read from environment
1986      * XXX variables... */
1987 #if 0
1988     XVideoSetAttribute( p_vout, "XV_BRIGHTNESS", 0.5 );
1989     XVideoSetAttribute( p_vout, "XV_CONTRAST",   0.5 );
1990 #endif
1991 #endif
1992
1993 #ifdef MODULE_NAME_IS_x11
1994     /* Initialize structure */
1995     p_vout->p_sys->i_screen = DefaultScreen( p_vout->p_sys->p_display );
1996
1997     /* Get screen depth */
1998     p_vout->p_sys->i_screen_depth = XDefaultDepth( p_vout->p_sys->p_display,
1999                                                    p_vout->p_sys->i_screen );
2000     switch( p_vout->p_sys->i_screen_depth )
2001     {
2002     case 8:
2003         /*
2004          * Screen depth is 8bpp. Use PseudoColor visual with private colormap.
2005          */
2006         xvisual_template.screen =   p_vout->p_sys->i_screen;
2007         xvisual_template.class =    DirectColor;
2008         p_xvisual = XGetVisualInfo( p_vout->p_sys->p_display,
2009                                     VisualScreenMask | VisualClassMask,
2010                                     &xvisual_template, &i_count );
2011         if( p_xvisual == NULL )
2012         {
2013             msg_Err( p_vout, "no PseudoColor visual available" );
2014             return VLC_EGENERIC;
2015         }
2016         p_vout->p_sys->i_bytes_per_pixel = 1;
2017         p_vout->output.pf_setpalette = SetPalette;
2018         break;
2019     case 15:
2020     case 16:
2021     case 24:
2022     default:
2023         /*
2024          * Screen depth is higher than 8bpp. TrueColor visual is used.
2025          */
2026         xvisual_template.screen =   p_vout->p_sys->i_screen;
2027         xvisual_template.class =    TrueColor;
2028         p_xvisual = XGetVisualInfo( p_vout->p_sys->p_display,
2029                                     VisualScreenMask | VisualClassMask,
2030                                     &xvisual_template, &i_count );
2031         if( p_xvisual == NULL )
2032         {
2033             msg_Err( p_vout, "no TrueColor visual available" );
2034             return VLC_EGENERIC;
2035         }
2036
2037         p_vout->output.i_rmask = p_xvisual->red_mask;
2038         p_vout->output.i_gmask = p_xvisual->green_mask;
2039         p_vout->output.i_bmask = p_xvisual->blue_mask;
2040
2041         /* There is no difference yet between 3 and 4 Bpp. The only way
2042          * to find the actual number of bytes per pixel is to list supported
2043          * pixmap formats. */
2044         p_formats = XListPixmapFormats( p_vout->p_sys->p_display, &i_count );
2045         p_vout->p_sys->i_bytes_per_pixel = 0;
2046
2047         for( ; i_count-- ; p_formats++ )
2048         {
2049             /* Under XFree4.0, the list contains pixmap formats available
2050              * through all video depths ; so we have to check against current
2051              * depth. */
2052             if( p_formats->depth == (int)p_vout->p_sys->i_screen_depth )
2053             {
2054                 if( p_formats->bits_per_pixel / 8
2055                         > (int)p_vout->p_sys->i_bytes_per_pixel )
2056                 {
2057                     p_vout->p_sys->i_bytes_per_pixel =
2058                                                p_formats->bits_per_pixel / 8;
2059                 }
2060             }
2061         }
2062         break;
2063     }
2064     p_vout->p_sys->p_visual = p_xvisual->visual;
2065     XFree( p_xvisual );
2066 #endif
2067
2068     return VLC_SUCCESS;
2069 }
2070
2071 #ifdef HAVE_SYS_SHM_H
2072 /*****************************************************************************
2073  * CreateShmImage: create an XImage or XvImage using shared memory extension
2074  *****************************************************************************
2075  * Prepare an XImage or XvImage for display function.
2076  * The order of the operations respects the recommandations of the mit-shm
2077  * document by J.Corbet and K.Packard. Most of the parameters were copied from
2078  * there. See http://ftp.xfree86.org/pub/XFree86/4.0/doc/mit-shm.TXT
2079  *****************************************************************************/
2080 static IMAGE_TYPE * CreateShmImage( vout_thread_t *p_vout,
2081                                     Display* p_display, EXTRA_ARGS_SHM,
2082                                     int i_width, int i_height )
2083 {
2084     IMAGE_TYPE *p_image;
2085     Status result;
2086
2087     /* Create XImage / XvImage */
2088 #ifdef MODULE_NAME_IS_xvideo
2089
2090     /* Make sure the buffer is aligned to multiple of 16 */
2091     i_height = ( i_height + 15 ) >> 4 << 4;
2092     i_width = ( i_width + 15 ) >> 4 << 4;
2093
2094     p_image = XvShmCreateImage( p_display, i_xvport, i_chroma, 0,
2095                                 i_width, i_height, p_shm );
2096 #else
2097     p_image = XShmCreateImage( p_display, p_visual, i_depth, ZPixmap, 0,
2098                                p_shm, i_width, i_height );
2099 #endif
2100     if( p_image == NULL )
2101     {
2102         msg_Err( p_vout, "image creation failed" );
2103         return NULL;
2104     }
2105
2106     /* Allocate shared memory segment - 0776 set the access permission
2107      * rights (like umask), they are not yet supported by all X servers */
2108     p_shm->shmid = shmget( IPC_PRIVATE, DATA_SIZE(p_image), IPC_CREAT | 0776 );
2109     if( p_shm->shmid < 0 )
2110     {
2111         msg_Err( p_vout, "cannot allocate shared image data (%s)",
2112                          strerror( errno ) );
2113         IMAGE_FREE( p_image );
2114         return NULL;
2115     }
2116
2117     /* Attach shared memory segment to process (read/write) */
2118     p_shm->shmaddr = p_image->data = shmat( p_shm->shmid, 0, 0 );
2119     if(! p_shm->shmaddr )
2120     {
2121         msg_Err( p_vout, "cannot attach shared memory (%s)",
2122                          strerror(errno));
2123         IMAGE_FREE( p_image );
2124         shmctl( p_shm->shmid, IPC_RMID, 0 );
2125         return NULL;
2126     }
2127
2128     /* Read-only data. We won't be using XShmGetImage */
2129     p_shm->readOnly = True;
2130
2131     /* Attach shared memory segment to X server */
2132     XSynchronize( p_display, True );
2133     b_shm = VLC_TRUE;
2134     result = XShmAttach( p_display, p_shm );
2135     if( result == False || !b_shm )
2136     {
2137         msg_Err( p_vout, "cannot attach shared memory to X server" );
2138         IMAGE_FREE( p_image );
2139         shmctl( p_shm->shmid, IPC_RMID, 0 );
2140         shmdt( p_shm->shmaddr );
2141         return NULL;
2142     }
2143     XSynchronize( p_display, False );
2144
2145     /* Send image to X server. This instruction is required, since having
2146      * built a Shm XImage and not using it causes an error on XCloseDisplay,
2147      * and remember NOT to use XFlush ! */
2148     XSync( p_display, False );
2149
2150 #if 0
2151     /* Mark the shm segment to be removed when there are no more
2152      * attachements, so it is automatic on process exit or after shmdt */
2153     shmctl( p_shm->shmid, IPC_RMID, 0 );
2154 #endif
2155
2156     return p_image;
2157 }
2158 #endif
2159
2160 /*****************************************************************************
2161  * CreateImage: create an XImage or XvImage
2162  *****************************************************************************
2163  * Create a simple image used as a buffer.
2164  *****************************************************************************/
2165 static IMAGE_TYPE * CreateImage( vout_thread_t *p_vout,
2166                                  Display *p_display, EXTRA_ARGS,
2167                                  int i_width, int i_height )
2168 {
2169     byte_t *    p_data;                           /* image data storage zone */
2170     IMAGE_TYPE *p_image;
2171 #ifdef MODULE_NAME_IS_x11
2172     int         i_quantum;                     /* XImage quantum (see below) */
2173     int         i_bytes_per_line;
2174 #endif
2175
2176     /* Allocate memory for image */
2177 #ifdef MODULE_NAME_IS_xvideo
2178
2179     /* Make sure the buffer is aligned to multiple of 16 */
2180     i_height = ( i_height + 15 ) >> 4 << 4;
2181     i_width = ( i_width + 15 ) >> 4 << 4;
2182
2183     p_data = (byte_t *) malloc( i_width * i_height * i_bits_per_pixel / 8 );
2184 #elif defined(MODULE_NAME_IS_x11)
2185     i_bytes_per_line = i_width * i_bytes_per_pixel;
2186     p_data = (byte_t *) malloc( i_bytes_per_line * i_height );
2187 #endif
2188     if( !p_data )
2189     {
2190         msg_Err( p_vout, "out of memory" );
2191         return NULL;
2192     }
2193
2194 #ifdef MODULE_NAME_IS_x11
2195     /* Optimize the quantum of a scanline regarding its size - the quantum is
2196        a diviser of the number of bits between the start of two scanlines. */
2197     if( i_bytes_per_line & 0xf )
2198     {
2199         i_quantum = 0x8;
2200     }
2201     else if( i_bytes_per_line & 0x10 )
2202     {
2203         i_quantum = 0x10;
2204     }
2205     else
2206     {
2207         i_quantum = 0x20;
2208     }
2209 #endif
2210
2211     /* Create XImage. p_data will be automatically freed */
2212 #ifdef MODULE_NAME_IS_xvideo
2213     p_image = XvCreateImage( p_display, i_xvport, i_chroma,
2214                              p_data, i_width, i_height );
2215 #elif defined(MODULE_NAME_IS_x11)
2216     p_image = XCreateImage( p_display, p_visual, i_depth, ZPixmap, 0,
2217                             p_data, i_width, i_height, i_quantum, 0 );
2218 #endif
2219     if( p_image == NULL )
2220     {
2221         msg_Err( p_vout, "XCreateImage() failed" );
2222         free( p_data );
2223         return NULL;
2224     }
2225
2226     return p_image;
2227 }
2228
2229 /*****************************************************************************
2230  * X11ErrorHandler: replace error handler so we can intercept some of them
2231  *****************************************************************************/
2232 static int X11ErrorHandler( Display * display, XErrorEvent * event )
2233 {
2234     /* Ingnore errors on XSetInputFocus()
2235      * (they happen when a window is not yet mapped) */
2236     if( event->request_code == X_SetInputFocus )
2237     {
2238         fprintf(stderr, "XSetInputFocus failed\n");
2239         return 0;
2240     }
2241
2242     if( event->request_code == 150 /* MIT-SHM */ &&
2243         event->minor_code == X_ShmAttach )
2244     {
2245         fprintf(stderr, "XShmAttach failed\n");
2246         b_shm = VLC_FALSE;
2247         return 0;
2248     }
2249
2250     XSetErrorHandler(NULL);
2251     return (XSetErrorHandler(X11ErrorHandler))( display, event );
2252 }
2253
2254 #ifdef MODULE_NAME_IS_x11
2255 /*****************************************************************************
2256  * SetPalette: sets an 8 bpp palette
2257  *****************************************************************************
2258  * This function sets the palette given as an argument. It does not return
2259  * anything, but could later send information on which colors it was unable
2260  * to set.
2261  *****************************************************************************/
2262 static void SetPalette( vout_thread_t *p_vout,
2263                         uint16_t *red, uint16_t *green, uint16_t *blue )
2264 {
2265     int i;
2266     XColor p_colors[255];
2267
2268     /* allocate palette */
2269     for( i = 0; i < 255; i++ )
2270     {
2271         /* kludge: colors are indexed reversely because color 255 seems
2272          * to be reserved for black even if we try to set it to white */
2273         p_colors[ i ].pixel = 255 - i;
2274         p_colors[ i ].pad   = 0;
2275         p_colors[ i ].flags = DoRed | DoGreen | DoBlue;
2276         p_colors[ i ].red   = red[ 255 - i ];
2277         p_colors[ i ].blue  = blue[ 255 - i ];
2278         p_colors[ i ].green = green[ 255 - i ];
2279     }
2280
2281     XStoreColors( p_vout->p_sys->p_display,
2282                   p_vout->p_sys->colormap, p_colors, 255 );
2283 }
2284 #endif
2285
2286 /*****************************************************************************
2287  * Control: control facility for the vout
2288  *****************************************************************************/
2289 static int Control( vout_thread_t *p_vout, int i_query, va_list args )
2290 {
2291     double f_arg;
2292     vlc_bool_t b_arg;
2293
2294     switch( i_query )
2295     {
2296         case VOUT_SET_ZOOM:
2297             if( p_vout->p_sys->p_win->owner_window )
2298                 return vout_ControlWindow( p_vout,
2299                     (void *)p_vout->p_sys->p_win->owner_window, i_query, args);
2300
2301             vlc_mutex_lock( &p_vout->p_sys->lock );
2302
2303             /* Update dimensions */
2304             XResizeWindow( p_vout->p_sys->p_display,
2305                            p_vout->p_sys->p_win->base_window,
2306                            p_vout->i_window_width,
2307                            p_vout->i_window_height );
2308
2309             vlc_mutex_unlock( &p_vout->p_sys->lock );
2310             return VLC_SUCCESS;
2311
2312        case VOUT_CLOSE:
2313             vlc_mutex_lock( &p_vout->p_sys->lock );
2314             XUnmapWindow( p_vout->p_sys->p_display,
2315                           p_vout->p_sys->original_window.base_window );
2316             vlc_mutex_unlock( &p_vout->p_sys->lock );
2317             /* Fall through */
2318
2319        case VOUT_REPARENT:
2320             vlc_mutex_lock( &p_vout->p_sys->lock );
2321             XReparentWindow( p_vout->p_sys->p_display,
2322                              p_vout->p_sys->original_window.base_window,
2323                              DefaultRootWindow( p_vout->p_sys->p_display ),
2324                              0, 0 );
2325             XSync( p_vout->p_sys->p_display, False );
2326             p_vout->p_sys->original_window.owner_window = 0;
2327             vlc_mutex_unlock( &p_vout->p_sys->lock );
2328             return vout_vaControlDefault( p_vout, i_query, args );
2329
2330         case VOUT_SET_STAY_ON_TOP:
2331             if( p_vout->p_sys->p_win->owner_window )
2332                 return vout_ControlWindow( p_vout,
2333                     (void *)p_vout->p_sys->p_win->owner_window, i_query, args);
2334
2335             b_arg = va_arg( args, vlc_bool_t );
2336             vlc_mutex_lock( &p_vout->p_sys->lock );
2337             WindowOnTop( p_vout, b_arg );
2338             vlc_mutex_unlock( &p_vout->p_sys->lock );
2339             return VLC_SUCCESS;
2340
2341        default:
2342             return vout_vaControlDefault( p_vout, i_query, args );
2343     }
2344 }
2345
2346 /*****************************************************************************
2347  * TestNetWMSupport: tests for Extended Window Manager Hints support
2348  *****************************************************************************/
2349 static void TestNetWMSupport( vout_thread_t *p_vout )
2350 {
2351     int i_ret, i_format;
2352     unsigned long i, i_items, i_bytesafter;
2353     Atom net_wm_supported;
2354     union { Atom *p_atom; unsigned char *p_char; } p_args;
2355
2356     p_args.p_atom = NULL;
2357
2358     p_vout->p_sys->b_net_wm_state_fullscreen = VLC_FALSE;
2359     p_vout->p_sys->b_net_wm_state_above = VLC_FALSE;
2360     p_vout->p_sys->b_net_wm_state_below = VLC_FALSE;
2361     p_vout->p_sys->b_net_wm_state_stays_on_top = VLC_FALSE;
2362
2363     net_wm_supported =
2364         XInternAtom( p_vout->p_sys->p_display, "_NET_SUPPORTED", False );
2365
2366     i_ret = XGetWindowProperty( p_vout->p_sys->p_display,
2367                                 DefaultRootWindow( p_vout->p_sys->p_display ),
2368                                 net_wm_supported,
2369                                 0, 16384, False, AnyPropertyType,
2370                                 &net_wm_supported,
2371                                 &i_format, &i_items, &i_bytesafter,
2372                                 (unsigned char **)&p_args );
2373
2374     if( i_ret != Success || i_items == 0 ) return;
2375
2376     msg_Dbg( p_vout, "Window manager supports NetWM" );
2377
2378     p_vout->p_sys->net_wm_state =
2379         XInternAtom( p_vout->p_sys->p_display, "_NET_WM_STATE", False );
2380     p_vout->p_sys->net_wm_state_fullscreen =
2381         XInternAtom( p_vout->p_sys->p_display, "_NET_WM_STATE_FULLSCREEN",
2382                      False );
2383     p_vout->p_sys->net_wm_state_above =
2384         XInternAtom( p_vout->p_sys->p_display, "_NET_WM_STATE_ABOVE", False );
2385     p_vout->p_sys->net_wm_state_below =
2386         XInternAtom( p_vout->p_sys->p_display, "_NET_WM_STATE_BELOW", False );
2387     p_vout->p_sys->net_wm_state_stays_on_top =
2388         XInternAtom( p_vout->p_sys->p_display, "_NET_WM_STATE_STAYS_ON_TOP",
2389                      False );
2390
2391     for( i = 0; i < i_items; i++ )
2392     {
2393         if( p_args.p_atom[i] == p_vout->p_sys->net_wm_state_fullscreen )
2394         {
2395             msg_Dbg( p_vout,
2396                      "Window manager supports _NET_WM_STATE_FULLSCREEN" );
2397             p_vout->p_sys->b_net_wm_state_fullscreen = VLC_TRUE;
2398         }
2399         else if( p_args.p_atom[i] == p_vout->p_sys->net_wm_state_above )
2400         {
2401             msg_Dbg( p_vout, "Window manager supports _NET_WM_STATE_ABOVE" );
2402             p_vout->p_sys->b_net_wm_state_above = VLC_TRUE;
2403         }
2404         else if( p_args.p_atom[i] == p_vout->p_sys->net_wm_state_below )
2405         {
2406             msg_Dbg( p_vout, "Window manager supports _NET_WM_STATE_BELOW" );
2407             p_vout->p_sys->b_net_wm_state_below = VLC_TRUE;
2408         }
2409         else if( p_args.p_atom[i] == p_vout->p_sys->net_wm_state_stays_on_top )
2410         {
2411             msg_Dbg( p_vout,
2412                      "Window manager supports _NET_WM_STATE_STAYS_ON_TOP" );
2413             p_vout->p_sys->b_net_wm_state_stays_on_top = VLC_TRUE;
2414         }
2415     }
2416
2417     XFree( p_args.p_atom );
2418 }
2419
2420 /*****************************************************************************
2421  * Key events handling
2422  *****************************************************************************/
2423 static struct
2424 {
2425     int i_x11key;
2426     int i_vlckey;
2427
2428 } x11keys_to_vlckeys[] =
2429 {
2430     { XK_F1, KEY_F1 }, { XK_F2, KEY_F2 }, { XK_F3, KEY_F3 }, { XK_F4, KEY_F4 },
2431     { XK_F5, KEY_F5 }, { XK_F6, KEY_F6 }, { XK_F7, KEY_F7 }, { XK_F8, KEY_F8 },
2432     { XK_F9, KEY_F9 }, { XK_F10, KEY_F10 }, { XK_F11, KEY_F11 },
2433     { XK_F12, KEY_F12 },
2434
2435     { XK_Return, KEY_ENTER },
2436     { XK_KP_Enter, KEY_ENTER },
2437     { XK_space, KEY_SPACE },
2438     { XK_Escape, KEY_ESC },
2439
2440     { XK_Menu, KEY_MENU },
2441     { XK_Left, KEY_LEFT },
2442     { XK_Right, KEY_RIGHT },
2443     { XK_Up, KEY_UP },
2444     { XK_Down, KEY_DOWN },
2445
2446     { XK_Home, KEY_HOME },
2447     { XK_End, KEY_END },
2448     { XK_Page_Up, KEY_PAGEUP },
2449     { XK_Page_Down, KEY_PAGEDOWN },
2450
2451     { XK_Insert, KEY_INSERT },
2452     { XK_Delete, KEY_DELETE },
2453
2454     { 0, 0 }
2455 };
2456
2457 static int ConvertKey( int i_key )
2458 {
2459     int i;
2460
2461     for( i = 0; x11keys_to_vlckeys[i].i_x11key != 0; i++ )
2462     {
2463         if( x11keys_to_vlckeys[i].i_x11key == i_key )
2464         {
2465             return x11keys_to_vlckeys[i].i_vlckey;
2466         }
2467     }
2468
2469     return 0;
2470 }
2471
2472 /*****************************************************************************
2473  * WindowOnTop: Switches the "always on top" state of the video window.
2474  *****************************************************************************/
2475 static int WindowOnTop( vout_thread_t *p_vout, vlc_bool_t b_on_top )
2476 {
2477     if( p_vout->p_sys->b_net_wm_state_stays_on_top )
2478     {
2479         XClientMessageEvent event;
2480
2481         memset( &event, 0, sizeof( XClientMessageEvent ) );
2482
2483         event.type = ClientMessage;
2484         event.message_type = p_vout->p_sys->net_wm_state;
2485         event.display = p_vout->p_sys->p_display;
2486         event.window = p_vout->p_sys->p_win->base_window;
2487         event.format = 32;
2488         event.data.l[ 0 ] = b_on_top; /* set property */
2489         event.data.l[ 1 ] = p_vout->p_sys->net_wm_state_stays_on_top;
2490
2491         XSendEvent( p_vout->p_sys->p_display,
2492                     DefaultRootWindow( p_vout->p_sys->p_display ),
2493                     False, SubstructureRedirectMask,
2494                     (XEvent*)&event );
2495     }
2496
2497     return VLC_SUCCESS;
2498 }