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