10 #include "x11_common.h"
19 #include "video_out.h"
23 #include "osdep/timer.h"
27 #include <X11/Xutil.h>
28 #include <X11/Xatom.h>
31 #include <X11/extensions/scrnsaver.h>
35 #include <X11/extensions/dpms.h>
39 #include <X11/extensions/Xinerama.h>
43 #include <X11/extensions/xf86vmode.h>
47 #include <X11/XF86keysym.h>
51 #include <X11/extensions/Xv.h>
52 #include <X11/extensions/Xvlib.h>
54 #include "subopt-helper.h"
57 #include "input/input.h"
58 #include "input/mouse.h"
61 #include "gui/interface.h"
65 #define WIN_LAYER_ONBOTTOM 2
66 #define WIN_LAYER_NORMAL 4
67 #define WIN_LAYER_ONTOP 6
68 #define WIN_LAYER_ABOVE_DOCK 10
70 extern int enable_mouse_movements
;
71 int fs_layer
= WIN_LAYER_ABOVE_DOCK
;
72 static int orig_layer
= 0;
73 static int old_gravity
= NorthWestGravity
;
75 int stop_xscreensaver
= 0;
77 static int dpms_disabled
= 0;
78 static int timeout_save
= 0;
79 static int kdescreensaver_was_running
= 0;
81 char *mDisplayName
= NULL
;
82 Display
*mDisplay
= NULL
;
87 /* output window id */
88 int vo_mouse_autohide
= 0;
90 int vo_fs_type
= 0; // needs to be accessible for GUI X11 code
91 static int vo_fs_flip
= 0;
92 char **vo_fstype_list
;
94 /* 1 means that the WM is metacity (broken as hell) */
95 int metacity_hack
= 0;
97 static Atom XA_NET_SUPPORTED
;
98 static Atom XA_NET_WM_STATE
;
99 static Atom XA_NET_WM_STATE_FULLSCREEN
;
100 static Atom XA_NET_WM_STATE_ABOVE
;
101 static Atom XA_NET_WM_STATE_STAYS_ON_TOP
;
102 static Atom XA_NET_WM_STATE_BELOW
;
103 static Atom XA_NET_WM_PID
;
104 static Atom XA_WIN_PROTOCOLS
;
105 static Atom XA_WIN_LAYER
;
106 static Atom XA_WIN_HINTS
;
107 static Atom XA_BLACKBOX_PID
;
108 static Atom XAWM_PROTOCOLS
;
109 static Atom XAWM_DELETE_WINDOW
;
111 #define XA_INIT(x) XA##x = XInternAtom(mDisplay, #x, False)
113 static int vo_old_x
= 0;
114 static int vo_old_y
= 0;
115 static int vo_old_width
= 0;
116 static int vo_old_height
= 0;
119 XF86VidModeModeInfo
**vidmodes
= NULL
;
120 XF86VidModeModeLine modeline
;
123 static int vo_x11_get_fs_type(int supported
);
127 * Sends the EWMH fullscreen state event.
129 * action: could be one of _NET_WM_STATE_REMOVE -- remove state
130 * _NET_WM_STATE_ADD -- add state
131 * _NET_WM_STATE_TOGGLE -- toggle
133 void vo_x11_ewmh_fullscreen(int action
)
135 assert(action
== _NET_WM_STATE_REMOVE
||
136 action
== _NET_WM_STATE_ADD
|| action
== _NET_WM_STATE_TOGGLE
);
138 if (vo_fs_type
& vo_wm_FULLSCREEN
)
142 /* init X event structure for _NET_WM_FULLSCREEN client message */
143 xev
.xclient
.type
= ClientMessage
;
144 xev
.xclient
.serial
= 0;
145 xev
.xclient
.send_event
= True
;
146 xev
.xclient
.message_type
= XInternAtom(mDisplay
,
147 "_NET_WM_STATE", False
);
148 xev
.xclient
.window
= vo_window
;
149 xev
.xclient
.format
= 32;
150 xev
.xclient
.data
.l
[0] = action
;
151 xev
.xclient
.data
.l
[1] = XInternAtom(mDisplay
,
152 "_NET_WM_STATE_FULLSCREEN",
154 xev
.xclient
.data
.l
[2] = 0;
155 xev
.xclient
.data
.l
[3] = 0;
156 xev
.xclient
.data
.l
[4] = 0;
158 /* finally send that damn thing */
159 if (!XSendEvent(mDisplay
, DefaultRootWindow(mDisplay
), False
,
160 SubstructureRedirectMask
| SubstructureNotifyMask
,
163 mp_msg(MSGT_VO
, MSGL_ERR
, MSGTR_EwmhFullscreenStateFailed
);
168 void vo_hidecursor(Display
* disp
, Window win
)
174 static char bm_no_data
[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
177 return; // do not hide if playing on the root window
179 colormap
= DefaultColormap(disp
, DefaultScreen(disp
));
180 if ( !XAllocNamedColor(disp
, colormap
, "black", &black
, &dummy
) )
182 return; // color alloc failed, give up
184 bm_no
= XCreateBitmapFromData(disp
, win
, bm_no_data
, 8, 8);
185 no_ptr
= XCreatePixmapCursor(disp
, bm_no
, bm_no
, &black
, &black
, 0, 0);
186 XDefineCursor(disp
, win
, no_ptr
);
187 XFreeCursor(disp
, no_ptr
);
189 XFreePixmap(disp
, bm_no
);
190 XFreeColors(disp
,colormap
,&black
.pixel
,1,0);
193 void vo_showcursor(Display
* disp
, Window win
)
197 XDefineCursor(disp
, win
, 0);
200 static int x11_errorhandler(Display
* display
, XErrorEvent
* event
)
205 XGetErrorText(display
, event
->error_code
, (char *) &msg
, MSGLEN
);
207 mp_msg(MSGT_VO
, MSGL_ERR
, "X11 error: %s\n", msg
);
209 mp_msg(MSGT_VO
, MSGL_V
,
210 "Type: %x, display: %p, resourceid: %lx, serial: %lx\n",
211 event
->type
, event
->display
, event
->resourceid
, event
->serial
);
212 mp_msg(MSGT_VO
, MSGL_V
,
213 "Error code: %x, request code: %x, minor code: %x\n",
214 event
->error_code
, event
->request_code
, event
->minor_code
);
217 //exit_player("X11 error");
222 void fstype_help(void)
224 mp_msg(MSGT_VO
, MSGL_INFO
, MSGTR_AvailableFsType
);
225 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_FULL_SCREEN_TYPES\n");
227 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "none",
228 "don't set fullscreen window layer");
229 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "layer",
230 "use _WIN_LAYER hint with default layer");
231 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "layer=<0..15>",
232 "use _WIN_LAYER hint with a given layer number");
233 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "netwm",
234 "force NETWM style");
235 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "above",
236 "use _NETWM_STATE_ABOVE hint if available");
237 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "below",
238 "use _NETWM_STATE_BELOW hint if available");
239 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "fullscreen",
240 "use _NETWM_STATE_FULLSCREEN hint if availale");
241 mp_msg(MSGT_VO
, MSGL_INFO
, " %-15s %s\n", "stays_on_top",
242 "use _NETWM_STATE_STAYS_ON_TOP hint if available");
243 mp_msg(MSGT_VO
, MSGL_INFO
,
244 "You can also negate the settings with simply putting '-' in the beginning");
245 mp_msg(MSGT_VO
, MSGL_INFO
, "\n");
248 static void fstype_dump(int fstype
)
252 mp_msg(MSGT_VO
, MSGL_V
, "[x11] Current fstype setting honours");
253 if (fstype
& vo_wm_LAYER
)
254 mp_msg(MSGT_VO
, MSGL_V
, " LAYER");
255 if (fstype
& vo_wm_FULLSCREEN
)
256 mp_msg(MSGT_VO
, MSGL_V
, " FULLSCREEN");
257 if (fstype
& vo_wm_STAYS_ON_TOP
)
258 mp_msg(MSGT_VO
, MSGL_V
, " STAYS_ON_TOP");
259 if (fstype
& vo_wm_ABOVE
)
260 mp_msg(MSGT_VO
, MSGL_V
, " ABOVE");
261 if (fstype
& vo_wm_BELOW
)
262 mp_msg(MSGT_VO
, MSGL_V
, " BELOW");
263 mp_msg(MSGT_VO
, MSGL_V
, " X atoms\n");
265 mp_msg(MSGT_VO
, MSGL_V
,
266 "[x11] Current fstype setting doesn't honour any X atoms\n");
269 static int net_wm_support_state_test(Atom atom
)
271 #define NET_WM_STATE_TEST(x) { if (atom == XA_NET_WM_STATE_##x) { mp_msg( MSGT_VO,MSGL_V, "[x11] Detected wm supports " #x " state.\n" ); return vo_wm_##x; } }
273 NET_WM_STATE_TEST(FULLSCREEN
);
274 NET_WM_STATE_TEST(ABOVE
);
275 NET_WM_STATE_TEST(STAYS_ON_TOP
);
276 NET_WM_STATE_TEST(BELOW
);
280 static int x11_get_property(Atom type
, Atom
** args
, unsigned long *nitems
)
283 unsigned long bytesafter
;
286 XGetWindowProperty(mDisplay
, mRootWin
, type
, 0, 16384, False
,
287 AnyPropertyType
, &type
, &format
, nitems
,
288 &bytesafter
, (unsigned char **) args
)
292 static int vo_wm_detect(void)
296 unsigned long nitems
;
302 // -- supports layers
303 if (x11_get_property(XA_WIN_PROTOCOLS
, &args
, &nitems
))
305 mp_msg(MSGT_VO
, MSGL_V
, "[x11] Detected wm supports layers.\n");
306 for (i
= 0; i
< nitems
; i
++)
308 if (args
[i
] == XA_WIN_LAYER
)
313 /* metacity is the only window manager I know which reports
314 * supporting only the _WIN_LAYER hint in _WIN_PROTOCOLS.
315 * (what's more support for it is broken) */
319 if (wm
&& (metacity_hack
== 1))
321 // metacity claims to support layers, but it is not the truth :-)
323 mp_msg(MSGT_VO
, MSGL_V
,
324 "[x11] Using workaround for Metacity bugs.\n");
328 if (x11_get_property(XA_NET_SUPPORTED
, &args
, &nitems
))
330 mp_msg(MSGT_VO
, MSGL_V
, "[x11] Detected wm supports NetWM.\n");
331 for (i
= 0; i
< nitems
; i
++)
332 wm
|= net_wm_support_state_test(args
[i
]);
335 // ugly hack for broken OpenBox _NET_WM_STATE_FULLSCREEN support
336 // (in their implementation it only changes internal window state, nothing more!!!)
337 if (wm
& vo_wm_FULLSCREEN
)
339 if (x11_get_property(XA_BLACKBOX_PID
, &args
, &nitems
))
341 mp_msg(MSGT_VO
, MSGL_V
,
342 "[x11] Detected wm is a broken OpenBox.\n");
343 wm
^= vo_wm_FULLSCREEN
;
351 mp_msg(MSGT_VO
, MSGL_V
, "[x11] Unknown wm type...\n");
355 static void init_atoms(void)
357 XA_INIT(_NET_SUPPORTED
);
358 XA_INIT(_NET_WM_STATE
);
359 XA_INIT(_NET_WM_STATE_FULLSCREEN
);
360 XA_INIT(_NET_WM_STATE_ABOVE
);
361 XA_INIT(_NET_WM_STATE_STAYS_ON_TOP
);
362 XA_INIT(_NET_WM_STATE_BELOW
);
363 XA_INIT(_NET_WM_PID
);
364 XA_INIT(_WIN_PROTOCOLS
);
367 XA_INIT(_BLACKBOX_PID
);
368 XA_INIT(WM_PROTOCOLS
);
369 XA_INIT(WM_DELETE_WINDOW
);
372 void update_xinerama_info(void) {
373 int screen
= xinerama_screen
;
374 xinerama_x
= xinerama_y
= 0;
376 if (screen
>= -1 && XineramaIsActive(mDisplay
))
378 XineramaScreenInfo
*screens
;
381 screens
= XineramaQueryScreens(mDisplay
, &num_screens
);
382 if (screen
>= num_screens
)
383 screen
= num_screens
- 1;
385 int x
= vo_dx
+ vo_dwidth
/ 2;
386 int y
= vo_dy
+ vo_dheight
/ 2;
387 for (screen
= num_screens
- 1; screen
> 0; screen
--) {
388 int left
= screens
[screen
].x_org
;
389 int right
= left
+ screens
[screen
].width
;
390 int top
= screens
[screen
].y_org
;
391 int bottom
= top
+ screens
[screen
].height
;
392 if (left
<= x
&& x
<= right
&& top
<= y
&& y
<= bottom
)
398 vo_screenwidth
= screens
[screen
].width
;
399 vo_screenheight
= screens
[screen
].height
;
400 xinerama_x
= screens
[screen
].x_org
;
401 xinerama_y
= screens
[screen
].y_org
;
406 aspect_save_screenres(vo_screenwidth
, vo_screenheight
);
415 // char * DisplayName = ":0.0";
416 // Display * mDisplay;
417 XImage
*mXImage
= NULL
;
420 XWindowAttributes attribs
;
424 WinID
= 0; // use root window
426 if (vo_depthonscreen
)
429 return 1; // already called
432 XSetErrorHandler(x11_errorhandler
);
436 if (!(mDisplayName
= getenv("DISPLAY")))
437 mDisplayName
= strdup(":0.0");
439 dispName
= XDisplayName(mDisplayName
);
442 mp_msg(MSGT_VO
, MSGL_V
, "X11 opening display: %s\n", dispName
);
444 mDisplay
= XOpenDisplay(dispName
);
447 mp_msg(MSGT_VO
, MSGL_ERR
,
448 "vo: couldn't open the X11 display (%s)!\n", dispName
);
451 mScreen
= DefaultScreen(mDisplay
); // screen ID
452 mRootWin
= RootWindow(mDisplay
, mScreen
); // root window ID
460 XF86VidModeGetModeLine(mDisplay
, mScreen
, &clock
, &modeline
);
462 vo_screenwidth
= modeline
.hdisplay
;
463 if (!vo_screenheight
)
464 vo_screenheight
= modeline
.vdisplay
;
469 vo_screenwidth
= DisplayWidth(mDisplay
, mScreen
);
470 if (!vo_screenheight
)
471 vo_screenheight
= DisplayHeight(mDisplay
, mScreen
);
473 // get color depth (from root window, or the best visual):
474 XGetWindowAttributes(mDisplay
, mRootWin
, &attribs
);
475 depth
= attribs
.depth
;
477 if (depth
!= 15 && depth
!= 16 && depth
!= 24 && depth
!= 32)
481 depth
= vo_find_depth_from_visuals(mDisplay
, mScreen
, &visual
);
483 mXImage
= XCreateImage(mDisplay
, visual
, depth
, ZPixmap
,
484 0, NULL
, 1, 1, 8, 1);
487 XGetImage(mDisplay
, mRootWin
, 0, 0, 1, 1, AllPlanes
, ZPixmap
);
489 vo_depthonscreen
= depth
; // display depth on screen
491 // get bits/pixel from XImage structure:
498 * for the depth==24 case, the XImage structures might use
499 * 24 or 32 bits of data per pixel. The global variable
500 * vo_depthonscreen stores the amount of data per pixel in the
503 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp?
505 bpp
= mXImage
->bits_per_pixel
;
506 if ((vo_depthonscreen
+ 7) / 8 != (bpp
+ 7) / 8)
507 vo_depthonscreen
= bpp
; // by A'rpi
509 mXImage
->red_mask
| mXImage
->green_mask
| mXImage
->blue_mask
;
510 mp_msg(MSGT_VO
, MSGL_V
,
511 "vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", mask
,
512 mXImage
->red_mask
, mXImage
->green_mask
, mXImage
->blue_mask
);
513 XDestroyImage(mXImage
);
515 if (((vo_depthonscreen
+ 7) / 8) == 2)
518 vo_depthonscreen
= 15;
519 else if (mask
== 0xFFFF)
520 vo_depthonscreen
= 16;
522 // XCloseDisplay( mDisplay );
523 /* slightly improved local display detection AST */
524 if (strncmp(dispName
, "unix:", 5) == 0)
526 else if (strncmp(dispName
, "localhost:", 10) == 0)
528 if (*dispName
== ':' && atoi(dispName
+ 1) < 10)
532 mp_msg(MSGT_VO
, MSGL_V
,
533 "vo: X11 running at %dx%d with depth %d and %d bpp (\"%s\" => %s display)\n",
534 vo_screenwidth
, vo_screenheight
, depth
, vo_depthonscreen
,
535 dispName
, mLocalDisplay
? "local" : "remote");
537 vo_wm_type
= vo_wm_detect();
539 vo_fs_type
= vo_x11_get_fs_type(vo_wm_type
);
541 fstype_dump(vo_fs_type
);
551 mp_msg(MSGT_VO
, MSGL_V
,
552 "vo: x11 uninit called but X11 not inited..\n");
555 // if( !vo_depthonscreen ) return;
556 mp_msg(MSGT_VO
, MSGL_V
, "vo: uninit ...\n");
557 XSetErrorHandler(NULL
);
558 XCloseDisplay(mDisplay
);
559 vo_depthonscreen
= 0;
563 #include "osdep/keycodes.h"
566 #ifdef XF86XK_AudioPause
567 static void vo_x11_putkey_ext(int keysym
)
571 case XF86XK_AudioPause
:
572 mplayer_put_key(KEY_PAUSE
);
574 case XF86XK_AudioStop
:
575 mplayer_put_key(KEY_STOP
);
577 case XF86XK_AudioPrev
:
578 mplayer_put_key(KEY_PREV
);
580 case XF86XK_AudioNext
:
581 mplayer_put_key(KEY_NEXT
);
583 case XF86XK_AudioLowerVolume
:
584 mplayer_put_key(KEY_VOLUME_DOWN
);
586 case XF86XK_AudioRaiseVolume
:
587 mplayer_put_key(KEY_VOLUME_UP
);
595 void vo_x11_putkey(int key
)
600 mplayer_put_key(KEY_LEFT
);
603 mplayer_put_key(KEY_RIGHT
);
606 mplayer_put_key(KEY_UP
);
609 mplayer_put_key(KEY_DOWN
);
612 mplayer_put_key(' ');
615 mplayer_put_key(KEY_ESC
);
618 mplayer_put_key(KEY_TAB
);
621 mplayer_put_key(KEY_ENTER
);
624 mplayer_put_key(KEY_BS
);
627 mplayer_put_key(KEY_DELETE
);
630 mplayer_put_key(KEY_INSERT
);
633 mplayer_put_key(KEY_HOME
);
636 mplayer_put_key(KEY_END
);
639 mplayer_put_key(KEY_PAGE_UP
);
642 mplayer_put_key(KEY_PAGE_DOWN
);
645 mplayer_put_key(KEY_F
+ 1);
648 mplayer_put_key(KEY_F
+ 2);
651 mplayer_put_key(KEY_F
+ 3);
654 mplayer_put_key(KEY_F
+ 4);
657 mplayer_put_key(KEY_F
+ 5);
660 mplayer_put_key(KEY_F
+ 6);
663 mplayer_put_key(KEY_F
+ 7);
666 mplayer_put_key(KEY_F
+ 8);
669 mplayer_put_key(KEY_F
+ 9);
672 mplayer_put_key(KEY_F
+ 10);
675 mplayer_put_key(KEY_F
+ 11);
678 mplayer_put_key(KEY_F
+ 12);
682 mplayer_put_key('-');
686 mplayer_put_key('+');
690 mplayer_put_key('*');
694 mplayer_put_key('/');
697 mplayer_put_key('<');
700 mplayer_put_key('>');
703 mplayer_put_key(KEY_KP0
);
707 mplayer_put_key(KEY_KP1
);
711 mplayer_put_key(KEY_KP2
);
715 mplayer_put_key(KEY_KP3
);
719 mplayer_put_key(KEY_KP4
);
723 mplayer_put_key(KEY_KP5
);
727 mplayer_put_key(KEY_KP6
);
731 mplayer_put_key(KEY_KP7
);
735 mplayer_put_key(KEY_KP8
);
739 mplayer_put_key(KEY_KP9
);
742 mplayer_put_key(KEY_KPDEC
);
745 mplayer_put_key(KEY_KPINS
);
748 mplayer_put_key(KEY_KPDEL
);
751 mplayer_put_key(KEY_KPENTER
);
754 mplayer_put_key('`');
757 mplayer_put_key('~');
760 mplayer_put_key('!');
763 mplayer_put_key('@');
766 mplayer_put_key('#');
769 mplayer_put_key('$');
772 mplayer_put_key('%');
775 mplayer_put_key('^');
778 mplayer_put_key('&');
781 mplayer_put_key('(');
784 mplayer_put_key(')');
787 mplayer_put_key('_');
790 mplayer_put_key('{');
793 mplayer_put_key('}');
796 mplayer_put_key(':');
799 mplayer_put_key(';');
802 mplayer_put_key('\"');
805 mplayer_put_key('\'');
808 mplayer_put_key(',');
811 mplayer_put_key('.');
814 mplayer_put_key('?');
817 mplayer_put_key('\\');
820 mplayer_put_key('|');
823 mplayer_put_key('=');
826 mplayer_put_key('[');
829 mplayer_put_key(']');
834 if ((key
>= 'a' && key
<= 'z') || (key
>= 'A' && key
<= 'Z') ||
835 (key
>= '0' && key
<= '9'))
836 mplayer_put_key(key
);
842 // ----- Motif header: -------
844 #define MWM_HINTS_FUNCTIONS (1L << 0)
845 #define MWM_HINTS_DECORATIONS (1L << 1)
846 #define MWM_HINTS_INPUT_MODE (1L << 2)
847 #define MWM_HINTS_STATUS (1L << 3)
849 #define MWM_FUNC_ALL (1L << 0)
850 #define MWM_FUNC_RESIZE (1L << 1)
851 #define MWM_FUNC_MOVE (1L << 2)
852 #define MWM_FUNC_MINIMIZE (1L << 3)
853 #define MWM_FUNC_MAXIMIZE (1L << 4)
854 #define MWM_FUNC_CLOSE (1L << 5)
856 #define MWM_DECOR_ALL (1L << 0)
857 #define MWM_DECOR_BORDER (1L << 1)
858 #define MWM_DECOR_RESIZEH (1L << 2)
859 #define MWM_DECOR_TITLE (1L << 3)
860 #define MWM_DECOR_MENU (1L << 4)
861 #define MWM_DECOR_MINIMIZE (1L << 5)
862 #define MWM_DECOR_MAXIMIZE (1L << 6)
864 #define MWM_INPUT_MODELESS 0
865 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1
866 #define MWM_INPUT_SYSTEM_MODAL 2
867 #define MWM_INPUT_FULL_APPLICATION_MODAL 3
868 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL
870 #define MWM_TEAROFF_WINDOW (1L<<0)
881 static MotifWmHints vo_MotifWmHints
;
882 static Atom vo_MotifHints
= None
;
884 void vo_x11_decoration(Display
* vo_Display
, Window w
, int d
)
886 static unsigned int olddecor
= MWM_DECOR_ALL
;
887 static unsigned int oldfuncs
=
888 MWM_FUNC_MOVE
| MWM_FUNC_CLOSE
| MWM_FUNC_MINIMIZE
|
889 MWM_FUNC_MAXIMIZE
| MWM_FUNC_RESIZE
;
892 unsigned long mn
, mb
;
899 XSetTransientForHint(vo_Display
, w
,
900 RootWindow(vo_Display
, mScreen
));
903 vo_MotifHints
= XInternAtom(vo_Display
, "_MOTIF_WM_HINTS", 0);
904 if (vo_MotifHints
!= None
)
908 MotifWmHints
*mhints
= NULL
;
910 XGetWindowProperty(vo_Display
, w
, vo_MotifHints
, 0, 20, False
,
911 vo_MotifHints
, &mtype
, &mformat
, &mn
,
912 &mb
, (unsigned char **) &mhints
);
915 if (mhints
->flags
& MWM_HINTS_DECORATIONS
)
916 olddecor
= mhints
->decorations
;
917 if (mhints
->flags
& MWM_HINTS_FUNCTIONS
)
918 oldfuncs
= mhints
->functions
;
923 memset(&vo_MotifWmHints
, 0, sizeof(MotifWmHints
));
924 vo_MotifWmHints
.flags
=
925 MWM_HINTS_FUNCTIONS
| MWM_HINTS_DECORATIONS
;
928 vo_MotifWmHints
.functions
= oldfuncs
;
932 vo_MotifWmHints
.decorations
=
933 d
| ((vo_fsmode
& 2) ? 0 : MWM_DECOR_MENU
);
935 vo_MotifWmHints
.decorations
=
936 d
| ((vo_fsmode
& 2) ? MWM_DECOR_MENU
: 0);
938 XChangeProperty(vo_Display
, w
, vo_MotifHints
, vo_MotifHints
, 32,
940 (unsigned char *) &vo_MotifWmHints
,
941 (vo_fsmode
& 4) ? 4 : 5);
945 void vo_x11_classhint(Display
* display
, Window window
, char *name
)
948 pid_t pid
= getpid();
950 wmClass
.res_name
= name
;
951 wmClass
.res_class
= "MPlayer";
952 XSetClassHint(display
, window
, &wmClass
);
953 XChangeProperty(display
, window
, XA_NET_WM_PID
, XA_CARDINAL
, 32,
954 PropModeReplace
, (unsigned char *) &pid
, 1);
957 Window vo_window
= None
;
963 void vo_setwindow(Window w
, GC g
)
970 void vo_x11_uninit(void)
973 if (vo_window
!= None
)
974 vo_showcursor(mDisplay
, vo_window
);
978 XFreeGC(mDisplay
, f_gc
);
982 /* destroy window only if it's not controlled by the GUI */
988 XSetBackground(mDisplay
, vo_gc
, 0);
989 XFreeGC(mDisplay
, vo_gc
);
992 if (vo_window
!= None
)
994 XClearWindow(mDisplay
, vo_window
);
999 XUnmapWindow(mDisplay
, vo_window
);
1000 XDestroyWindow(mDisplay
, vo_window
);
1003 XNextEvent(mDisplay
, &xev
);
1005 while (xev
.type
!= DestroyNotify
1006 || xev
.xdestroywindow
.event
!= vo_window
);
1011 vo_old_width
= vo_old_height
= 0;
1015 static unsigned int mouse_timer
;
1016 static int mouse_waiting_hide
;
1018 int vo_x11_check_events(Display
* mydisplay
)
1024 static XComposeStatus stat
;
1026 // unsigned long vo_KeyTable[512];
1028 if ((vo_mouse_autohide
) && mouse_waiting_hide
&&
1029 (GetTimerMS() - mouse_timer
>= 1000)) {
1030 vo_hidecursor(mydisplay
, vo_window
);
1031 mouse_waiting_hide
= 0;
1034 while (XPending(mydisplay
))
1036 XNextEvent(mydisplay
, &Event
);
1040 guiGetEvent(0, (char *) &Event
);
1041 if (vo_window
!= Event
.xany
.window
)
1045 // printf("\rEvent.type=%X \n",Event.type);
1049 ret
|= VO_EVENT_EXPOSE
;
1051 case ConfigureNotify
:
1052 // if (!vo_fs && (Event.xconfigure.width == vo_screenwidth || Event.xconfigure.height == vo_screenheight)) break;
1053 // if (vo_fs && Event.xconfigure.width != vo_screenwidth && Event.xconfigure.height != vo_screenheight) break;
1054 if (vo_window
== None
)
1056 vo_dwidth
= Event
.xconfigure
.width
;
1057 vo_dheight
= Event
.xconfigure
.height
;
1059 /* when resizing, x and y are zero :( */
1060 vo_dx
= Event
.xconfigure
.x
;
1061 vo_dy
= Event
.xconfigure
.y
;
1068 XGetGeometry(mydisplay
, vo_window
, &root
, &foo
, &foo
,
1069 &foo
/*width */ , &foo
/*height */ , &foo
,
1071 XTranslateCoordinates(mydisplay
, vo_window
, root
, 0, 0,
1072 &vo_dx
, &vo_dy
, &win
);
1075 ret
|= VO_EVENT_RESIZE
;
1082 if ( use_gui
) { break; }
1085 XLookupString(&Event
.xkey
, buf
, sizeof(buf
), &keySym
,
1087 #ifdef XF86XK_AudioPause
1088 vo_x11_putkey_ext(keySym
);
1091 ((keySym
& 0xff00) !=
1092 0 ? ((keySym
& 0x00ff) + 256) : (keySym
));
1094 ret
|= VO_EVENT_KEYPRESS
;
1098 if(enable_mouse_movements
)
1101 sprintf(cmd_str
,"set_mouse_pos %i %i",Event
.xmotion
.x
, Event
.xmotion
.y
);
1102 mp_input_queue_cmd(mp_input_parse_cmd(cmd_str
));
1105 if (vo_mouse_autohide
)
1107 vo_showcursor(mydisplay
, vo_window
);
1108 mouse_waiting_hide
= 1;
1109 mouse_timer
= GetTimerMS();
1113 if (vo_mouse_autohide
)
1115 vo_showcursor(mydisplay
, vo_window
);
1116 mouse_waiting_hide
= 1;
1117 mouse_timer
= GetTimerMS();
1120 // Ignore mouse button 1-3 under GUI.
1121 if (use_gui
&& (Event
.xbutton
.button
>= 1)
1122 && (Event
.xbutton
.button
<= 3))
1125 mplayer_put_key((MOUSE_BTN0
+ Event
.xbutton
.button
-
1129 if (vo_mouse_autohide
)
1131 vo_showcursor(mydisplay
, vo_window
);
1132 mouse_waiting_hide
= 1;
1133 mouse_timer
= GetTimerMS();
1136 // Ignore mouse button 1-3 under GUI.
1137 if (use_gui
&& (Event
.xbutton
.button
>= 1)
1138 && (Event
.xbutton
.button
<= 3))
1141 mplayer_put_key(MOUSE_BTN0
+ Event
.xbutton
.button
- 1);
1143 case PropertyNotify
:
1146 XGetAtomName(mydisplay
, Event
.xproperty
.atom
);
1151 // fprintf(stderr,"[ws] PropertyNotify ( 0x%x ) %s ( 0x%x )\n",vo_window,name,Event.xproperty.atom );
1157 vo_hint
.win_gravity
= old_gravity
;
1158 XSetWMNormalHints(mDisplay
, vo_window
, &vo_hint
);
1162 if (Event
.xclient
.message_type
== XAWM_PROTOCOLS
&&
1163 Event
.xclient
.data
.l
[0] == XAWM_DELETE_WINDOW
)
1164 mplayer_put_key(KEY_CLOSE_WIN
);
1172 * \brief sets the size and position of the non-fullscreen window.
1174 void vo_x11_nofs_sizepos(int x
, int y
, int width
, int height
)
1176 vo_x11_sizehint(x
, y
, width
, height
, 0);
1180 vo_old_width
= width
;
1181 vo_old_height
= height
;
1186 vo_dheight
= height
;
1187 XMoveResizeWindow(mDisplay
, vo_window
, x
, y
, width
, height
);
1191 void vo_x11_sizehint(int x
, int y
, int width
, int height
, int max
)
1196 vo_hint
.flags
|= PAspect
;
1197 vo_hint
.min_aspect
.x
= width
;
1198 vo_hint
.min_aspect
.y
= height
;
1199 vo_hint
.max_aspect
.x
= width
;
1200 vo_hint
.max_aspect
.y
= height
;
1203 vo_hint
.flags
|= PPosition
| PSize
;
1206 vo_hint
.width
= width
;
1207 vo_hint
.height
= height
;
1210 vo_hint
.flags
|= PMaxSize
;
1211 vo_hint
.max_width
= width
;
1212 vo_hint
.max_height
= height
;
1215 vo_hint
.max_width
= 0;
1216 vo_hint
.max_height
= 0;
1219 // Set minimum height/width to 4 to avoid off-by-one errors
1220 // and because mga_vid requires a minimal size of 4 pixels.
1221 vo_hint
.flags
|= PMinSize
;
1222 vo_hint
.min_width
= vo_hint
.min_height
= 4;
1224 vo_hint
.flags
|= PWinGravity
;
1225 vo_hint
.win_gravity
= StaticGravity
;
1226 XSetWMNormalHints(mDisplay
, vo_window
, &vo_hint
);
1229 static int vo_x11_get_gnome_layer(Display
* mDisplay
, Window win
)
1233 unsigned long nitems
;
1234 unsigned long bytesafter
;
1235 unsigned short *args
= NULL
;
1237 if (XGetWindowProperty(mDisplay
, win
, XA_WIN_LAYER
, 0, 16384,
1238 False
, AnyPropertyType
, &type
, &format
, &nitems
,
1240 (unsigned char **) &args
) == Success
1241 && nitems
> 0 && args
)
1243 mp_msg(MSGT_VO
, MSGL_V
, "[x11] original window layer is %d.\n",
1247 return WIN_LAYER_NORMAL
;
1251 Window
vo_x11_create_smooth_window(Display
* mDisplay
, Window mRoot
,
1252 Visual
* vis
, int x
, int y
,
1253 unsigned int width
, unsigned int height
,
1254 int depth
, Colormap col_map
)
1256 unsigned long xswamask
= CWBackingStore
| CWBorderPixel
;
1257 XSetWindowAttributes xswa
;
1260 if (col_map
!= CopyFromParent
)
1262 xswa
.colormap
= col_map
;
1263 xswamask
|= CWColormap
;
1265 xswa
.background_pixel
= 0;
1266 xswa
.border_pixel
= 0;
1267 xswa
.backing_store
= Always
;
1268 xswa
.bit_gravity
= StaticGravity
;
1271 XCreateWindow(mDisplay
, mRootWin
, x
, y
, width
, height
, 0, depth
,
1272 CopyFromParent
, vis
, xswamask
, &xswa
);
1273 XSetWMProtocols(mDisplay
, ret_win
, &XAWM_DELETE_WINDOW
, 1);
1275 f_gc
= XCreateGC(mDisplay
, ret_win
, 0, 0);
1276 XSetForeground(mDisplay
, f_gc
, 0);
1282 * \brief create and setup a window suitable for display
1283 * \param vis Visual to use for creating the window
1284 * \param x x position of window
1285 * \param y y position of window
1286 * \param width width of window
1287 * \param height height of window
1288 * \param flags flags for window creation.
1289 * Only VOFLAG_FULLSCREEN is supported so far.
1290 * \param col_map Colourmap for window or CopyFromParent if a specific colormap isn't needed
1291 * \param classname name to use for the classhint
1292 * \param title title for the window
1294 * This also does the grunt-work like setting Window Manager hints etc.
1295 * If vo_window is already set it just moves and resizes it.
1297 void vo_x11_create_vo_window(XVisualInfo
*vis
, int x
, int y
,
1298 unsigned int width
, unsigned int height
, int flags
,
1300 const char *classname
, const char *title
)
1302 if (vo_window
== None
) {
1307 vo_dheight
= height
;
1308 vo_window
= vo_x11_create_smooth_window(mDisplay
, mRootWin
, vis
->visual
,
1309 x
, y
, width
, height
, vis
->depth
, col_map
);
1310 vo_x11_classhint(mDisplay
, vo_window
, classname
);
1311 XStoreName(mDisplay
, vo_window
, title
);
1312 vo_hidecursor(mDisplay
, vo_window
);
1313 XSelectInput(mDisplay
, vo_window
, StructureNotifyMask
);
1314 hint
.x
= x
; hint
.y
= y
;
1315 hint
.width
= width
; hint
.height
= height
;
1316 hint
.flags
= PPosition
| PSize
;
1317 XSetStandardProperties(mDisplay
, vo_window
, title
, title
, None
, NULL
, 0, &hint
);
1318 vo_x11_sizehint(x
, y
, width
, height
, 0);
1320 XMapWindow(mDisplay
, vo_window
);
1321 XClearWindow(mDisplay
, vo_window
);
1324 XNextEvent(mDisplay
, &xev
);
1325 } while (xev
.type
!= MapNotify
|| xev
.xmap
.event
!= vo_window
);
1326 XSelectInput(mDisplay
, vo_window
, NoEventMask
);
1327 XSync(mDisplay
, False
);
1328 vo_x11_selectinput_witherr(mDisplay
, vo_window
,
1329 StructureNotifyMask
| KeyPressMask
| PointerMotionMask
|
1330 ButtonPressMask
| ButtonReleaseMask
| ExposureMask
);
1332 if (vo_ontop
) vo_x11_setlayer(mDisplay
, vo_window
, vo_ontop
);
1333 vo_x11_nofs_sizepos(vo_dx
, vo_dy
, width
, height
);
1334 if (!!vo_fs
!= !!(flags
& VOFLAG_FULLSCREEN
))
1335 vo_x11_fullscreen();
1338 void vo_x11_clearwindow_part(Display
* mDisplay
, Window vo_window
,
1339 int img_width
, int img_height
, int use_fs
)
1341 int u_dheight
, u_dwidth
, left_ov
, left_ov2
;
1346 u_dheight
= use_fs
? vo_screenheight
: vo_dheight
;
1347 u_dwidth
= use_fs
? vo_screenwidth
: vo_dwidth
;
1348 if ((u_dheight
<= img_height
) && (u_dwidth
<= img_width
))
1351 left_ov
= (u_dheight
- img_height
) / 2;
1352 left_ov2
= (u_dwidth
- img_width
) / 2;
1354 XFillRectangle(mDisplay
, vo_window
, f_gc
, 0, 0, u_dwidth
, left_ov
);
1355 XFillRectangle(mDisplay
, vo_window
, f_gc
, 0, u_dheight
- left_ov
- 1,
1356 u_dwidth
, left_ov
+ 1);
1358 if (u_dwidth
> img_width
)
1360 XFillRectangle(mDisplay
, vo_window
, f_gc
, 0, left_ov
, left_ov2
,
1362 XFillRectangle(mDisplay
, vo_window
, f_gc
, u_dwidth
- left_ov2
- 1,
1363 left_ov
, left_ov2
+ 1, img_height
);
1369 void vo_x11_clearwindow(Display
* mDisplay
, Window vo_window
)
1373 XFillRectangle(mDisplay
, vo_window
, f_gc
, 0, 0, vo_screenwidth
,
1380 void vo_x11_setlayer(Display
* mDisplay
, Window vo_window
, int layer
)
1385 if (vo_fs_type
& vo_wm_LAYER
)
1387 XClientMessageEvent xev
;
1390 orig_layer
= vo_x11_get_gnome_layer(mDisplay
, vo_window
);
1392 memset(&xev
, 0, sizeof(xev
));
1393 xev
.type
= ClientMessage
;
1394 xev
.display
= mDisplay
;
1395 xev
.window
= vo_window
;
1396 xev
.message_type
= XA_WIN_LAYER
;
1398 xev
.data
.l
[0] = layer
? fs_layer
: orig_layer
; // if not fullscreen, stay on default layer
1399 xev
.data
.l
[1] = CurrentTime
;
1400 mp_msg(MSGT_VO
, MSGL_V
,
1401 "[x11] Layered style stay on top (layer %ld).\n",
1403 XSendEvent(mDisplay
, mRootWin
, False
, SubstructureNotifyMask
,
1405 } else if (vo_fs_type
& vo_wm_NETWM
)
1407 XClientMessageEvent xev
;
1410 memset(&xev
, 0, sizeof(xev
));
1411 xev
.type
= ClientMessage
;
1412 xev
.message_type
= XA_NET_WM_STATE
;
1413 xev
.display
= mDisplay
;
1414 xev
.window
= vo_window
;
1416 xev
.data
.l
[0] = layer
;
1418 if (vo_fs_type
& vo_wm_STAYS_ON_TOP
)
1419 xev
.data
.l
[1] = XA_NET_WM_STATE_STAYS_ON_TOP
;
1420 else if (vo_fs_type
& vo_wm_ABOVE
)
1421 xev
.data
.l
[1] = XA_NET_WM_STATE_ABOVE
;
1422 else if (vo_fs_type
& vo_wm_FULLSCREEN
)
1423 xev
.data
.l
[1] = XA_NET_WM_STATE_FULLSCREEN
;
1424 else if (vo_fs_type
& vo_wm_BELOW
)
1425 // This is not fallback. We can safely assume that the situation
1426 // where only NETWM_STATE_BELOW is supported doesn't exist.
1427 xev
.data
.l
[1] = XA_NET_WM_STATE_BELOW
;
1429 XSendEvent(mDisplay
, mRootWin
, False
, SubstructureRedirectMask
,
1431 state
= XGetAtomName(mDisplay
, xev
.data
.l
[1]);
1432 mp_msg(MSGT_VO
, MSGL_V
,
1433 "[x11] NET style stay on top (layer %d). Using state %s.\n",
1439 static int vo_x11_get_fs_type(int supported
)
1442 int type
= supported
;
1447 for (i
= 0; vo_fstype_list
[i
]; i
++)
1450 char *arg
= vo_fstype_list
[i
];
1452 if (vo_fstype_list
[i
][0] == '-')
1455 arg
= vo_fstype_list
[i
] + 1;
1458 if (!strncmp(arg
, "layer", 5))
1460 if (!neg
&& (arg
[5] == '='))
1462 char *endptr
= NULL
;
1463 int layer
= strtol(vo_fstype_list
[i
] + 6, &endptr
, 10);
1465 if (endptr
&& *endptr
== '\0' && layer
>= 0
1470 type
&= ~vo_wm_LAYER
;
1472 type
|= vo_wm_LAYER
;
1473 } else if (!strcmp(arg
, "above"))
1476 type
&= ~vo_wm_ABOVE
;
1478 type
|= vo_wm_ABOVE
;
1479 } else if (!strcmp(arg
, "fullscreen"))
1482 type
&= ~vo_wm_FULLSCREEN
;
1484 type
|= vo_wm_FULLSCREEN
;
1485 } else if (!strcmp(arg
, "stays_on_top"))
1488 type
&= ~vo_wm_STAYS_ON_TOP
;
1490 type
|= vo_wm_STAYS_ON_TOP
;
1491 } else if (!strcmp(arg
, "below"))
1494 type
&= ~vo_wm_BELOW
;
1496 type
|= vo_wm_BELOW
;
1497 } else if (!strcmp(arg
, "netwm"))
1500 type
&= ~vo_wm_NETWM
;
1502 type
|= vo_wm_NETWM
;
1503 } else if (!strcmp(arg
, "none"))
1511 void vo_x11_fullscreen(void)
1515 if (WinID
>= 0 || vo_fs_flip
)
1521 if ( ! (vo_fs_type
& vo_wm_FULLSCREEN
) ) // not needed with EWMH fs
1529 vo_x11_ewmh_fullscreen(_NET_WM_STATE_REMOVE
); // removes fullscreen state if wm supports EWMH
1534 vo_x11_ewmh_fullscreen(_NET_WM_STATE_ADD
); // sends fullscreen state to be added if wm supports EWMH
1537 if ( ! (vo_fs_type
& vo_wm_FULLSCREEN
) ) // not needed with EWMH fs
1541 vo_old_width
= vo_dwidth
;
1542 vo_old_height
= vo_dheight
;
1544 update_xinerama_info();
1548 h
= vo_screenheight
;
1553 XGetWMNormalHints(mDisplay
, vo_window
, &vo_hint
, &dummy
);
1554 if (!(vo_hint
.flags
& PWinGravity
))
1555 old_gravity
= NorthWestGravity
;
1557 old_gravity
= vo_hint
.win_gravity
;
1559 if (vo_wm_type
== 0 && !(vo_fsmode
& 16))
1561 XUnmapWindow(mDisplay
, vo_window
); // required for MWM
1562 XWithdrawWindow(mDisplay
, vo_window
, mScreen
);
1566 if ( ! (vo_fs_type
& vo_wm_FULLSCREEN
) ) // not needed with EWMH fs
1568 vo_x11_decoration(mDisplay
, vo_window
, (vo_fs
) ? 0 : 1);
1569 vo_x11_sizehint(x
, y
, w
, h
, 0);
1570 vo_x11_setlayer(mDisplay
, vo_window
, vo_fs
);
1573 XMoveResizeWindow(mDisplay
, vo_window
, x
, y
, w
, h
);
1575 /* some WMs lose ontop after fullscreen */
1576 if ((!(vo_fs
)) & vo_ontop
)
1577 vo_x11_setlayer(mDisplay
, vo_window
, vo_ontop
);
1579 XMapRaised(mDisplay
, vo_window
);
1580 if ( ! (vo_fs_type
& vo_wm_FULLSCREEN
) ) // some WMs change window pos on map
1581 XMoveResizeWindow(mDisplay
, vo_window
, x
, y
, w
, h
);
1582 XRaiseWindow(mDisplay
, vo_window
);
1586 void vo_x11_ontop(void)
1588 vo_ontop
= (!(vo_ontop
));
1590 vo_x11_setlayer(mDisplay
, vo_window
, vo_ontop
);
1594 * XScreensaver stuff
1597 static int got_badwindow
;
1598 static XErrorHandler old_handler
;
1600 static int badwindow_handler(Display
* dpy
, XErrorEvent
* error
)
1602 if (error
->error_code
!= BadWindow
)
1603 return (*old_handler
) (dpy
, error
);
1605 got_badwindow
= True
;
1609 static Window
find_xscreensaver_window(Display
* dpy
)
1612 Window root
= RootWindowOfScreen(DefaultScreenOfDisplay(dpy
));
1613 Window root2
, parent
, *kids
;
1616 unsigned int nkids
= 0;
1618 xs_version
= XInternAtom(dpy
, "_SCREENSAVER_VERSION", True
);
1620 if (!(xs_version
!= None
&&
1621 XQueryTree(dpy
, root
, &root2
, &parent
, &kids
, &nkids
) &&
1625 old_handler
= XSetErrorHandler(badwindow_handler
);
1627 for (i
= 0; i
< nkids
; i
++)
1631 unsigned long nitems
, bytesafter
;
1635 got_badwindow
= False
;
1637 XGetWindowProperty(dpy
, kids
[i
], xs_version
, 0, 200, False
,
1638 XA_STRING
, &type
, &format
, &nitems
,
1639 &bytesafter
, (unsigned char **) &v
);
1644 if (status
== Success
&& type
!= None
)
1651 XSetErrorHandler(old_handler
);
1656 static Window xs_windowid
= 0;
1657 static Atom deactivate
;
1658 static Atom screensaver
;
1660 static unsigned int time_last
;
1662 void xscreensaver_heartbeat(void)
1664 unsigned int time
= GetTimerMS();
1667 if (mDisplay
&& xs_windowid
&& (time
- time_last
) > 30000)
1671 ev
.xany
.type
= ClientMessage
;
1672 ev
.xclient
.display
= mDisplay
;
1673 ev
.xclient
.window
= xs_windowid
;
1674 ev
.xclient
.message_type
= screensaver
;
1675 ev
.xclient
.format
= 32;
1676 memset(&ev
.xclient
.data
, 0, sizeof(ev
.xclient
.data
));
1677 ev
.xclient
.data
.l
[0] = (long) deactivate
;
1679 mp_msg(MSGT_VO
, MSGL_DBG2
, "Pinging xscreensaver.\n");
1680 old_handler
= XSetErrorHandler(badwindow_handler
);
1681 XSendEvent(mDisplay
, xs_windowid
, False
, 0L, &ev
);
1682 XSync(mDisplay
, False
);
1683 XSetErrorHandler(old_handler
);
1687 static void xscreensaver_disable(Display
* dpy
)
1689 mp_msg(MSGT_VO
, MSGL_DBG2
, "xscreensaver_disable()\n");
1691 xs_windowid
= find_xscreensaver_window(dpy
);
1694 mp_msg(MSGT_VO
, MSGL_INFO
, MSGTR_CouldNotFindXScreenSaver
);
1697 mp_msg(MSGT_VO
, MSGL_INFO
,
1698 "xscreensaver_disable: xscreensaver wid=%ld.\n", xs_windowid
);
1700 deactivate
= XInternAtom(dpy
, "DEACTIVATE", False
);
1701 screensaver
= XInternAtom(dpy
, "SCREENSAVER", False
);
1704 static void xscreensaver_enable(void)
1709 static int xss_suspend(Bool suspend
)
1714 int event
, error
, major
, minor
;
1715 if (XScreenSaverQueryExtension(mDisplay
, &event
, &error
) != True
||
1716 XScreenSaverQueryVersion(mDisplay
, &major
, &minor
) != True
)
1718 if (major
< 1 || major
== 1 && minor
< 1)
1720 XScreenSaverSuspend(mDisplay
, suspend
);
1726 * End of XScreensaver stuff
1729 void saver_on(Display
* mDisplay
)
1732 if (xss_suspend(False
))
1738 if (DPMSQueryExtension(mDisplay
, ¬hing
, ¬hing
))
1740 if (!DPMSEnable(mDisplay
))
1741 { // restoring power saving settings
1742 mp_msg(MSGT_VO
, MSGL_WARN
, "DPMS not available?\n");
1745 // DPMS does not seem to be enabled unless we call DPMSInfo
1749 DPMSForceLevel(mDisplay
, DPMSModeOn
);
1750 DPMSInfo(mDisplay
, &state
, &onoff
);
1753 mp_msg(MSGT_VO
, MSGL_V
,
1754 "Successfully enabled DPMS\n");
1757 mp_msg(MSGT_VO
, MSGL_WARN
, "Could not enable DPMS\n");
1767 int dummy
, interval
, prefer_blank
, allow_exp
;
1769 XGetScreenSaver(mDisplay
, &dummy
, &interval
, &prefer_blank
,
1771 XSetScreenSaver(mDisplay
, timeout_save
, interval
, prefer_blank
,
1773 XGetScreenSaver(mDisplay
, &timeout_save
, &interval
, &prefer_blank
,
1778 if (stop_xscreensaver
)
1779 xscreensaver_enable();
1780 if (kdescreensaver_was_running
&& stop_xscreensaver
)
1783 ("dcop kdesktop KScreensaverIface enable true 2>/dev/null >/dev/null");
1784 kdescreensaver_was_running
= 0;
1790 void saver_off(Display
* mDisplay
)
1794 if (xss_suspend(True
))
1797 if (DPMSQueryExtension(mDisplay
, ¬hing
, ¬hing
))
1802 DPMSInfo(mDisplay
, &state
, &onoff
);
1807 mp_msg(MSGT_VO
, MSGL_V
, "Disabling DPMS\n");
1809 stat
= DPMSDisable(mDisplay
); // monitor powersave off
1810 mp_msg(MSGT_VO
, MSGL_V
, "DPMSDisable stat: %d\n", stat
);
1816 int interval
, prefer_blank
, allow_exp
;
1817 XGetScreenSaver(mDisplay
, &timeout_save
, &interval
, &prefer_blank
,
1820 XSetScreenSaver(mDisplay
, 0, interval
, prefer_blank
,
1823 // turning off screensaver
1824 if (stop_xscreensaver
)
1825 xscreensaver_disable(mDisplay
);
1826 if (stop_xscreensaver
&& !kdescreensaver_was_running
)
1828 kdescreensaver_was_running
=
1830 ("dcop kdesktop KScreensaverIface isEnabled 2>/dev/null | sed 's/1/true/g' | grep true 2>/dev/null >/dev/null")
1832 if (kdescreensaver_was_running
)
1834 ("dcop kdesktop KScreensaverIface enable false 2>/dev/null >/dev/null");
1838 static XErrorHandler old_handler
= NULL
;
1839 static int selectinput_err
= 0;
1840 static int x11_selectinput_errorhandler(Display
* display
,
1841 XErrorEvent
* event
)
1843 if (event
->error_code
== BadAccess
)
1845 selectinput_err
= 1;
1846 mp_msg(MSGT_VO
, MSGL_ERR
,
1847 "X11 error: BadAccess during XSelectInput Call\n");
1848 mp_msg(MSGT_VO
, MSGL_ERR
,
1849 "X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)\n");
1850 /* If you think MPlayer should shutdown with this error,
1851 * comment out the following line */
1854 if (old_handler
!= NULL
)
1855 old_handler(display
, event
);
1857 x11_errorhandler(display
, event
);
1861 void vo_x11_selectinput_witherr(Display
* display
, Window w
,
1864 XSync(display
, False
);
1865 old_handler
= XSetErrorHandler(x11_selectinput_errorhandler
);
1866 selectinput_err
= 0;
1867 if (vo_nomouse_input
)
1869 XSelectInput(display
, w
,
1871 (~(ButtonPressMask
| ButtonReleaseMask
)));
1874 XSelectInput(display
, w
, event_mask
);
1876 XSync(display
, False
);
1877 XSetErrorHandler(old_handler
);
1878 if (selectinput_err
)
1880 mp_msg(MSGT_VO
, MSGL_ERR
,
1881 "X11 error: MPlayer discards mouse control (reconfiguring)\n");
1882 XSelectInput(display
, w
,
1885 (ButtonPressMask
| ButtonReleaseMask
|
1886 PointerMotionMask
)));
1891 void vo_vm_switch(uint32_t X
, uint32_t Y
, int *modeline_width
,
1892 int *modeline_height
)
1894 int vm_event
, vm_error
;
1896 int i
, j
, have_vm
= 0;
1900 if (XF86VidModeQueryExtension(mDisplay
, &vm_event
, &vm_error
))
1902 XF86VidModeQueryVersion(mDisplay
, &vm_ver
, &vm_rev
);
1903 mp_msg(MSGT_VO
, MSGL_V
, "XF86VidMode extension v%i.%i\n", vm_ver
,
1907 mp_msg(MSGT_VO
, MSGL_WARN
,
1908 "XF86VidMode extension not available.\n");
1912 if (vidmodes
== NULL
)
1913 XF86VidModeGetAllModeLines(mDisplay
, mScreen
, &modecount
,
1916 *modeline_width
= vidmodes
[0]->hdisplay
;
1917 *modeline_height
= vidmodes
[0]->vdisplay
;
1919 for (i
= 1; i
< modecount
; i
++)
1920 if ((vidmodes
[i
]->hdisplay
>= X
)
1921 && (vidmodes
[i
]->vdisplay
>= Y
))
1922 if ((vidmodes
[i
]->hdisplay
<= *modeline_width
)
1923 && (vidmodes
[i
]->vdisplay
<= *modeline_height
))
1925 *modeline_width
= vidmodes
[i
]->hdisplay
;
1926 *modeline_height
= vidmodes
[i
]->vdisplay
;
1930 mp_msg(MSGT_VO
, MSGL_INFO
, MSGTR_SelectedVideoMode
,
1931 *modeline_width
, *modeline_height
, X
, Y
);
1932 XF86VidModeLockModeSwitch(mDisplay
, mScreen
, 0);
1933 XF86VidModeSwitchToMode(mDisplay
, mScreen
, vidmodes
[j
]);
1934 XF86VidModeSwitchToMode(mDisplay
, mScreen
, vidmodes
[j
]);
1935 X
= (vo_screenwidth
- *modeline_width
) / 2;
1936 Y
= (vo_screenheight
- *modeline_height
) / 2;
1937 XF86VidModeSetViewPort(mDisplay
, mScreen
, X
, Y
);
1941 void vo_vm_close(Display
* dpy
)
1944 if (vidmodes
!= NULL
&& vo_window
!= None
)
1946 if (vidmodes
!= NULL
)
1952 screen
= DefaultScreen(dpy
);
1956 XF86VidModeGetAllModeLines(mDisplay
, mScreen
, &modecount
,
1958 for (i
= 0; i
< modecount
; i
++)
1959 if ((vidmodes
[i
]->hdisplay
== vo_screenwidth
)
1960 && (vidmodes
[i
]->vdisplay
== vo_screenheight
))
1962 mp_msg(MSGT_VO
, MSGL_INFO
,
1963 "Returning to original mode %dx%d\n",
1964 vo_screenwidth
, vo_screenheight
);
1968 XF86VidModeSwitchToMode(dpy
, screen
, vidmodes
[i
]);
1969 XF86VidModeSwitchToMode(dpy
, screen
, vidmodes
[i
]);
1976 #endif /* X11_FULLSCREEN */
1980 * Scan the available visuals on this Display/Screen. Try to find
1981 * the 'best' available TrueColor visual that has a decent color
1982 * depth (at least 15bit). If there are multiple visuals with depth
1983 * >= 15bit, we prefer visuals with a smaller color depth.
1985 int vo_find_depth_from_visuals(Display
* dpy
, int screen
,
1986 Visual
** visual_return
)
1988 XVisualInfo visual_tmpl
;
1989 XVisualInfo
*visuals
;
1991 int bestvisual
= -1;
1992 int bestvisual_depth
= -1;
1994 visual_tmpl
.screen
= screen
;
1995 visual_tmpl
.class = TrueColor
;
1996 visuals
= XGetVisualInfo(dpy
,
1997 VisualScreenMask
| VisualClassMask
,
1998 &visual_tmpl
, &nvisuals
);
1999 if (visuals
!= NULL
)
2001 for (i
= 0; i
< nvisuals
; i
++)
2003 mp_msg(MSGT_VO
, MSGL_V
,
2004 "vo: X11 truecolor visual %#lx, depth %d, R:%lX G:%lX B:%lX\n",
2005 visuals
[i
].visualid
, visuals
[i
].depth
,
2006 visuals
[i
].red_mask
, visuals
[i
].green_mask
,
2007 visuals
[i
].blue_mask
);
2009 * Save the visual index and its depth, if this is the first
2010 * truecolor visul, or a visual that is 'preferred' over the
2011 * previous 'best' visual.
2013 if (bestvisual_depth
== -1
2014 || (visuals
[i
].depth
>= 15
2015 && (visuals
[i
].depth
< bestvisual_depth
2016 || bestvisual_depth
< 15)))
2019 bestvisual_depth
= visuals
[i
].depth
;
2023 if (bestvisual
!= -1 && visual_return
!= NULL
)
2024 *visual_return
= visuals
[bestvisual
].visual
;
2028 return bestvisual_depth
;
2032 static Colormap cmap
= None
;
2033 static XColor cols
[256];
2034 static int cm_size
, red_mask
, green_mask
, blue_mask
;
2037 Colormap
vo_x11_create_colormap(XVisualInfo
* vinfo
)
2039 unsigned k
, r
, g
, b
, ru
, gu
, bu
, m
, rv
, gv
, bv
, rvu
, gvu
, bvu
;
2041 if (vinfo
->class != DirectColor
)
2042 return XCreateColormap(mDisplay
, mRootWin
, vinfo
->visual
,
2045 /* can this function get called twice or more? */
2048 cm_size
= vinfo
->colormap_size
;
2049 red_mask
= vinfo
->red_mask
;
2050 green_mask
= vinfo
->green_mask
;
2051 blue_mask
= vinfo
->blue_mask
;
2052 ru
= (red_mask
& (red_mask
- 1)) ^ red_mask
;
2053 gu
= (green_mask
& (green_mask
- 1)) ^ green_mask
;
2054 bu
= (blue_mask
& (blue_mask
- 1)) ^ blue_mask
;
2055 rvu
= 65536ull * ru
/ (red_mask
+ ru
);
2056 gvu
= 65536ull * gu
/ (green_mask
+ gu
);
2057 bvu
= 65536ull * bu
/ (blue_mask
+ bu
);
2060 m
= DoRed
| DoGreen
| DoBlue
;
2061 for (k
= 0; k
< cm_size
; k
++)
2065 cols
[k
].pixel
= r
| g
| b
;
2070 t
= (r
+ ru
) & red_mask
;
2074 t
= (g
+ gu
) & green_mask
;
2078 t
= (b
+ bu
) & blue_mask
;
2086 cmap
= XCreateColormap(mDisplay
, mRootWin
, vinfo
->visual
, AllocAll
);
2087 XStoreColors(mDisplay
, cmap
, cols
, cm_size
);
2092 * Via colormaps/gamma ramps we can do gamma, brightness, contrast,
2093 * hue and red/green/blue intensity, but we cannot do saturation.
2094 * Currently only gamma, brightness and contrast are implemented.
2095 * Is there sufficient interest for hue and/or red/green/blue intensity?
2097 /* these values have range [-100,100] and are initially 0 */
2098 static int vo_gamma
= 0;
2099 static int vo_brightness
= 0;
2100 static int vo_contrast
= 0;
2103 uint32_t vo_x11_set_equalizer(char *name
, int value
)
2105 float gamma
, brightness
, contrast
;
2110 * IMPLEMENTME: consider using XF86VidModeSetGammaRamp in the case
2111 * of TrueColor-ed window but be careful:
2112 * Unlike the colormaps, which are private for the X client
2113 * who created them and thus automatically destroyed on client
2114 * disconnect, this gamma ramp is a system-wide (X-server-wide)
2115 * setting and _must_ be restored before the process exits.
2116 * Unforunately when the process crashes (or gets killed
2117 * for some reason) it is impossible to restore the setting,
2118 * and such behaviour could be rather annoying for the users.
2123 if (!strcasecmp(name
, "brightness"))
2124 vo_brightness
= value
;
2125 else if (!strcasecmp(name
, "contrast"))
2126 vo_contrast
= value
;
2127 else if (!strcasecmp(name
, "gamma"))
2132 brightness
= 0.01 * vo_brightness
;
2133 contrast
= tan(0.0095 * (vo_contrast
+ 100) * M_PI
/ 4);
2134 gamma
= pow(2, -0.02 * vo_gamma
);
2136 rf
= (float) ((red_mask
& (red_mask
- 1)) ^ red_mask
) / red_mask
;
2137 gf
= (float) ((green_mask
& (green_mask
- 1)) ^ green_mask
) /
2139 bf
= (float) ((blue_mask
& (blue_mask
- 1)) ^ blue_mask
) / blue_mask
;
2141 /* now recalculate the colormap using the newly set value */
2142 for (k
= 0; k
< cm_size
; k
++)
2146 s
= pow(rf
* k
, gamma
);
2147 s
= (s
- 0.5) * contrast
+ 0.5;
2153 cols
[k
].red
= (unsigned short) (s
* 65535);
2155 s
= pow(gf
* k
, gamma
);
2156 s
= (s
- 0.5) * contrast
+ 0.5;
2162 cols
[k
].green
= (unsigned short) (s
* 65535);
2164 s
= pow(bf
* k
, gamma
);
2165 s
= (s
- 0.5) * contrast
+ 0.5;
2171 cols
[k
].blue
= (unsigned short) (s
* 65535);
2174 XStoreColors(mDisplay
, cmap
, cols
, cm_size
);
2179 uint32_t vo_x11_get_equalizer(char *name
, int *value
)
2183 if (!strcasecmp(name
, "brightness"))
2184 *value
= vo_brightness
;
2185 else if (!strcasecmp(name
, "contrast"))
2186 *value
= vo_contrast
;
2187 else if (!strcasecmp(name
, "gamma"))
2195 int vo_xv_set_eq(uint32_t xv_port
, char *name
, int value
)
2197 XvAttribute
*attributes
;
2198 int i
, howmany
, xv_atom
;
2200 mp_dbg(MSGT_VO
, MSGL_V
, "xv_set_eq called! (%s, %d)\n", name
, value
);
2202 /* get available attributes */
2203 attributes
= XvQueryPortAttributes(mDisplay
, xv_port
, &howmany
);
2204 for (i
= 0; i
< howmany
&& attributes
; i
++)
2205 if (attributes
[i
].flags
& XvSettable
)
2207 xv_atom
= XInternAtom(mDisplay
, attributes
[i
].name
, True
);
2208 /* since we have SET_DEFAULTS first in our list, we can check if it's available
2209 then trigger it if it's ok so that the other values are at default upon query */
2210 if (xv_atom
!= None
)
2212 int hue
= 0, port_value
, port_min
, port_max
;
2214 if (!strcmp(attributes
[i
].name
, "XV_BRIGHTNESS") &&
2215 (!strcasecmp(name
, "brightness")))
2217 else if (!strcmp(attributes
[i
].name
, "XV_CONTRAST") &&
2218 (!strcasecmp(name
, "contrast")))
2220 else if (!strcmp(attributes
[i
].name
, "XV_SATURATION") &&
2221 (!strcasecmp(name
, "saturation")))
2223 else if (!strcmp(attributes
[i
].name
, "XV_HUE") &&
2224 (!strcasecmp(name
, "hue")))
2229 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
2230 if (!strcmp(attributes
[i
].name
, "XV_RED_INTENSITY") &&
2231 (!strcasecmp(name
, "red_intensity")))
2233 else if (!strcmp(attributes
[i
].name
, "XV_GREEN_INTENSITY")
2234 && (!strcasecmp(name
, "green_intensity")))
2236 else if (!strcmp(attributes
[i
].name
, "XV_BLUE_INTENSITY")
2237 && (!strcasecmp(name
, "blue_intensity")))
2242 port_min
= attributes
[i
].min_value
;
2243 port_max
= attributes
[i
].max_value
;
2245 /* nvidia hue workaround */
2246 if (hue
&& port_min
== 0 && port_max
== 360)
2250 0) ? (port_value
- 100) : (port_value
+ 100);
2256 (port_value
+ 100) * (port_max
- port_min
) / 200 +
2258 XvSetPortAttribute(mDisplay
, xv_port
, xv_atom
, port_value
);
2265 int vo_xv_get_eq(uint32_t xv_port
, char *name
, int *value
)
2268 XvAttribute
*attributes
;
2269 int i
, howmany
, xv_atom
;
2271 /* get available attributes */
2272 attributes
= XvQueryPortAttributes(mDisplay
, xv_port
, &howmany
);
2273 for (i
= 0; i
< howmany
&& attributes
; i
++)
2274 if (attributes
[i
].flags
& XvGettable
)
2276 xv_atom
= XInternAtom(mDisplay
, attributes
[i
].name
, True
);
2277 /* since we have SET_DEFAULTS first in our list, we can check if it's available
2278 then trigger it if it's ok so that the other values are at default upon query */
2279 if (xv_atom
!= None
)
2281 int val
, port_value
= 0, port_min
, port_max
;
2283 XvGetPortAttribute(mDisplay
, xv_port
, xv_atom
,
2286 port_min
= attributes
[i
].min_value
;
2287 port_max
= attributes
[i
].max_value
;
2289 (port_value
- port_min
) * 200 / (port_max
- port_min
) -
2292 if (!strcmp(attributes
[i
].name
, "XV_BRIGHTNESS") &&
2293 (!strcasecmp(name
, "brightness")))
2295 else if (!strcmp(attributes
[i
].name
, "XV_CONTRAST") &&
2296 (!strcasecmp(name
, "contrast")))
2298 else if (!strcmp(attributes
[i
].name
, "XV_SATURATION") &&
2299 (!strcasecmp(name
, "saturation")))
2301 else if (!strcmp(attributes
[i
].name
, "XV_HUE") &&
2302 (!strcasecmp(name
, "hue")))
2304 /* nasty nvidia detect */
2305 if (port_min
== 0 && port_max
== 360)
2306 *value
= (val
>= 0) ? (val
- 100) : (val
+ 100);
2310 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
2311 if (!strcmp(attributes
[i
].name
, "XV_RED_INTENSITY") &&
2312 (!strcasecmp(name
, "red_intensity")))
2314 else if (!strcmp(attributes
[i
].name
, "XV_GREEN_INTENSITY")
2315 && (!strcasecmp(name
, "green_intensity")))
2317 else if (!strcmp(attributes
[i
].name
, "XV_BLUE_INTENSITY")
2318 && (!strcasecmp(name
, "blue_intensity")))
2323 mp_dbg(MSGT_VO
, MSGL_V
, "xv_get_eq called! (%s, %d)\n",
2331 /** \brief contains flags changing the execution of the colorkeying code */
2332 xv_ck_info_t xv_ck_info
= { CK_METHOD_MANUALFILL
, CK_SRC_CUR
};
2333 unsigned long xv_colorkey
; ///< The color used for manual colorkeying.
2334 unsigned int xv_port
; ///< The selected Xv port.
2337 * \brief Interns the requested atom if it is available.
2339 * \param atom_name String containing the name of the requested atom.
2341 * \return Returns the atom if available, else None is returned.
2344 static Atom
xv_intern_atom_if_exists( char const * atom_name
)
2346 XvAttribute
* attributes
;
2348 Atom xv_atom
= None
;
2350 attributes
= XvQueryPortAttributes( mDisplay
, xv_port
, &attrib_count
);
2351 if( attributes
!=NULL
)
2353 for ( i
= 0; i
< attrib_count
; ++i
)
2355 if ( strcmp(attributes
[i
].name
, atom_name
) == 0 )
2357 xv_atom
= XInternAtom( mDisplay
, atom_name
, False
);
2358 break; // found what we want, break out
2361 XFree( attributes
);
2368 * \brief Try to enable vsync for xv.
2369 * \return Returns -1 if not available, 0 on failure and 1 on success.
2371 int vo_xv_enable_vsync(void)
2373 Atom xv_atom
= xv_intern_atom_if_exists("XV_SYNC_TO_VBLANK");
2374 if (xv_atom
== None
)
2376 return XvSetPortAttribute(mDisplay
, xv_port
, xv_atom
, 1) == Success
;
2380 * \brief Get maximum supported source image dimensions.
2382 * This function does not set the variables pointed to by
2383 * width and height if the information could not be retrieved,
2384 * so the caller is reponsible for properly initializing them.
2386 * \param width [out] The maximum width gets stored here.
2387 * \param height [out] The maximum height gets stored here.
2390 void vo_xv_get_max_img_dim( uint32_t * width
, uint32_t * height
)
2392 XvEncodingInfo
* encodings
;
2393 //unsigned long num_encodings, idx; to int or too long?!
2394 unsigned int num_encodings
, idx
;
2396 XvQueryEncodings( mDisplay
, xv_port
, &num_encodings
, &encodings
);
2400 for ( idx
= 0; idx
< num_encodings
; ++idx
)
2402 if ( strcmp( encodings
[idx
].name
, "XV_IMAGE" ) == 0 )
2404 *width
= encodings
[idx
].width
;
2405 *height
= encodings
[idx
].height
;
2411 mp_msg( MSGT_VO
, MSGL_V
,
2412 "[xv common] Maximum source image dimensions: %ux%u\n",
2415 XvFreeEncodingInfo( encodings
);
2419 * \brief Print information about the colorkey method and source.
2421 * \param ck_handling Integer value containing the information about
2422 * colorkey handling (see x11_common.h).
2424 * Outputs the content of |ck_handling| as a readable message.
2427 void vo_xv_print_ck_info(void)
2429 mp_msg( MSGT_VO
, MSGL_V
, "[xv common] " );
2431 switch ( xv_ck_info
.method
)
2433 case CK_METHOD_NONE
:
2434 mp_msg( MSGT_VO
, MSGL_V
, "Drawing no colorkey.\n" ); return;
2435 case CK_METHOD_AUTOPAINT
:
2436 mp_msg( MSGT_VO
, MSGL_V
, "Colorkey is drawn by Xv." ); break;
2437 case CK_METHOD_MANUALFILL
:
2438 mp_msg( MSGT_VO
, MSGL_V
, "Drawing colorkey manually." ); break;
2439 case CK_METHOD_BACKGROUND
:
2440 mp_msg( MSGT_VO
, MSGL_V
, "Colorkey is drawn as window background." ); break;
2443 mp_msg( MSGT_VO
, MSGL_V
, "\n[xv common] " );
2445 switch ( xv_ck_info
.source
)
2448 mp_msg( MSGT_VO
, MSGL_V
, "Using colorkey from Xv (0x%06lx).\n",
2452 if ( xv_ck_info
.method
== CK_METHOD_AUTOPAINT
)
2454 mp_msg( MSGT_VO
, MSGL_V
,
2455 "Ignoring colorkey from MPlayer (0x%06lx).\n",
2460 mp_msg( MSGT_VO
, MSGL_V
,
2461 "Using colorkey from MPlayer (0x%06lx)."
2462 " Use -colorkey to change.\n",
2467 mp_msg( MSGT_VO
, MSGL_V
,
2468 "Setting and using colorkey from MPlayer (0x%06lx)."
2469 " Use -colorkey to change.\n",
2475 * \brief Init colorkey depending on the settings in xv_ck_info.
2477 * \return Returns 0 on failure and 1 on success.
2479 * Sets the colorkey variable according to the CK_SRC_* and CK_METHOD_*
2480 * flags in xv_ck_info.
2484 * - manual colorkey drawing ( CK_METHOD_MANUALFILL )
2485 * - set colorkey as window background ( CK_METHOD_BACKGROUND )
2486 * - let Xv paint the colorkey ( CK_METHOD_AUTOPAINT )
2488 * - use currently set colorkey ( CK_SRC_CUR )
2489 * - use colorkey in vo_colorkey ( CK_SRC_USE )
2490 * - use and set colorkey in vo_colorkey ( CK_SRC_SET )
2492 * NOTE: If vo_colorkey has bits set after the first 3 low order bytes
2493 * we don't draw anything as this means it was forced to off.
2495 int vo_xv_init_colorkey(void)
2500 /* check if colorkeying is needed */
2501 xv_atom
= xv_intern_atom_if_exists( "XV_COLORKEY" );
2503 /* if we have to deal with colorkeying ... */
2504 if( xv_atom
!= None
&& !(vo_colorkey
& 0xFF000000) )
2506 /* check if we should use the colorkey specified in vo_colorkey */
2507 if ( xv_ck_info
.source
!= CK_SRC_CUR
)
2509 xv_colorkey
= vo_colorkey
;
2511 /* check if we have to set the colorkey too */
2512 if ( xv_ck_info
.source
== CK_SRC_SET
)
2514 xv_atom
= XInternAtom(mDisplay
, "XV_COLORKEY",False
);
2516 rez
= XvSetPortAttribute( mDisplay
, xv_port
, xv_atom
, vo_colorkey
);
2517 if ( rez
!= Success
)
2519 mp_msg( MSGT_VO
, MSGL_FATAL
,
2520 "[xv common] Couldn't set colorkey!\n" );
2521 return 0; // error setting colorkey
2529 rez
=XvGetPortAttribute(mDisplay
,xv_port
, xv_atom
, &colorkey_ret
);
2530 if ( rez
== Success
)
2532 xv_colorkey
= colorkey_ret
;
2536 mp_msg( MSGT_VO
, MSGL_FATAL
,
2537 "[xv common] Couldn't get colorkey!"
2538 "Maybe the selected Xv port has no overlay.\n" );
2539 return 0; // error getting colorkey
2543 xv_atom
= xv_intern_atom_if_exists( "XV_AUTOPAINT_COLORKEY" );
2545 /* should we draw the colorkey ourselves or activate autopainting? */
2546 if ( xv_ck_info
.method
== CK_METHOD_AUTOPAINT
)
2548 rez
= !Success
; // reset rez to something different than Success
2550 if ( xv_atom
!= None
) // autopaint is supported
2552 rez
= XvSetPortAttribute( mDisplay
, xv_port
, xv_atom
, 1 );
2555 if ( rez
!= Success
)
2557 // fallback to manual colorkey drawing
2558 xv_ck_info
.method
= CK_METHOD_MANUALFILL
;
2561 else // disable colorkey autopainting if supported
2563 if ( xv_atom
!= None
) // we have autopaint attribute
2565 XvSetPortAttribute( mDisplay
, xv_port
, xv_atom
, 0 );
2569 else // do no colorkey drawing at all
2571 xv_ck_info
.method
= CK_METHOD_NONE
;
2572 } /* end: should we draw colorkey */
2574 /* output information about the current colorkey settings */
2575 vo_xv_print_ck_info();
2577 return 1; // success
2581 * \brief Draw the colorkey on the video window.
2583 * Draws the colorkey depending on the set method ( colorkey_handling ).
2585 * Also draws the black bars ( when the video doesn't fit the display in
2586 * fullscreen ) separately, so they don't overlap with the video area.
2587 * It doesn't call XFlush.
2590 void vo_xv_draw_colorkey( int32_t x
, int32_t y
,
2591 int32_t w
, int32_t h
)
2593 if( xv_ck_info
.method
== CK_METHOD_MANUALFILL
||
2594 xv_ck_info
.method
== CK_METHOD_BACKGROUND
)//less tearing than XClearWindow()
2596 XSetForeground( mDisplay
, vo_gc
, xv_colorkey
);
2597 XFillRectangle( mDisplay
, vo_window
, vo_gc
,
2602 /* draw black bars if needed */
2603 /* TODO! move this to vo_x11_clearwindow_part() */
2606 XSetForeground( mDisplay
, vo_gc
, 0 );
2607 /* making non-overlap fills, requires 8 checks instead of 4 */
2609 XFillRectangle( mDisplay
, vo_window
, vo_gc
,
2613 XFillRectangle( mDisplay
, vo_window
, vo_gc
,
2615 x
, vo_screenheight
);
2616 if (x
+ w
< vo_screenwidth
)
2617 XFillRectangle( mDisplay
, vo_window
, vo_gc
,
2619 vo_screenwidth
, vo_screenheight
);
2620 if (y
+ h
< vo_screenheight
)
2621 XFillRectangle( mDisplay
, vo_window
, vo_gc
,
2623 vo_screenwidth
, vo_screenheight
);
2627 /** \brief Tests if a valid argument for the ck suboption was given. */
2628 int xv_test_ck( void * arg
)
2630 strarg_t
* strarg
= (strarg_t
*)arg
;
2632 if ( strargcmp( strarg
, "use" ) == 0 ||
2633 strargcmp( strarg
, "set" ) == 0 ||
2634 strargcmp( strarg
, "cur" ) == 0 )
2641 /** \brief Tests if a valid arguments for the ck-method suboption was given. */
2642 int xv_test_ckm( void * arg
)
2644 strarg_t
* strarg
= (strarg_t
*)arg
;
2646 if ( strargcmp( strarg
, "bg" ) == 0 ||
2647 strargcmp( strarg
, "man" ) == 0 ||
2648 strargcmp( strarg
, "auto" ) == 0 )
2657 * \brief Modify the colorkey_handling var according to str
2659 * Checks if a valid pointer ( not NULL ) to the string
2660 * was given. And in that case modifies the colorkey_handling
2661 * var to reflect the requested behaviour.
2662 * If nothing happens the content of colorkey_handling stays
2665 * \param str Pointer to the string or NULL
2668 void xv_setup_colorkeyhandling( char const * ck_method_str
,
2669 char const * ck_str
)
2671 /* check if a valid pointer to the string was passed */
2674 if ( strncmp( ck_str
, "use", 3 ) == 0 )
2676 xv_ck_info
.source
= CK_SRC_USE
;
2678 else if ( strncmp( ck_str
, "set", 3 ) == 0 )
2680 xv_ck_info
.source
= CK_SRC_SET
;
2683 /* check if a valid pointer to the string was passed */
2684 if ( ck_method_str
)
2686 if ( strncmp( ck_method_str
, "bg", 2 ) == 0 )
2688 xv_ck_info
.method
= CK_METHOD_BACKGROUND
;
2690 else if ( strncmp( ck_method_str
, "man", 3 ) == 0 )
2692 xv_ck_info
.method
= CK_METHOD_MANUALFILL
;
2694 else if ( strncmp( ck_method_str
, "auto", 4 ) == 0 )
2696 xv_ck_info
.method
= CK_METHOD_AUTOPAINT
;