rpm: Remove MEncoder from rpm packaging
[mplayer/glamo.git] / libvo / x11_common.c
blob596645662ccbb09d6da7be1955827bbe4ccf9956
1 /*
2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <math.h>
22 #include <inttypes.h>
23 #include <limits.h>
25 #include "config.h"
26 #include "options.h"
27 #include "mp_msg.h"
28 #include "mp_fifo.h"
29 #include "libavutil/common.h"
30 #include "x11_common.h"
31 #include "talloc.h"
33 #ifdef X11_FULLSCREEN
35 #include <string.h>
36 #include <unistd.h>
37 #include <assert.h>
39 #include "video_out.h"
40 #include "aspect.h"
41 #include "geometry.h"
42 #include "osdep/timer.h"
44 #include <X11/Xmd.h>
45 #include <X11/Xlib.h>
46 #include <X11/Xutil.h>
47 #include <X11/Xatom.h>
49 #ifdef CONFIG_XSS
50 #include <X11/extensions/scrnsaver.h>
51 #endif
53 #ifdef CONFIG_XDPMS
54 #include <X11/extensions/dpms.h>
55 #endif
57 #ifdef CONFIG_XINERAMA
58 #include <X11/extensions/Xinerama.h>
59 #endif
61 #ifdef CONFIG_XF86VM
62 #include <X11/extensions/xf86vmode.h>
63 #endif
65 #ifdef CONFIG_XF86XK
66 #include <X11/XF86keysym.h>
67 #endif
69 #ifdef CONFIG_XV
70 #include <X11/extensions/Xv.h>
71 #include <X11/extensions/Xvlib.h>
73 #include "subopt-helper.h"
74 #endif
76 #include "input/input.h"
77 #include "input/mouse.h"
79 #define WIN_LAYER_ONBOTTOM 2
80 #define WIN_LAYER_NORMAL 4
81 #define WIN_LAYER_ONTOP 6
82 #define WIN_LAYER_ABOVE_DOCK 10
84 int fs_layer = WIN_LAYER_ABOVE_DOCK;
86 int stop_xscreensaver = 0;
88 static int dpms_disabled = 0;
90 char *mDisplayName = NULL;
92 char **vo_fstype_list;
94 /* 1 means that the WM is metacity (broken as hell) */
95 int metacity_hack = 0;
97 #ifdef CONFIG_XF86VM
98 XF86VidModeModeInfo **vidmodes = NULL;
99 XF86VidModeModeLine modeline;
100 #endif
102 static int vo_x11_get_fs_type(int supported);
103 static void saver_off(Display *);
104 static void saver_on(Display *);
107 * Sends the EWMH fullscreen state event.
109 * action: could be one of _NET_WM_STATE_REMOVE -- remove state
110 * _NET_WM_STATE_ADD -- add state
111 * _NET_WM_STATE_TOGGLE -- toggle
113 void vo_x11_ewmh_fullscreen(struct vo_x11_state *x11, int action)
115 assert(action == _NET_WM_STATE_REMOVE ||
116 action == _NET_WM_STATE_ADD || action == _NET_WM_STATE_TOGGLE);
118 if (x11->fs_type & vo_wm_FULLSCREEN)
120 XEvent xev;
122 /* init X event structure for _NET_WM_FULLSCREEN client message */
123 xev.xclient.type = ClientMessage;
124 xev.xclient.serial = 0;
125 xev.xclient.send_event = True;
126 xev.xclient.message_type = x11->XA_NET_WM_STATE;
127 xev.xclient.window = x11->window;
128 xev.xclient.format = 32;
129 xev.xclient.data.l[0] = action;
130 xev.xclient.data.l[1] = x11->XA_NET_WM_STATE_FULLSCREEN;
131 xev.xclient.data.l[2] = 0;
132 xev.xclient.data.l[3] = 0;
133 xev.xclient.data.l[4] = 0;
135 /* finally send that damn thing */
136 if (!XSendEvent(x11->display, DefaultRootWindow(x11->display), False,
137 SubstructureRedirectMask | SubstructureNotifyMask,
138 &xev))
140 mp_tmsg(MSGT_VO, MSGL_ERR, "\nX11: Couldn't send EWMH fullscreen event!\n");
145 static void vo_hidecursor(Display * disp, Window win)
147 Cursor no_ptr;
148 Pixmap bm_no;
149 XColor black, dummy;
150 Colormap colormap;
151 const char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 };
153 if (WinID == 0)
154 return; // do not hide if playing on the root window
156 colormap = DefaultColormap(disp, DefaultScreen(disp));
157 if ( !XAllocNamedColor(disp, colormap, "black", &black, &dummy) )
159 return; // color alloc failed, give up
161 bm_no = XCreateBitmapFromData(disp, win, bm_no_data, 8, 8);
162 no_ptr = XCreatePixmapCursor(disp, bm_no, bm_no, &black, &black, 0, 0);
163 XDefineCursor(disp, win, no_ptr);
164 XFreeCursor(disp, no_ptr);
165 if (bm_no != None)
166 XFreePixmap(disp, bm_no);
167 XFreeColors(disp,colormap,&black.pixel,1,0);
170 static void vo_showcursor(Display * disp, Window win)
172 if (WinID == 0)
173 return;
174 XDefineCursor(disp, win, 0);
177 static int x11_errorhandler(Display * display, XErrorEvent * event)
179 #define MSGLEN 60
180 char msg[MSGLEN];
182 XGetErrorText(display, event->error_code, (char *) &msg, MSGLEN);
184 mp_msg(MSGT_VO, MSGL_ERR, "X11 error: %s\n", msg);
186 mp_msg(MSGT_VO, MSGL_V,
187 "Type: %x, display: %p, resourceid: %lx, serial: %lx\n",
188 event->type, event->display, event->resourceid, event->serial);
189 mp_msg(MSGT_VO, MSGL_V,
190 "Error code: %x, request code: %x, minor code: %x\n",
191 event->error_code, event->request_code, event->minor_code);
193 // abort();
194 //exit_player("X11 error");
195 return 0;
196 #undef MSGLEN
199 void fstype_help(void)
201 mp_tmsg(MSGT_VO, MSGL_INFO, "Available fullscreen layer change modes:\n");
202 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FULL_SCREEN_TYPES\n");
204 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "none",
205 "don't set fullscreen window layer");
206 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer",
207 "use _WIN_LAYER hint with default layer");
208 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer=<0..15>",
209 "use _WIN_LAYER hint with a given layer number");
210 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "netwm",
211 "force NETWM style");
212 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "above",
213 "use _NETWM_STATE_ABOVE hint if available");
214 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "below",
215 "use _NETWM_STATE_BELOW hint if available");
216 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "fullscreen",
217 "use _NETWM_STATE_FULLSCREEN hint if available");
218 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "stays_on_top",
219 "use _NETWM_STATE_STAYS_ON_TOP hint if available");
220 mp_msg(MSGT_VO, MSGL_INFO,
221 "You can also negate the settings with simply putting '-' in the beginning");
222 mp_msg(MSGT_VO, MSGL_INFO, "\n");
225 static void fstype_dump(int fstype)
227 if (fstype)
229 mp_msg(MSGT_VO, MSGL_V, "[x11] Current fstype setting honours");
230 if (fstype & vo_wm_LAYER)
231 mp_msg(MSGT_VO, MSGL_V, " LAYER");
232 if (fstype & vo_wm_FULLSCREEN)
233 mp_msg(MSGT_VO, MSGL_V, " FULLSCREEN");
234 if (fstype & vo_wm_STAYS_ON_TOP)
235 mp_msg(MSGT_VO, MSGL_V, " STAYS_ON_TOP");
236 if (fstype & vo_wm_ABOVE)
237 mp_msg(MSGT_VO, MSGL_V, " ABOVE");
238 if (fstype & vo_wm_BELOW)
239 mp_msg(MSGT_VO, MSGL_V, " BELOW");
240 mp_msg(MSGT_VO, MSGL_V, " X atoms\n");
241 } else
242 mp_msg(MSGT_VO, MSGL_V,
243 "[x11] Current fstype setting doesn't honour any X atoms\n");
246 static int net_wm_support_state_test(struct vo_x11_state *x11, Atom atom)
248 #define NET_WM_STATE_TEST(x) { if (atom == x11->XA_NET_WM_STATE_##x) { mp_msg( MSGT_VO,MSGL_V, "[x11] Detected wm supports " #x " state.\n" ); return vo_wm_##x; } }
250 NET_WM_STATE_TEST(FULLSCREEN);
251 NET_WM_STATE_TEST(ABOVE);
252 NET_WM_STATE_TEST(STAYS_ON_TOP);
253 NET_WM_STATE_TEST(BELOW);
254 return 0;
257 static int x11_get_property(struct vo_x11_state *x11, Atom type, Atom ** args,
258 unsigned long *nitems)
260 int format;
261 unsigned long bytesafter;
263 return Success ==
264 XGetWindowProperty(x11->display, x11->rootwin, type, 0, 16384, False,
265 AnyPropertyType, &type, &format, nitems,
266 &bytesafter, (unsigned char **) args)
267 && *nitems > 0;
270 static int vo_wm_detect(struct vo *vo)
272 struct vo_x11_state *x11 = vo->x11;
273 int i;
274 int wm = 0;
275 unsigned long nitems;
276 Atom *args = NULL;
278 if (WinID >= 0)
279 return 0;
281 // -- supports layers
282 if (x11_get_property(x11, x11->XA_WIN_PROTOCOLS, &args, &nitems))
284 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports layers.\n");
285 for (i = 0; i < nitems; i++)
287 if (args[i] == x11->XA_WIN_LAYER)
289 wm |= vo_wm_LAYER;
290 metacity_hack |= 1;
291 } else
292 /* metacity is the only window manager I know which reports
293 * supporting only the _WIN_LAYER hint in _WIN_PROTOCOLS.
294 * (what's more support for it is broken) */
295 metacity_hack |= 2;
297 XFree(args);
298 if (wm && (metacity_hack == 1))
300 // metacity claims to support layers, but it is not the truth :-)
301 wm ^= vo_wm_LAYER;
302 mp_msg(MSGT_VO, MSGL_V,
303 "[x11] Using workaround for Metacity bugs.\n");
306 // --- netwm
307 if (x11_get_property(x11, x11->XA_NET_SUPPORTED, &args, &nitems))
309 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports NetWM.\n");
310 for (i = 0; i < nitems; i++)
311 wm |= net_wm_support_state_test(vo->x11, args[i]);
312 XFree(args);
315 if (wm == 0)
316 mp_msg(MSGT_VO, MSGL_V, "[x11] Unknown wm type...\n");
317 return wm;
320 #define XA_INIT(x) x11->XA##x = XInternAtom(x11->display, #x, False)
321 static void init_atoms(struct vo_x11_state *x11)
323 XA_INIT(_NET_SUPPORTED);
324 XA_INIT(_NET_WM_STATE);
325 XA_INIT(_NET_WM_STATE_FULLSCREEN);
326 XA_INIT(_NET_WM_STATE_ABOVE);
327 XA_INIT(_NET_WM_STATE_STAYS_ON_TOP);
328 XA_INIT(_NET_WM_STATE_BELOW);
329 XA_INIT(_NET_WM_PID);
330 XA_INIT(_WIN_PROTOCOLS);
331 XA_INIT(_WIN_LAYER);
332 XA_INIT(_WIN_HINTS);
333 XA_INIT(WM_PROTOCOLS);
334 XA_INIT(WM_DELETE_WINDOW);
337 void update_xinerama_info(struct vo *vo) {
338 struct MPOpts *opts = vo->opts;
339 xinerama_x = xinerama_y = 0;
340 #ifdef CONFIG_XINERAMA
341 if (xinerama_screen >= -1 && XineramaIsActive(vo->x11->display))
343 int screen = xinerama_screen;
344 XineramaScreenInfo *screens;
345 int num_screens;
347 screens = XineramaQueryScreens(vo->x11->display, &num_screens);
348 if (screen >= num_screens)
349 screen = num_screens - 1;
350 if (screen == -1) {
351 int x = vo->dx + vo->dwidth / 2;
352 int y = vo->dy + vo->dheight / 2;
353 for (screen = num_screens - 1; screen > 0; screen--) {
354 int left = screens[screen].x_org;
355 int right = left + screens[screen].width;
356 int top = screens[screen].y_org;
357 int bottom = top + screens[screen].height;
358 if (left <= x && x <= right && top <= y && y <= bottom)
359 break;
362 if (screen < 0)
363 screen = 0;
364 opts->vo_screenwidth = screens[screen].width;
365 opts->vo_screenheight = screens[screen].height;
366 xinerama_x = screens[screen].x_org;
367 xinerama_y = screens[screen].y_org;
369 XFree(screens);
371 #endif
372 aspect_save_screenres(vo, opts->vo_screenwidth, opts->vo_screenheight);
375 int vo_init(struct vo *vo)
377 struct MPOpts *opts = vo->opts;
378 struct vo_x11_state *x11 = vo->x11;
379 // int mScreen;
380 int depth, bpp;
381 unsigned int mask;
383 // char * DisplayName = ":0.0";
384 // Display * mDisplay;
385 XImage *mXImage = NULL;
387 // Window mRootWin;
388 XWindowAttributes attribs;
389 char *dispName;
391 if (vo_rootwin)
392 WinID = 0; // use root window
394 if (x11->depthonscreen)
396 saver_off(x11->display);
397 return 1; // already called
400 XSetErrorHandler(x11_errorhandler);
402 #if 0
403 if (!mDisplayName)
404 if (!(mDisplayName = getenv("DISPLAY")))
405 mDisplayName = strdup(":0.0");
406 #else
407 dispName = XDisplayName(mDisplayName);
408 #endif
410 mp_msg(MSGT_VO, MSGL_V, "X11 opening display: %s\n", dispName);
412 x11->display = XOpenDisplay(dispName);
413 if (!x11->display)
415 mp_msg(MSGT_VO, MSGL_ERR,
416 "vo: couldn't open the X11 display (%s)!\n", dispName);
417 return 0;
419 x11->screen = DefaultScreen(x11->display); // screen ID
420 x11->rootwin = RootWindow(x11->display, x11->screen); // root window ID
422 init_atoms(vo->x11);
424 #ifdef CONFIG_XF86VM
426 int clock;
428 XF86VidModeGetModeLine(x11->display, x11->screen, &clock, &modeline);
429 if (!opts->vo_screenwidth)
430 opts->vo_screenwidth = modeline.hdisplay;
431 if (!opts->vo_screenheight)
432 opts->vo_screenheight = modeline.vdisplay;
434 #endif
436 if (!opts->vo_screenwidth)
437 opts->vo_screenwidth = DisplayWidth(x11->display, x11->screen);
438 if (!opts->vo_screenheight)
439 opts->vo_screenheight = DisplayHeight(x11->display, x11->screen);
441 // get color depth (from root window, or the best visual):
442 XGetWindowAttributes(x11->display, x11->rootwin, &attribs);
443 depth = attribs.depth;
445 if (depth != 15 && depth != 16 && depth != 24 && depth != 32)
447 Visual *visual;
449 depth = vo_find_depth_from_visuals(x11->display, x11->screen, &visual);
450 if (depth != -1)
451 mXImage = XCreateImage(x11->display, visual, depth, ZPixmap,
452 0, NULL, 1, 1, 8, 1);
453 } else
454 mXImage =
455 XGetImage(x11->display, x11->rootwin, 0, 0, 1, 1, AllPlanes, ZPixmap);
457 x11->depthonscreen = depth; // display depth on screen
459 // get bits/pixel from XImage structure:
460 if (mXImage == NULL)
462 mask = 0;
463 } else
466 * for the depth==24 case, the XImage structures might use
467 * 24 or 32 bits of data per pixel. The x11->depthonscreen
468 * field stores the amount of data per pixel in the
469 * XImage structure!
471 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp?
473 bpp = mXImage->bits_per_pixel;
474 if ((x11->depthonscreen + 7) / 8 != (bpp + 7) / 8)
475 x11->depthonscreen = bpp; // by A'rpi
476 mask =
477 mXImage->red_mask | mXImage->green_mask | mXImage->blue_mask;
478 mp_msg(MSGT_VO, MSGL_V,
479 "vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", mask,
480 mXImage->red_mask, mXImage->green_mask, mXImage->blue_mask);
481 XDestroyImage(mXImage);
483 if (((x11->depthonscreen + 7) / 8) == 2)
485 if (mask == 0x7FFF)
486 x11->depthonscreen = 15;
487 else if (mask == 0xFFFF)
488 x11->depthonscreen = 16;
490 // XCloseDisplay( mDisplay );
491 /* slightly improved local display detection AST */
492 if (strncmp(dispName, "unix:", 5) == 0)
493 dispName += 4;
494 else if (strncmp(dispName, "localhost:", 10) == 0)
495 dispName += 9;
496 if (*dispName == ':' && atoi(dispName + 1) < 10)
497 x11->display_is_local = 1;
498 else
499 x11->display_is_local = 0;
500 mp_msg(MSGT_VO, MSGL_V,
501 "vo: X11 running at %dx%d with depth %d and %d bpp (\"%s\" => %s display)\n",
502 opts->vo_screenwidth, opts->vo_screenheight, depth, x11->depthonscreen,
503 dispName, x11->display_is_local ? "local" : "remote");
505 x11->wm_type = vo_wm_detect(vo);
507 x11->fs_type = vo_x11_get_fs_type(x11->wm_type);
509 fstype_dump(x11->fs_type);
511 saver_off(x11->display);
512 return 1;
515 void vo_uninit(struct vo_x11_state *x11)
517 if (!x11->display)
519 mp_msg(MSGT_VO, MSGL_V,
520 "vo: x11 uninit called but X11 not initialized..\n");
521 } else {
522 mp_msg(MSGT_VO, MSGL_V, "vo: uninit ...\n");
523 XSetErrorHandler(NULL);
524 XCloseDisplay(x11->display);
525 x11->depthonscreen = 0;
526 x11->display = NULL;
528 talloc_free(x11);
531 #include "osdep/keycodes.h"
532 #include "wskeys.h"
534 #ifdef XF86XK_AudioPause
535 static const struct mp_keymap keysym_map[] = {
536 {XF86XK_MenuKB, KEY_MENU},
537 {XF86XK_AudioPlay, KEY_PLAY}, {XF86XK_AudioPause, KEY_PAUSE}, {XF86XK_AudioStop, KEY_STOP},
538 {XF86XK_AudioPrev, KEY_PREV}, {XF86XK_AudioNext, KEY_NEXT},
539 {XF86XK_AudioMute, KEY_MUTE}, {XF86XK_AudioLowerVolume, KEY_VOLUME_DOWN}, {XF86XK_AudioRaiseVolume, KEY_VOLUME_UP},
540 {0, 0}
543 static void vo_x11_putkey_ext(struct vo *vo, int keysym, int modifiers)
545 struct mp_fifo *f = vo->key_fifo;
546 int mpkey = lookup_keymap_table(keysym_map, keysym);
547 if (mpkey)
548 mplayer_put_key(f, mpkey + modifiers);
550 #endif
552 static const struct mp_keymap keymap[] = {
553 // special keys
554 {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS}, {wsTab, KEY_TAB}, {wsEnter, KEY_ENTER},
556 // cursor keys
557 {wsLeft, KEY_LEFT}, {wsRight, KEY_RIGHT}, {wsUp, KEY_UP}, {wsDown, KEY_DOWN},
559 // navigation block
560 {wsInsert, KEY_INSERT}, {wsDelete, KEY_DELETE}, {wsHome, KEY_HOME}, {wsEnd, KEY_END},
561 {wsPageUp, KEY_PAGE_UP}, {wsPageDown, KEY_PAGE_DOWN},
563 // F-keys
564 {wsF1, KEY_F+1}, {wsF2, KEY_F+2}, {wsF3, KEY_F+3}, {wsF4, KEY_F+4},
565 {wsF5, KEY_F+5}, {wsF6, KEY_F+6}, {wsF7, KEY_F+7}, {wsF8, KEY_F+8},
566 {wsF9, KEY_F+9}, {wsF10, KEY_F+10}, {wsF11, KEY_F+11}, {wsF12, KEY_F+12},
568 // numpad independent of numlock
569 {wsGrayMinus, '-'}, {wsGrayPlus, '+'}, {wsGrayMul, '*'}, {wsGrayDiv, '/'},
570 {wsGrayEnter, KEY_KPENTER},
572 // numpad with numlock
573 {wsGray0, KEY_KP0}, {wsGray1, KEY_KP1}, {wsGray2, KEY_KP2},
574 {wsGray3, KEY_KP3}, {wsGray4, KEY_KP4}, {wsGray5, KEY_KP5},
575 {wsGray6, KEY_KP6}, {wsGray7, KEY_KP7}, {wsGray8, KEY_KP8},
576 {wsGray9, KEY_KP9}, {wsGrayDecimal, KEY_KPDEC},
578 // numpad without numlock
579 {wsGrayInsert, KEY_KPINS}, {wsGrayEnd, KEY_KP1}, {wsGrayDown, KEY_KP2},
580 {wsGrayPgDn, KEY_KP3}, {wsGrayLeft, KEY_KP4}, {wsGray5Dup, KEY_KP5},
581 {wsGrayRight, KEY_KP6}, {wsGrayHome, KEY_KP7}, {wsGrayUp, KEY_KP8},
582 {wsGrayPgUp, KEY_KP9}, {wsGrayDelete, KEY_KPDEL},
584 {0, 0}
587 static void vo_x11_putkey(struct vo *vo, int key, int modifiers)
589 static const char *passthrough_keys = " -+*/<>`~!@#$%^&()_{}:;\"\',.?\\|=[]";
590 int mpkey = 0;
591 if ((key >= 'a' && key <= 'z') ||
592 (key >= 'A' && key <= 'Z') ||
593 (key >= '0' && key <= '9') ||
594 (key > 0 && key < 256 && strchr(passthrough_keys, key)))
595 mpkey = key;
597 if (!mpkey)
598 mpkey = lookup_keymap_table(keymap, key);
600 if (mpkey)
601 mplayer_put_key(vo->key_fifo, mpkey + modifiers);
605 // ----- Motif header: -------
607 #define MWM_HINTS_FUNCTIONS (1L << 0)
608 #define MWM_HINTS_DECORATIONS (1L << 1)
609 #define MWM_HINTS_INPUT_MODE (1L << 2)
610 #define MWM_HINTS_STATUS (1L << 3)
612 #define MWM_FUNC_ALL (1L << 0)
613 #define MWM_FUNC_RESIZE (1L << 1)
614 #define MWM_FUNC_MOVE (1L << 2)
615 #define MWM_FUNC_MINIMIZE (1L << 3)
616 #define MWM_FUNC_MAXIMIZE (1L << 4)
617 #define MWM_FUNC_CLOSE (1L << 5)
619 #define MWM_DECOR_ALL (1L << 0)
620 #define MWM_DECOR_BORDER (1L << 1)
621 #define MWM_DECOR_RESIZEH (1L << 2)
622 #define MWM_DECOR_TITLE (1L << 3)
623 #define MWM_DECOR_MENU (1L << 4)
624 #define MWM_DECOR_MINIMIZE (1L << 5)
625 #define MWM_DECOR_MAXIMIZE (1L << 6)
627 #define MWM_INPUT_MODELESS 0
628 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1
629 #define MWM_INPUT_SYSTEM_MODAL 2
630 #define MWM_INPUT_FULL_APPLICATION_MODAL 3
631 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL
633 #define MWM_TEAROFF_WINDOW (1L<<0)
635 typedef struct
637 long flags;
638 long functions;
639 long decorations;
640 long input_mode;
641 long state;
642 } MotifWmHints;
644 static MotifWmHints vo_MotifWmHints;
645 static Atom vo_MotifHints = None;
647 void vo_x11_decoration(struct vo *vo, int d)
649 struct vo_x11_state *x11 = vo->x11;
650 Atom mtype;
651 int mformat;
652 unsigned long mn, mb;
654 if (!WinID)
655 return;
657 if (vo_fsmode & 8)
659 XSetTransientForHint(x11->display, x11->window,
660 RootWindow(x11->display, x11->screen));
663 vo_MotifHints = XInternAtom(x11->display, "_MOTIF_WM_HINTS", 0);
664 if (vo_MotifHints != None)
666 if (!d)
668 MotifWmHints *mhints = NULL;
670 XGetWindowProperty(x11->display, x11->window,
671 vo_MotifHints, 0, 20, False,
672 vo_MotifHints, &mtype, &mformat, &mn,
673 &mb, (unsigned char **) &mhints);
674 if (mhints)
676 if (mhints->flags & MWM_HINTS_DECORATIONS)
677 x11->olddecor = mhints->decorations;
678 if (mhints->flags & MWM_HINTS_FUNCTIONS)
679 x11->oldfuncs = mhints->functions;
680 XFree(mhints);
684 memset(&vo_MotifWmHints, 0, sizeof(MotifWmHints));
685 vo_MotifWmHints.flags =
686 MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS;
687 if (d)
689 vo_MotifWmHints.functions = x11->oldfuncs;
690 d = x11->olddecor;
692 #if 0
693 vo_MotifWmHints.decorations =
694 d | ((vo_fsmode & 2) ? 0 : MWM_DECOR_MENU);
695 #else
696 vo_MotifWmHints.decorations =
697 d | ((vo_fsmode & 2) ? MWM_DECOR_MENU : 0);
698 #endif
699 XChangeProperty(x11->display, x11->window, vo_MotifHints,
700 vo_MotifHints, 32,
701 PropModeReplace,
702 (unsigned char *) &vo_MotifWmHints,
703 (vo_fsmode & 4) ? 4 : 5);
707 void vo_x11_classhint(struct vo *vo, Window window, const char *name)
709 struct MPOpts *opts = vo->opts;
710 struct vo_x11_state *x11 = vo->x11;
711 XClassHint wmClass;
712 pid_t pid = getpid();
714 wmClass.res_name = opts->vo_winname ? opts->vo_winname : name;
715 wmClass.res_class = "MPlayer";
716 XSetClassHint(x11->display, window, &wmClass);
717 XChangeProperty(x11->display, window, x11->XA_NET_WM_PID, XA_CARDINAL,
718 32, PropModeReplace, (unsigned char *) &pid, 1);
721 void vo_x11_uninit(struct vo *vo)
723 struct vo_x11_state *x11 = vo->x11;
724 saver_on(x11->display);
725 if (x11->window != None)
726 vo_showcursor(x11->display, x11->window);
728 if (x11->f_gc != None)
730 XFreeGC(vo->x11->display, x11->f_gc);
731 x11->f_gc = None;
734 if (x11->vo_gc != None)
736 XSetBackground(vo->x11->display, x11->vo_gc, 0);
737 XFreeGC(vo->x11->display, x11->vo_gc);
738 x11->vo_gc = None;
740 if (x11->window != None)
742 XClearWindow(x11->display, x11->window);
743 if (WinID < 0)
745 XEvent xev;
747 XUnmapWindow(x11->display, x11->window);
748 XSelectInput(x11->display, x11->window, StructureNotifyMask);
749 XDestroyWindow(x11->display, x11->window);
752 XNextEvent(x11->display, &xev);
754 while (xev.type != DestroyNotify
755 || xev.xdestroywindow.event != x11->window);
757 x11->window = None;
759 vo_fs = 0;
760 x11->vo_old_width = x11->vo_old_height = 0;
761 x11->last_video_width = 0;
762 x11->last_video_height = 0;
763 x11->size_changed_during_fs = false;
767 static int check_resize(struct vo *vo)
769 int old_w = vo->dwidth, old_h = vo->dheight;
770 int old_x = vo->dx, old_y = vo->dy;
771 int rc = 0;
772 vo_x11_update_geometry(vo);
773 if (vo->dwidth != old_w || vo->dheight != old_h)
774 rc |= VO_EVENT_RESIZE;
775 if (vo->dx != old_x || vo->dy != old_y)
776 rc |= VO_EVENT_MOVE;
777 return rc;
780 int vo_x11_check_events(struct vo *vo)
782 struct vo_x11_state *x11 = vo->x11;
783 Display *display = vo->x11->display;
784 int ret = 0;
785 XEvent Event;
786 char buf[100];
787 KeySym keySym;
789 if (x11->vo_mouse_autohide && x11->mouse_waiting_hide &&
790 (GetTimerMS() - x11->mouse_timer >= 1000)) {
791 vo_hidecursor(display, x11->window);
792 x11->mouse_waiting_hide = 0;
795 if (WinID > 0)
796 ret |= check_resize(vo);
797 while (XPending(display))
799 XNextEvent(display, &Event);
800 // printf("\rEvent.type=%X \n",Event.type);
801 switch (Event.type)
803 case Expose:
804 ret |= VO_EVENT_EXPOSE;
805 break;
806 case ConfigureNotify:
807 if (x11->window == None)
808 break;
809 ret |= check_resize(vo);
810 break;
811 case KeyPress:
813 int key;
815 XLookupString(&Event.xkey, buf, sizeof(buf), &keySym,
816 &x11->compose_status);
817 int modifiers = 0;
818 if (Event.xkey.state & ShiftMask)
819 modifiers |= KEY_MODIFIER_SHIFT;
820 if (Event.xkey.state & ControlMask)
821 modifiers |= KEY_MODIFIER_CTRL;
822 if (Event.xkey.state & Mod1Mask)
823 modifiers |= KEY_MODIFIER_ALT;
824 if (Event.xkey.state & Mod4Mask)
825 modifiers |= KEY_MODIFIER_META;
826 #ifdef XF86XK_AudioPause
827 vo_x11_putkey_ext(vo, keySym, modifiers);
828 #endif
829 key =
830 ((keySym & 0xff00) !=
831 0 ? ((keySym & 0x00ff) + 256) : (keySym));
832 vo_x11_putkey(vo, key, modifiers);
833 ret |= VO_EVENT_KEYPRESS;
835 break;
836 case MotionNotify:
837 vo_mouse_movement(vo, Event.xmotion.x, Event.xmotion.y);
839 if (x11->vo_mouse_autohide)
841 vo_showcursor(display, x11->window);
842 x11->mouse_waiting_hide = 1;
843 x11->mouse_timer = GetTimerMS();
845 break;
846 case ButtonPress:
847 if (x11->vo_mouse_autohide)
849 vo_showcursor(display, x11->window);
850 x11->mouse_waiting_hide = 1;
851 x11->mouse_timer = GetTimerMS();
853 mplayer_put_key(vo->key_fifo,
854 (MOUSE_BTN0 + Event.xbutton.button - 1)
855 | MP_KEY_DOWN);
856 break;
857 case ButtonRelease:
858 if (x11->vo_mouse_autohide)
860 vo_showcursor(display, x11->window);
861 x11->mouse_waiting_hide = 1;
862 x11->mouse_timer = GetTimerMS();
864 mplayer_put_key(vo->key_fifo,
865 MOUSE_BTN0 + Event.xbutton.button - 1);
866 break;
867 case PropertyNotify:
869 char *name =
870 XGetAtomName(display, Event.xproperty.atom);
872 if (!name)
873 break;
875 // fprintf(stderr,"[ws] PropertyNotify ( 0x%x ) %s ( 0x%x )\n",vo_window,name,Event.xproperty.atom );
877 XFree(name);
879 break;
880 case MapNotify:
881 x11->vo_hint.win_gravity = x11->old_gravity;
882 XSetWMNormalHints(display, x11->window, &x11->vo_hint);
883 x11->fs_flip = 0;
884 break;
885 case DestroyNotify:
886 mp_msg(MSGT_VO, MSGL_WARN, "Our window was destroyed, exiting\n");
887 mplayer_put_key(vo->key_fifo, KEY_CLOSE_WIN);
888 break;
889 case ClientMessage:
890 if (Event.xclient.message_type == x11->XAWM_PROTOCOLS &&
891 Event.xclient.data.l[0] == x11->XAWM_DELETE_WINDOW)
892 mplayer_put_key(vo->key_fifo, KEY_CLOSE_WIN);
893 break;
896 return ret;
900 * \brief sets the size and position of the non-fullscreen window.
902 static void vo_x11_nofs_sizepos(struct vo *vo, int x, int y,
903 int width, int height)
905 struct vo_x11_state *x11 = vo->x11;
906 if (width == x11->last_video_width && height == x11->last_video_height) {
907 if (!vo->opts->force_window_position && !x11->size_changed_during_fs)
908 return;
909 } else if (vo_fs)
910 x11->size_changed_during_fs = true;
911 x11->last_video_height = height;
912 x11->last_video_width = width;
913 vo_x11_sizehint(vo, x, y, width, height, 0);
914 if (vo_fs) {
915 x11->vo_old_x = x;
916 x11->vo_old_y = y;
917 x11->vo_old_width = width;
918 x11->vo_old_height = height;
920 else
922 vo->dwidth = width;
923 vo->dheight = height;
924 if (vo->opts->force_window_position)
925 XMoveResizeWindow(vo->x11->display, vo->x11->window, x, y, width,
926 height);
927 else
928 XResizeWindow(vo->x11->display, vo->x11->window, width, height);
932 void vo_x11_sizehint(struct vo *vo, int x, int y, int width, int height, int max)
934 struct vo_x11_state *x11 = vo->x11;
935 x11->vo_hint.flags = 0;
936 if (vo_keepaspect)
938 x11->vo_hint.flags |= PAspect;
939 x11->vo_hint.min_aspect.x = width;
940 x11->vo_hint.min_aspect.y = height;
941 x11->vo_hint.max_aspect.x = width;
942 x11->vo_hint.max_aspect.y = height;
945 x11->vo_hint.flags |= PPosition | PSize;
946 x11->vo_hint.x = x;
947 x11->vo_hint.y = y;
948 x11->vo_hint.width = width;
949 x11->vo_hint.height = height;
950 if (max)
952 x11->vo_hint.flags |= PMaxSize;
953 x11->vo_hint.max_width = width;
954 x11->vo_hint.max_height = height;
955 } else
957 x11->vo_hint.max_width = 0;
958 x11->vo_hint.max_height = 0;
961 // Set minimum height/width to 4 to avoid off-by-one errors
962 // and because mga_vid requires a minimal size of 4 pixels.
963 x11->vo_hint.flags |= PMinSize;
964 x11->vo_hint.min_width = x11->vo_hint.min_height = 4;
966 // Set the base size. A window manager might display the window
967 // size to the user relative to this.
968 // Setting these to width/height might be nice, but e.g. fluxbox can't handle it.
969 x11->vo_hint.flags |= PBaseSize;
970 x11->vo_hint.base_width = 0 /*width*/;
971 x11->vo_hint.base_height = 0 /*height*/;
973 x11->vo_hint.flags |= PWinGravity;
974 x11->vo_hint.win_gravity = StaticGravity;
975 XSetWMNormalHints(x11->display, x11->window, &x11->vo_hint);
978 static int vo_x11_get_gnome_layer(struct vo_x11_state *x11, Window win)
980 Atom type;
981 int format;
982 unsigned long nitems;
983 unsigned long bytesafter;
984 unsigned short *args = NULL;
986 if (XGetWindowProperty(x11->display, win, x11->XA_WIN_LAYER, 0, 16384,
987 False, AnyPropertyType, &type, &format, &nitems,
988 &bytesafter,
989 (unsigned char **) &args) == Success
990 && nitems > 0 && args)
992 mp_msg(MSGT_VO, MSGL_V, "[x11] original window layer is %d.\n",
993 *args);
994 return *args;
996 return WIN_LAYER_NORMAL;
1000 static Window vo_x11_create_smooth_window(struct vo_x11_state *x11, Window mRoot,
1001 Visual * vis, int x, int y,
1002 unsigned int width, unsigned int height,
1003 int depth, Colormap col_map)
1005 unsigned long xswamask = CWBorderPixel;
1006 XSetWindowAttributes xswa;
1007 Window ret_win;
1009 if (col_map != CopyFromParent)
1011 xswa.colormap = col_map;
1012 xswamask |= CWColormap;
1014 xswa.background_pixel = 0;
1015 xswa.border_pixel = 0;
1016 xswa.backing_store = NotUseful;
1017 xswa.bit_gravity = StaticGravity;
1019 ret_win =
1020 XCreateWindow(x11->display, x11->rootwin, x, y, width, height, 0, depth,
1021 CopyFromParent, vis, xswamask, &xswa);
1022 XSetWMProtocols(x11->display, ret_win, &x11->XAWM_DELETE_WINDOW, 1);
1023 if (x11->f_gc == None)
1024 x11->f_gc = XCreateGC(x11->display, ret_win, 0, 0);
1025 XSetForeground(x11->display, x11->f_gc, 0);
1027 return ret_win;
1031 * \brief create and setup a window suitable for display
1032 * \param vis Visual to use for creating the window
1033 * \param x x position of window
1034 * \param y y position of window
1035 * \param width width of window
1036 * \param height height of window
1037 * \param flags flags for window creation.
1038 * Only VOFLAG_FULLSCREEN is supported so far.
1039 * \param col_map Colourmap for window or CopyFromParent if a specific colormap isn't needed
1040 * \param classname name to use for the classhint
1041 * \param title title for the window
1043 * This also does the grunt-work like setting Window Manager hints etc.
1044 * If vo_window is already set it just moves and resizes it.
1046 void vo_x11_create_vo_window(struct vo *vo, XVisualInfo *vis, int x, int y,
1047 unsigned int width, unsigned int height, int flags,
1048 Colormap col_map,
1049 const char *classname, const char *title)
1051 struct MPOpts *opts = vo->opts;
1052 struct vo_x11_state *x11 = vo->x11;
1053 Display *mDisplay = vo->x11->display;
1054 XGCValues xgcv;
1055 if (WinID >= 0) {
1056 vo_fs = flags & VOFLAG_FULLSCREEN;
1057 x11->window = WinID ? (Window)WinID : x11->rootwin;
1058 if (col_map != CopyFromParent) {
1059 unsigned long xswamask = CWColormap;
1060 XSetWindowAttributes xswa;
1061 xswa.colormap = col_map;
1062 XChangeWindowAttributes(mDisplay, x11->window, xswamask, &xswa);
1063 XInstallColormap(mDisplay, col_map);
1065 if (WinID) {
1066 // Expose events can only really be handled by us, so request them.
1067 vo_x11_selectinput_witherr(mDisplay, x11->window, ExposureMask);
1068 } else
1069 // Do not capture events since it might break the parent application
1070 // if it relies on events being forwarded to the parent of WinID.
1071 // It also is consistent with the w32_common.c code.
1072 vo_x11_selectinput_witherr(mDisplay, x11->window,
1073 StructureNotifyMask | KeyPressMask | PointerMotionMask |
1074 ButtonPressMask | ButtonReleaseMask | ExposureMask);
1076 vo_x11_update_geometry(vo);
1077 goto final;
1079 if (x11->window == None) {
1080 vo_fs = 0;
1081 vo->dwidth = width;
1082 vo->dheight = height;
1083 x11->window = vo_x11_create_smooth_window(x11, x11->rootwin, vis->visual,
1084 x, y, width, height, vis->depth, col_map);
1085 x11->window_state = VOFLAG_HIDDEN;
1087 if (flags & VOFLAG_HIDDEN)
1088 goto final;
1089 if (x11->window_state & VOFLAG_HIDDEN) {
1090 XSizeHints hint;
1091 XEvent xev;
1092 x11->window_state &= ~VOFLAG_HIDDEN;
1093 vo_x11_classhint(vo, x11->window, classname);
1094 XStoreName(mDisplay, x11->window, title);
1095 vo_hidecursor(mDisplay, x11->window);
1096 XSelectInput(mDisplay, x11->window, StructureNotifyMask);
1097 hint.x = x; hint.y = y;
1098 hint.width = width; hint.height = height;
1099 hint.flags = PSize;
1100 if (geometry_xy_changed)
1101 hint.flags |= PPosition;
1102 XSetStandardProperties(mDisplay, x11->window, title, title, None, NULL, 0, &hint);
1103 if (!vo_border) vo_x11_decoration(vo, 0);
1104 // map window
1105 XMapWindow(mDisplay, x11->window);
1106 vo_x11_clearwindow(vo, x11->window);
1107 // wait for map
1108 do {
1109 XNextEvent(mDisplay, &xev);
1110 } while (xev.type != MapNotify || xev.xmap.event != x11->window);
1111 XSelectInput(mDisplay, x11->window, NoEventMask);
1112 XSync(mDisplay, False);
1113 vo_x11_selectinput_witherr(mDisplay, x11->window,
1114 StructureNotifyMask | KeyPressMask | PointerMotionMask |
1115 ButtonPressMask | ButtonReleaseMask | ExposureMask);
1117 if (opts->vo_ontop) vo_x11_setlayer(vo, x11->window, opts->vo_ontop);
1118 if (!geometry_xy_changed)
1119 vo_x11_update_geometry(vo);
1120 vo_x11_nofs_sizepos(vo, vo->dx, vo->dy, width, height);
1121 if (!!vo_fs != !!(flags & VOFLAG_FULLSCREEN))
1122 vo_x11_fullscreen(vo);
1123 else if (vo_fs) {
1124 // if we are already in fullscreen do not switch back and forth, just
1125 // set the size values right.
1126 vo->dwidth = vo->opts->vo_screenwidth;
1127 vo->dheight = vo->opts->vo_screenheight;
1129 final:
1130 if (x11->vo_gc != None)
1131 XFreeGC(mDisplay, x11->vo_gc);
1132 x11->vo_gc = XCreateGC(mDisplay, x11->window, GCForeground, &xgcv);
1133 XSync(mDisplay, False);
1134 x11->vo_mouse_autohide = 1;
1135 vo->event_fd = ConnectionNumber(x11->display);
1138 void vo_x11_clearwindow_part(struct vo *vo, Window vo_window,
1139 int img_width, int img_height, int use_fs)
1141 struct vo_x11_state *x11 = vo->x11;
1142 struct MPOpts *opts = vo->opts;
1143 Display *mDisplay = vo->x11->display;
1144 int u_dheight, u_dwidth, left_ov, left_ov2;
1146 if (x11->f_gc == None)
1147 return;
1149 u_dheight = use_fs ? opts->vo_screenheight : vo->dheight;
1150 u_dwidth = use_fs ? opts->vo_screenwidth : vo->dwidth;
1151 if ((u_dheight <= img_height) && (u_dwidth <= img_width))
1152 return;
1154 left_ov = (u_dheight - img_height) / 2;
1155 left_ov2 = (u_dwidth - img_width) / 2;
1157 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, 0, u_dwidth, left_ov);
1158 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, u_dheight - left_ov - 1,
1159 u_dwidth, left_ov + 1);
1161 if (u_dwidth > img_width)
1163 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, left_ov, left_ov2,
1164 img_height);
1165 XFillRectangle(mDisplay, vo_window, x11->f_gc, u_dwidth - left_ov2 - 1,
1166 left_ov, left_ov2 + 1, img_height);
1169 XFlush(mDisplay);
1172 void vo_x11_clearwindow(struct vo *vo, Window vo_window)
1174 struct vo_x11_state *x11 = vo->x11;
1175 struct MPOpts *opts = vo->opts;
1176 if (x11->f_gc == None)
1177 return;
1178 XFillRectangle(x11->display, vo_window, x11->f_gc, 0, 0,
1179 opts->vo_screenwidth, opts->vo_screenheight);
1181 XFlush(x11->display);
1185 void vo_x11_setlayer(struct vo *vo, Window vo_window, int layer)
1187 struct vo_x11_state *x11 = vo->x11;
1188 if (WinID >= 0)
1189 return;
1191 if (x11->fs_type & vo_wm_LAYER)
1193 XClientMessageEvent xev;
1195 if (!x11->orig_layer)
1196 x11->orig_layer = vo_x11_get_gnome_layer(x11, vo_window);
1198 memset(&xev, 0, sizeof(xev));
1199 xev.type = ClientMessage;
1200 xev.display = x11->display;
1201 xev.window = vo_window;
1202 xev.message_type = x11->XA_WIN_LAYER;
1203 xev.format = 32;
1204 xev.data.l[0] = layer ? fs_layer : x11->orig_layer; // if not fullscreen, stay on default layer
1205 xev.data.l[1] = CurrentTime;
1206 mp_msg(MSGT_VO, MSGL_V,
1207 "[x11] Layered style stay on top (layer %ld).\n",
1208 xev.data.l[0]);
1209 XSendEvent(x11->display, x11->rootwin, False, SubstructureNotifyMask,
1210 (XEvent *) & xev);
1211 } else if (x11->fs_type & vo_wm_NETWM)
1213 XClientMessageEvent xev;
1214 char *state;
1216 memset(&xev, 0, sizeof(xev));
1217 xev.type = ClientMessage;
1218 xev.message_type = x11->XA_NET_WM_STATE;
1219 xev.display = x11->display;
1220 xev.window = vo_window;
1221 xev.format = 32;
1222 xev.data.l[0] = layer;
1224 if (x11->fs_type & vo_wm_STAYS_ON_TOP)
1225 xev.data.l[1] = x11->XA_NET_WM_STATE_STAYS_ON_TOP;
1226 else if (x11->fs_type & vo_wm_ABOVE)
1227 xev.data.l[1] = x11->XA_NET_WM_STATE_ABOVE;
1228 else if (x11->fs_type & vo_wm_FULLSCREEN)
1229 xev.data.l[1] = x11->XA_NET_WM_STATE_FULLSCREEN;
1230 else if (x11->fs_type & vo_wm_BELOW)
1231 // This is not fallback. We can safely assume that the situation
1232 // where only NETWM_STATE_BELOW is supported doesn't exist.
1233 xev.data.l[1] = x11->XA_NET_WM_STATE_BELOW;
1235 XSendEvent(x11->display, x11->rootwin, False, SubstructureRedirectMask,
1236 (XEvent *) & xev);
1237 state = XGetAtomName(x11->display, xev.data.l[1]);
1238 mp_msg(MSGT_VO, MSGL_V,
1239 "[x11] NET style stay on top (layer %d). Using state %s.\n",
1240 layer, state);
1241 XFree(state);
1245 static int vo_x11_get_fs_type(int supported)
1247 int i;
1248 int type = supported;
1250 if (vo_fstype_list)
1252 for (i = 0; vo_fstype_list[i]; i++)
1254 int neg = 0;
1255 char *arg = vo_fstype_list[i];
1257 if (vo_fstype_list[i][0] == '-')
1259 neg = 1;
1260 arg = vo_fstype_list[i] + 1;
1263 if (!strncmp(arg, "layer", 5))
1265 if (!neg && (arg[5] == '='))
1267 char *endptr = NULL;
1268 int layer = strtol(vo_fstype_list[i] + 6, &endptr, 10);
1270 if (endptr && *endptr == '\0' && layer >= 0
1271 && layer <= 15)
1272 fs_layer = layer;
1274 if (neg)
1275 type &= ~vo_wm_LAYER;
1276 else
1277 type |= vo_wm_LAYER;
1278 } else if (!strcmp(arg, "above"))
1280 if (neg)
1281 type &= ~vo_wm_ABOVE;
1282 else
1283 type |= vo_wm_ABOVE;
1284 } else if (!strcmp(arg, "fullscreen"))
1286 if (neg)
1287 type &= ~vo_wm_FULLSCREEN;
1288 else
1289 type |= vo_wm_FULLSCREEN;
1290 } else if (!strcmp(arg, "stays_on_top"))
1292 if (neg)
1293 type &= ~vo_wm_STAYS_ON_TOP;
1294 else
1295 type |= vo_wm_STAYS_ON_TOP;
1296 } else if (!strcmp(arg, "below"))
1298 if (neg)
1299 type &= ~vo_wm_BELOW;
1300 else
1301 type |= vo_wm_BELOW;
1302 } else if (!strcmp(arg, "netwm"))
1304 if (neg)
1305 type &= ~vo_wm_NETWM;
1306 else
1307 type |= vo_wm_NETWM;
1308 } else if (!strcmp(arg, "none"))
1309 type = 0; // clear; keep parsing
1313 return type;
1317 * \brief update vo->dx, vo->dy, vo->dwidth and vo->dheight with current values of vo->x11->window
1318 * \return returns current color depth of vo->x11->window
1320 int vo_x11_update_geometry(struct vo *vo)
1322 struct MPOpts *opts = vo->opts;
1323 struct vo_x11_state *x11 = vo->x11;
1324 unsigned depth, w, h;
1325 int dummy_int;
1326 Window dummy_win;
1327 XGetGeometry(x11->display, x11->window, &dummy_win, &dummy_int, &dummy_int,
1328 &w, &h, &dummy_int, &depth);
1329 if (w <= INT_MAX && h <= INT_MAX) {
1330 vo->dwidth = w;
1331 vo->dheight = h;
1333 XTranslateCoordinates(x11->display, x11->window, x11->rootwin, 0, 0,
1334 &vo->dx, &vo->dy, &dummy_win);
1335 if (opts->vo_wintitle)
1336 XStoreName(x11->display, x11->window, opts->vo_wintitle);
1338 return depth <= INT_MAX ? depth : 0;
1341 void vo_x11_fullscreen(struct vo *vo)
1343 struct MPOpts *opts = vo->opts;
1344 struct vo_x11_state *x11 = vo->x11;
1345 int x, y, w, h;
1346 x = x11->vo_old_x;
1347 y = x11->vo_old_y;
1348 w = x11->vo_old_width;
1349 h = x11->vo_old_height;
1351 if (WinID >= 0) {
1352 vo_fs = !vo_fs;
1353 return;
1355 if (x11->fs_flip)
1356 return;
1358 if (vo_fs)
1360 vo_x11_ewmh_fullscreen(x11, _NET_WM_STATE_REMOVE); // removes fullscreen state if wm supports EWMH
1361 vo_fs = VO_FALSE;
1362 if (x11->size_changed_during_fs && (x11->fs_type & vo_wm_FULLSCREEN))
1363 vo_x11_nofs_sizepos(vo, vo->dx, vo->dy, x11->last_video_width,
1364 x11->last_video_height);
1365 x11->size_changed_during_fs = false;
1366 } else
1368 // win->fs
1369 vo_x11_ewmh_fullscreen(x11, _NET_WM_STATE_ADD); // sends fullscreen state to be added if wm supports EWMH
1371 vo_fs = VO_TRUE;
1372 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs
1374 x11->vo_old_x = vo->dx;
1375 x11->vo_old_y = vo->dy;
1376 x11->vo_old_width = vo->dwidth;
1377 x11->vo_old_height = vo->dheight;
1379 update_xinerama_info(vo);
1380 x = xinerama_x;
1381 y = xinerama_y;
1382 w = opts->vo_screenwidth;
1383 h = opts->vo_screenheight;
1386 long dummy;
1388 XGetWMNormalHints(x11->display, x11->window, &x11->vo_hint, &dummy);
1389 if (!(x11->vo_hint.flags & PWinGravity))
1390 x11->old_gravity = NorthWestGravity;
1391 else
1392 x11->old_gravity = x11->vo_hint.win_gravity;
1394 if (x11->wm_type == 0 && !(vo_fsmode & 16))
1396 XUnmapWindow(x11->display, x11->window); // required for MWM
1397 XWithdrawWindow(x11->display, x11->window, x11->screen);
1398 x11->fs_flip = 1;
1401 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs
1403 vo_x11_decoration(vo, vo_border && !vo_fs);
1404 vo_x11_sizehint(vo, x, y, w, h, 0);
1405 vo_x11_setlayer(vo, x11->window, vo_fs);
1408 XMoveResizeWindow(x11->display, x11->window, x, y, w, h);
1410 /* some WMs lose ontop after fullscreen */
1411 if ((!(vo_fs)) & opts->vo_ontop)
1412 vo_x11_setlayer(vo, x11->window, opts->vo_ontop);
1414 XMapRaised(x11->display, x11->window);
1415 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // some WMs change window pos on map
1416 XMoveResizeWindow(x11->display, x11->window, x, y, w, h);
1417 XRaiseWindow(x11->display, x11->window);
1418 XFlush(x11->display);
1421 void vo_x11_ontop(struct vo *vo)
1423 struct MPOpts *opts = vo->opts;
1424 opts->vo_ontop = !opts->vo_ontop;
1426 vo_x11_setlayer(vo, vo->x11->window, opts->vo_ontop);
1429 void vo_x11_border(struct vo *vo)
1431 vo_border = !vo_border;
1432 vo_x11_decoration(vo, vo_border && !vo_fs);
1436 * XScreensaver stuff
1439 static int screensaver_off;
1440 static unsigned int time_last;
1442 void xscreensaver_heartbeat(struct vo_x11_state *x11)
1444 unsigned int time = GetTimerMS();
1446 if (x11->display && screensaver_off && (time - time_last) > 30000)
1448 time_last = time;
1450 XResetScreenSaver(x11->display);
1454 static int xss_suspend(Display *mDisplay, Bool suspend)
1456 #ifndef CONFIG_XSS
1457 return 0;
1458 #else
1459 int event, error, major, minor;
1460 if (XScreenSaverQueryExtension(mDisplay, &event, &error) != True ||
1461 XScreenSaverQueryVersion(mDisplay, &major, &minor) != True)
1462 return 0;
1463 if (major < 1 || (major == 1 && minor < 1))
1464 return 0;
1465 XScreenSaverSuspend(mDisplay, suspend);
1466 return 1;
1467 #endif
1471 * End of XScreensaver stuff
1474 static void saver_on(Display * mDisplay)
1477 if (!screensaver_off)
1478 return;
1479 screensaver_off = 0;
1480 if (xss_suspend(mDisplay, False))
1481 return;
1482 #ifdef CONFIG_XDPMS
1483 if (dpms_disabled)
1485 int nothing;
1486 if (DPMSQueryExtension(mDisplay, &nothing, &nothing))
1488 if (!DPMSEnable(mDisplay))
1489 { // restoring power saving settings
1490 mp_msg(MSGT_VO, MSGL_WARN, "DPMS not available?\n");
1491 } else
1493 // DPMS does not seem to be enabled unless we call DPMSInfo
1494 BOOL onoff;
1495 CARD16 state;
1497 DPMSForceLevel(mDisplay, DPMSModeOn);
1498 DPMSInfo(mDisplay, &state, &onoff);
1499 if (onoff)
1501 mp_msg(MSGT_VO, MSGL_V,
1502 "Successfully enabled DPMS\n");
1503 } else
1505 mp_msg(MSGT_VO, MSGL_WARN, "Could not enable DPMS\n");
1509 dpms_disabled = 0;
1511 #endif
1514 static void saver_off(Display * mDisplay)
1516 int nothing;
1518 if (screensaver_off)
1519 return;
1520 screensaver_off = 1;
1521 if (xss_suspend(mDisplay, True))
1522 return;
1523 #ifdef CONFIG_XDPMS
1524 if (DPMSQueryExtension(mDisplay, &nothing, &nothing))
1526 BOOL onoff;
1527 CARD16 state;
1529 DPMSInfo(mDisplay, &state, &onoff);
1530 if (onoff)
1532 Status stat;
1534 mp_msg(MSGT_VO, MSGL_V, "Disabling DPMS\n");
1535 dpms_disabled = 1;
1536 stat = DPMSDisable(mDisplay); // monitor powersave off
1537 mp_msg(MSGT_VO, MSGL_V, "DPMSDisable stat: %d\n", stat);
1540 #endif
1543 static XErrorHandler old_handler = NULL;
1544 static int selectinput_err = 0;
1545 static int x11_selectinput_errorhandler(Display * display,
1546 XErrorEvent * event)
1548 if (event->error_code == BadAccess)
1550 selectinput_err = 1;
1551 mp_msg(MSGT_VO, MSGL_ERR,
1552 "X11 error: BadAccess during XSelectInput Call\n");
1553 mp_msg(MSGT_VO, MSGL_ERR,
1554 "X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)\n");
1555 /* If you think MPlayer should shutdown with this error,
1556 * comment out the following line */
1557 return 0;
1559 if (old_handler != NULL)
1560 old_handler(display, event);
1561 else
1562 x11_errorhandler(display, event);
1563 return 0;
1566 void vo_x11_selectinput_witherr(Display * display, Window w,
1567 long event_mask)
1569 XSync(display, False);
1570 old_handler = XSetErrorHandler(x11_selectinput_errorhandler);
1571 selectinput_err = 0;
1572 if (vo_nomouse_input)
1574 XSelectInput(display, w,
1575 event_mask &
1576 (~(ButtonPressMask | ButtonReleaseMask)));
1577 } else
1579 XSelectInput(display, w, event_mask);
1581 XSync(display, False);
1582 XSetErrorHandler(old_handler);
1583 if (selectinput_err)
1585 mp_msg(MSGT_VO, MSGL_ERR,
1586 "X11 error: MPlayer discards mouse control (reconfiguring)\n");
1587 XSelectInput(display, w,
1588 event_mask &
1590 (ButtonPressMask | ButtonReleaseMask |
1591 PointerMotionMask)));
1595 #ifdef CONFIG_XF86VM
1596 void vo_vm_switch(struct vo *vo)
1598 struct vo_x11_state *x11 = vo->x11;
1599 struct MPOpts *opts = vo->opts;
1600 Display *mDisplay = x11->display;
1601 int vm_event, vm_error;
1602 int vm_ver, vm_rev;
1603 int i, j, have_vm = 0;
1604 int X = vo->dwidth, Y = vo->dheight;
1605 int modeline_width, modeline_height;
1607 int modecount;
1609 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error))
1611 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev);
1612 mp_msg(MSGT_VO, MSGL_V, "XF86VidMode extension v%i.%i\n", vm_ver,
1613 vm_rev);
1614 have_vm = 1;
1615 } else {
1616 mp_msg(MSGT_VO, MSGL_WARN,
1617 "XF86VidMode extension not available.\n");
1620 if (have_vm)
1622 if (vidmodes == NULL)
1623 XF86VidModeGetAllModeLines(mDisplay, x11->screen, &modecount,
1624 &vidmodes);
1625 j = 0;
1626 modeline_width = vidmodes[0]->hdisplay;
1627 modeline_height = vidmodes[0]->vdisplay;
1629 for (i = 1; i < modecount; i++)
1630 if ((vidmodes[i]->hdisplay >= X)
1631 && (vidmodes[i]->vdisplay >= Y))
1632 if ((vidmodes[i]->hdisplay <= modeline_width)
1633 && (vidmodes[i]->vdisplay <= modeline_height))
1635 modeline_width = vidmodes[i]->hdisplay;
1636 modeline_height = vidmodes[i]->vdisplay;
1637 j = i;
1640 mp_tmsg(MSGT_VO, MSGL_INFO, "XF86VM: Selected video mode %dx%d for image size %dx%d.\n",
1641 modeline_width, modeline_height, X, Y);
1642 XF86VidModeLockModeSwitch(mDisplay, x11->screen, 0);
1643 XF86VidModeSwitchToMode(mDisplay, x11->screen, vidmodes[j]);
1644 XF86VidModeSwitchToMode(mDisplay, x11->screen, vidmodes[j]);
1646 // FIXME: all this is more of a hack than proper solution
1647 X = (opts->vo_screenwidth - modeline_width) / 2;
1648 Y = (opts->vo_screenheight - modeline_height) / 2;
1649 XF86VidModeSetViewPort(mDisplay, x11->screen, X, Y);
1650 vo->dx = X;
1651 vo->dy = Y;
1652 vo->dwidth = modeline_width;
1653 vo->dheight = modeline_height;
1654 aspect_save_screenres(vo, modeline_width, modeline_height);
1658 void vo_vm_close(struct vo *vo)
1660 Display *dpy = vo->x11->display;
1661 struct MPOpts *opts = vo->opts;
1662 if (vidmodes != NULL)
1664 int i, modecount;
1666 free(vidmodes);
1667 vidmodes = NULL;
1668 XF86VidModeGetAllModeLines(dpy, vo->x11->screen, &modecount,
1669 &vidmodes);
1670 for (i = 0; i < modecount; i++)
1671 if ((vidmodes[i]->hdisplay == opts->vo_screenwidth)
1672 && (vidmodes[i]->vdisplay == opts->vo_screenheight))
1674 mp_msg(MSGT_VO, MSGL_INFO,
1675 "Returning to original mode %dx%d\n",
1676 opts->vo_screenwidth, opts->vo_screenheight);
1677 break;
1680 XF86VidModeSwitchToMode(dpy, vo->x11->screen, vidmodes[i]);
1681 XF86VidModeSwitchToMode(dpy, vo->x11->screen, vidmodes[i]);
1682 free(vidmodes);
1683 vidmodes = NULL;
1687 double vo_vm_get_fps(struct vo *vo)
1689 struct vo_x11_state *x11 = vo->x11;
1690 int clock;
1691 XF86VidModeModeLine modeline;
1692 if (!XF86VidModeGetModeLine(x11->display, x11->screen, &clock, &modeline))
1693 return 0;
1694 if (modeline.privsize)
1695 XFree(modeline.private);
1696 return 1e3 * clock / modeline.htotal / modeline.vtotal;
1698 #endif
1700 #endif /* X11_FULLSCREEN */
1704 * Scan the available visuals on this Display/Screen. Try to find
1705 * the 'best' available TrueColor visual that has a decent color
1706 * depth (at least 15bit). If there are multiple visuals with depth
1707 * >= 15bit, we prefer visuals with a smaller color depth.
1709 int vo_find_depth_from_visuals(Display * dpy, int screen,
1710 Visual ** visual_return)
1712 XVisualInfo visual_tmpl;
1713 XVisualInfo *visuals;
1714 int nvisuals, i;
1715 int bestvisual = -1;
1716 int bestvisual_depth = -1;
1718 visual_tmpl.screen = screen;
1719 visual_tmpl.class = TrueColor;
1720 visuals = XGetVisualInfo(dpy,
1721 VisualScreenMask | VisualClassMask,
1722 &visual_tmpl, &nvisuals);
1723 if (visuals != NULL)
1725 for (i = 0; i < nvisuals; i++)
1727 mp_msg(MSGT_VO, MSGL_V,
1728 "vo: X11 truecolor visual %#lx, depth %d, R:%lX G:%lX B:%lX\n",
1729 visuals[i].visualid, visuals[i].depth,
1730 visuals[i].red_mask, visuals[i].green_mask,
1731 visuals[i].blue_mask);
1733 * Save the visual index and its depth, if this is the first
1734 * truecolor visul, or a visual that is 'preferred' over the
1735 * previous 'best' visual.
1737 if (bestvisual_depth == -1
1738 || (visuals[i].depth >= 15
1739 && (visuals[i].depth < bestvisual_depth
1740 || bestvisual_depth < 15)))
1742 bestvisual = i;
1743 bestvisual_depth = visuals[i].depth;
1747 if (bestvisual != -1 && visual_return != NULL)
1748 *visual_return = visuals[bestvisual].visual;
1750 XFree(visuals);
1752 return bestvisual_depth;
1756 static Colormap cmap = None;
1757 static XColor cols[256];
1758 static int cm_size, red_mask, green_mask, blue_mask;
1761 Colormap vo_x11_create_colormap(struct vo *vo, XVisualInfo *vinfo)
1763 struct vo_x11_state *x11 = vo->x11;
1764 unsigned k, r, g, b, ru, gu, bu, m, rv, gv, bv, rvu, gvu, bvu;
1766 if (vinfo->class != DirectColor)
1767 return XCreateColormap(x11->display, x11->rootwin, vinfo->visual,
1768 AllocNone);
1770 /* can this function get called twice or more? */
1771 if (cmap)
1772 return cmap;
1773 cm_size = vinfo->colormap_size;
1774 red_mask = vinfo->red_mask;
1775 green_mask = vinfo->green_mask;
1776 blue_mask = vinfo->blue_mask;
1777 ru = (red_mask & (red_mask - 1)) ^ red_mask;
1778 gu = (green_mask & (green_mask - 1)) ^ green_mask;
1779 bu = (blue_mask & (blue_mask - 1)) ^ blue_mask;
1780 rvu = 65536ull * ru / (red_mask + ru);
1781 gvu = 65536ull * gu / (green_mask + gu);
1782 bvu = 65536ull * bu / (blue_mask + bu);
1783 r = g = b = 0;
1784 rv = gv = bv = 0;
1785 m = DoRed | DoGreen | DoBlue;
1786 for (k = 0; k < cm_size; k++)
1788 int t;
1790 cols[k].pixel = r | g | b;
1791 cols[k].red = rv;
1792 cols[k].green = gv;
1793 cols[k].blue = bv;
1794 cols[k].flags = m;
1795 t = (r + ru) & red_mask;
1796 if (t < r)
1797 m &= ~DoRed;
1798 r = t;
1799 t = (g + gu) & green_mask;
1800 if (t < g)
1801 m &= ~DoGreen;
1802 g = t;
1803 t = (b + bu) & blue_mask;
1804 if (t < b)
1805 m &= ~DoBlue;
1806 b = t;
1807 rv += rvu;
1808 gv += gvu;
1809 bv += bvu;
1811 cmap = XCreateColormap(x11->display, x11->rootwin, vinfo->visual, AllocAll);
1812 XStoreColors(x11->display, cmap, cols, cm_size);
1813 return cmap;
1817 * Via colormaps/gamma ramps we can do gamma, brightness, contrast,
1818 * hue and red/green/blue intensity, but we cannot do saturation.
1819 * Currently only gamma, brightness and contrast are implemented.
1820 * Is there sufficient interest for hue and/or red/green/blue intensity?
1822 /* these values have range [-100,100] and are initially 0 */
1823 static int vo_gamma = 0;
1824 static int vo_brightness = 0;
1825 static int vo_contrast = 0;
1827 static int transform_color(float val,
1828 float brightness, float contrast, float gamma) {
1829 float s = pow(val, gamma);
1830 s = (s - 0.5) * contrast + 0.5;
1831 s += brightness;
1832 if (s < 0)
1833 s = 0;
1834 if (s > 1)
1835 s = 1;
1836 return (unsigned short) (s * 65535);
1839 uint32_t vo_x11_set_equalizer(struct vo *vo, char *name, int value)
1841 float gamma, brightness, contrast;
1842 float rf, gf, bf;
1843 int k;
1846 * IMPLEMENTME: consider using XF86VidModeSetGammaRamp in the case
1847 * of TrueColor-ed window but be careful:
1848 * Unlike the colormaps, which are private for the X client
1849 * who created them and thus automatically destroyed on client
1850 * disconnect, this gamma ramp is a system-wide (X-server-wide)
1851 * setting and _must_ be restored before the process exits.
1852 * Unforunately when the process crashes (or gets killed
1853 * for some reason) it is impossible to restore the setting,
1854 * and such behaviour could be rather annoying for the users.
1856 if (cmap == None)
1857 return VO_NOTAVAIL;
1859 if (!strcasecmp(name, "brightness"))
1860 vo_brightness = value;
1861 else if (!strcasecmp(name, "contrast"))
1862 vo_contrast = value;
1863 else if (!strcasecmp(name, "gamma"))
1864 vo_gamma = value;
1865 else
1866 return VO_NOTIMPL;
1868 brightness = 0.01 * vo_brightness;
1869 contrast = tan(0.0095 * (vo_contrast + 100) * M_PI / 4);
1870 gamma = pow(2, -0.02 * vo_gamma);
1872 rf = (float) ((red_mask & (red_mask - 1)) ^ red_mask) / red_mask;
1873 gf = (float) ((green_mask & (green_mask - 1)) ^ green_mask) /
1874 green_mask;
1875 bf = (float) ((blue_mask & (blue_mask - 1)) ^ blue_mask) / blue_mask;
1877 /* now recalculate the colormap using the newly set value */
1878 for (k = 0; k < cm_size; k++)
1880 cols[k].red = transform_color(rf * k, brightness, contrast, gamma);
1881 cols[k].green = transform_color(gf * k, brightness, contrast, gamma);
1882 cols[k].blue = transform_color(bf * k, brightness, contrast, gamma);
1885 XStoreColors(vo->x11->display, cmap, cols, cm_size);
1886 XFlush(vo->x11->display);
1887 return VO_TRUE;
1890 uint32_t vo_x11_get_equalizer(char *name, int *value)
1892 if (cmap == None)
1893 return VO_NOTAVAIL;
1894 if (!strcasecmp(name, "brightness"))
1895 *value = vo_brightness;
1896 else if (!strcasecmp(name, "contrast"))
1897 *value = vo_contrast;
1898 else if (!strcasecmp(name, "gamma"))
1899 *value = vo_gamma;
1900 else
1901 return VO_NOTIMPL;
1902 return VO_TRUE;
1905 #ifdef CONFIG_XV
1906 int vo_xv_set_eq(struct vo *vo, uint32_t xv_port, char *name, int value)
1908 XvAttribute *attributes;
1909 int i, howmany, xv_atom;
1911 mp_dbg(MSGT_VO, MSGL_V, "xv_set_eq called! (%s, %d)\n", name, value);
1913 /* get available attributes */
1914 attributes = XvQueryPortAttributes(vo->x11->display, xv_port, &howmany);
1915 for (i = 0; i < howmany && attributes; i++)
1916 if (attributes[i].flags & XvSettable)
1918 xv_atom = XInternAtom(vo->x11->display, attributes[i].name, True);
1919 /* since we have SET_DEFAULTS first in our list, we can check if it's available
1920 then trigger it if it's ok so that the other values are at default upon query */
1921 if (xv_atom != None)
1923 int hue = 0, port_value, port_min, port_max;
1925 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") &&
1926 (!strcasecmp(name, "brightness")))
1927 port_value = value;
1928 else if (!strcmp(attributes[i].name, "XV_CONTRAST") &&
1929 (!strcasecmp(name, "contrast")))
1930 port_value = value;
1931 else if (!strcmp(attributes[i].name, "XV_SATURATION") &&
1932 (!strcasecmp(name, "saturation")))
1933 port_value = value;
1934 else if (!strcmp(attributes[i].name, "XV_HUE") &&
1935 (!strcasecmp(name, "hue")))
1937 port_value = value;
1938 hue = 1;
1939 } else
1940 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
1941 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") &&
1942 (!strcasecmp(name, "red_intensity")))
1943 port_value = value;
1944 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY")
1945 && (!strcasecmp(name, "green_intensity")))
1946 port_value = value;
1947 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY")
1948 && (!strcasecmp(name, "blue_intensity")))
1949 port_value = value;
1950 else if ((!strcmp(attributes[i].name, "XV_ITURBT_709") //NVIDIA
1951 || !strcmp(attributes[i].name, "XV_COLORSPACE"))//ATI
1952 && (!strcasecmp(name, "bt_709")))
1953 port_value = value;
1954 else
1955 continue;
1957 port_min = attributes[i].min_value;
1958 port_max = attributes[i].max_value;
1960 /* nvidia hue workaround */
1961 if (hue && port_min == 0 && port_max == 360)
1963 port_value =
1964 (port_value >=
1965 0) ? (port_value - 100) : (port_value + 100);
1967 // -100 -> min
1968 // 0 -> (max+min)/2
1969 // +100 -> max
1970 port_value =
1971 (port_value + 100) * (port_max - port_min) / 200 +
1972 port_min;
1973 XvSetPortAttribute(vo->x11->display, xv_port, xv_atom, port_value);
1974 return VO_TRUE;
1977 return VO_FALSE;
1980 int vo_xv_get_eq(struct vo *vo, uint32_t xv_port, char *name, int *value)
1983 XvAttribute *attributes;
1984 int i, howmany, xv_atom;
1986 /* get available attributes */
1987 attributes = XvQueryPortAttributes(vo->x11->display, xv_port, &howmany);
1988 for (i = 0; i < howmany && attributes; i++)
1989 if (attributes[i].flags & XvGettable)
1991 xv_atom = XInternAtom(vo->x11->display, attributes[i].name, True);
1992 /* since we have SET_DEFAULTS first in our list, we can check if it's available
1993 then trigger it if it's ok so that the other values are at default upon query */
1994 if (xv_atom != None)
1996 int val, port_value = 0, port_min, port_max;
1998 XvGetPortAttribute(vo->x11->display, xv_port, xv_atom,
1999 &port_value);
2001 port_min = attributes[i].min_value;
2002 port_max = attributes[i].max_value;
2003 val =
2004 (port_value - port_min) * 200 / (port_max - port_min) -
2005 100;
2007 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") &&
2008 (!strcasecmp(name, "brightness")))
2009 *value = val;
2010 else if (!strcmp(attributes[i].name, "XV_CONTRAST") &&
2011 (!strcasecmp(name, "contrast")))
2012 *value = val;
2013 else if (!strcmp(attributes[i].name, "XV_SATURATION") &&
2014 (!strcasecmp(name, "saturation")))
2015 *value = val;
2016 else if (!strcmp(attributes[i].name, "XV_HUE") &&
2017 (!strcasecmp(name, "hue")))
2019 /* nasty nvidia detect */
2020 if (port_min == 0 && port_max == 360)
2021 *value = (val >= 0) ? (val - 100) : (val + 100);
2022 else
2023 *value = val;
2024 } else
2025 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
2026 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") &&
2027 (!strcasecmp(name, "red_intensity")))
2028 *value = val;
2029 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY")
2030 && (!strcasecmp(name, "green_intensity")))
2031 *value = val;
2032 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY")
2033 && (!strcasecmp(name, "blue_intensity")))
2034 *value = val;
2035 else if ((!strcmp(attributes[i].name, "XV_ITURBT_709") //NVIDIA
2036 || !strcmp(attributes[i].name, "XV_COLORSPACE"))//ATI
2037 && (!strcasecmp(name, "bt_709")))
2038 *value = val;
2039 else
2040 continue;
2042 mp_dbg(MSGT_VO, MSGL_V, "xv_get_eq called! (%s, %d)\n",
2043 name, *value);
2044 return VO_TRUE;
2047 return VO_FALSE;
2051 * \brief Interns the requested atom if it is available.
2053 * \param atom_name String containing the name of the requested atom.
2055 * \return Returns the atom if available, else None is returned.
2058 static Atom xv_intern_atom_if_exists(struct vo_x11_state *x11,
2059 char const *atom_name)
2061 XvAttribute * attributes;
2062 int attrib_count,i;
2063 Atom xv_atom = None;
2065 attributes = XvQueryPortAttributes(x11->display, x11->xv_port, &attrib_count );
2066 if( attributes!=NULL )
2068 for ( i = 0; i < attrib_count; ++i )
2070 if ( strcmp(attributes[i].name, atom_name ) == 0 )
2072 xv_atom = XInternAtom(x11->display, atom_name, False );
2073 break; // found what we want, break out
2076 XFree( attributes );
2079 return xv_atom;
2083 * \brief Try to enable vsync for xv.
2084 * \return Returns -1 if not available, 0 on failure and 1 on success.
2086 int vo_xv_enable_vsync(struct vo *vo)
2088 struct vo_x11_state *x11 = vo->x11;
2089 Atom xv_atom = xv_intern_atom_if_exists(x11, "XV_SYNC_TO_VBLANK");
2090 if (xv_atom == None)
2091 return -1;
2092 return XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 1) == Success;
2096 * \brief Get maximum supported source image dimensions.
2098 * This function does not set the variables pointed to by
2099 * width and height if the information could not be retrieved,
2100 * so the caller is reponsible for properly initializing them.
2102 * \param width [out] The maximum width gets stored here.
2103 * \param height [out] The maximum height gets stored here.
2106 void vo_xv_get_max_img_dim(struct vo *vo, uint32_t * width, uint32_t * height)
2108 struct vo_x11_state *x11 = vo->x11;
2109 XvEncodingInfo * encodings;
2110 //unsigned long num_encodings, idx; to int or too long?!
2111 unsigned int num_encodings, idx;
2113 XvQueryEncodings(x11->display, x11->xv_port, &num_encodings, &encodings);
2115 if ( encodings )
2117 for ( idx = 0; idx < num_encodings; ++idx )
2119 if ( strcmp( encodings[idx].name, "XV_IMAGE" ) == 0 )
2121 *width = encodings[idx].width;
2122 *height = encodings[idx].height;
2123 break;
2128 mp_msg( MSGT_VO, MSGL_V,
2129 "[xv common] Maximum source image dimensions: %ux%u\n",
2130 *width, *height );
2132 XvFreeEncodingInfo( encodings );
2136 * \brief Print information about the colorkey method and source.
2138 * \param ck_handling Integer value containing the information about
2139 * colorkey handling (see x11_common.h).
2141 * Outputs the content of |ck_handling| as a readable message.
2144 static void vo_xv_print_ck_info(struct vo_x11_state *x11)
2146 mp_msg( MSGT_VO, MSGL_V, "[xv common] " );
2148 switch ( x11->xv_ck_info.method )
2150 case CK_METHOD_NONE:
2151 mp_msg( MSGT_VO, MSGL_V, "Drawing no colorkey.\n" ); return;
2152 case CK_METHOD_AUTOPAINT:
2153 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn by Xv." ); break;
2154 case CK_METHOD_MANUALFILL:
2155 mp_msg( MSGT_VO, MSGL_V, "Drawing colorkey manually." ); break;
2156 case CK_METHOD_BACKGROUND:
2157 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn as window background." ); break;
2160 mp_msg( MSGT_VO, MSGL_V, "\n[xv common] " );
2162 switch ( x11->xv_ck_info.source )
2164 case CK_SRC_CUR:
2165 mp_msg( MSGT_VO, MSGL_V, "Using colorkey from Xv (0x%06lx).\n",
2166 x11->xv_colorkey );
2167 break;
2168 case CK_SRC_USE:
2169 if ( x11->xv_ck_info.method == CK_METHOD_AUTOPAINT )
2171 mp_msg( MSGT_VO, MSGL_V,
2172 "Ignoring colorkey from MPlayer (0x%06lx).\n",
2173 x11->xv_colorkey );
2175 else
2177 mp_msg( MSGT_VO, MSGL_V,
2178 "Using colorkey from MPlayer (0x%06lx)."
2179 " Use -colorkey to change.\n",
2180 x11->xv_colorkey );
2182 break;
2183 case CK_SRC_SET:
2184 mp_msg( MSGT_VO, MSGL_V,
2185 "Setting and using colorkey from MPlayer (0x%06lx)."
2186 " Use -colorkey to change.\n",
2187 x11->xv_colorkey );
2188 break;
2192 * \brief Init colorkey depending on the settings in xv_ck_info.
2194 * \return Returns 0 on failure and 1 on success.
2196 * Sets the colorkey variable according to the CK_SRC_* and CK_METHOD_*
2197 * flags in xv_ck_info.
2199 * Possiblilities:
2200 * * Methods
2201 * - manual colorkey drawing ( CK_METHOD_MANUALFILL )
2202 * - set colorkey as window background ( CK_METHOD_BACKGROUND )
2203 * - let Xv paint the colorkey ( CK_METHOD_AUTOPAINT )
2204 * * Sources
2205 * - use currently set colorkey ( CK_SRC_CUR )
2206 * - use colorkey in vo_colorkey ( CK_SRC_USE )
2207 * - use and set colorkey in vo_colorkey ( CK_SRC_SET )
2209 * NOTE: If vo_colorkey has bits set after the first 3 low order bytes
2210 * we don't draw anything as this means it was forced to off.
2212 int vo_xv_init_colorkey(struct vo *vo)
2214 struct vo_x11_state *x11 = vo->x11;
2215 Atom xv_atom;
2216 int rez;
2218 /* check if colorkeying is needed */
2219 xv_atom = xv_intern_atom_if_exists(vo->x11, "XV_COLORKEY");
2221 /* if we have to deal with colorkeying ... */
2222 if( xv_atom != None && !(vo_colorkey & 0xFF000000) )
2224 /* check if we should use the colorkey specified in vo_colorkey */
2225 if ( x11->xv_ck_info.source != CK_SRC_CUR )
2227 x11->xv_colorkey = vo_colorkey;
2229 /* check if we have to set the colorkey too */
2230 if ( x11->xv_ck_info.source == CK_SRC_SET )
2232 xv_atom = XInternAtom(x11->display, "XV_COLORKEY",False);
2234 rez = XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, vo_colorkey);
2235 if ( rez != Success )
2237 mp_msg( MSGT_VO, MSGL_FATAL,
2238 "[xv common] Couldn't set colorkey!\n" );
2239 return 0; // error setting colorkey
2243 else
2245 int colorkey_ret;
2247 rez=XvGetPortAttribute(x11->display,x11->xv_port, xv_atom, &colorkey_ret);
2248 if ( rez == Success )
2250 x11->xv_colorkey = colorkey_ret;
2252 else
2254 mp_msg( MSGT_VO, MSGL_FATAL,
2255 "[xv common] Couldn't get colorkey!"
2256 "Maybe the selected Xv port has no overlay.\n" );
2257 return 0; // error getting colorkey
2261 xv_atom = xv_intern_atom_if_exists(vo->x11, "XV_AUTOPAINT_COLORKEY");
2263 /* should we draw the colorkey ourselves or activate autopainting? */
2264 if ( x11->xv_ck_info.method == CK_METHOD_AUTOPAINT )
2266 rez = !Success; // reset rez to something different than Success
2268 if ( xv_atom != None ) // autopaint is supported
2270 rez = XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 1);
2273 if ( rez != Success )
2275 // fallback to manual colorkey drawing
2276 x11->xv_ck_info.method = CK_METHOD_MANUALFILL;
2279 else // disable colorkey autopainting if supported
2281 if ( xv_atom != None ) // we have autopaint attribute
2283 XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 0);
2287 else // do no colorkey drawing at all
2289 x11->xv_ck_info.method = CK_METHOD_NONE;
2290 } /* end: should we draw colorkey */
2292 /* output information about the current colorkey settings */
2293 vo_xv_print_ck_info(x11);
2295 return 1; // success
2299 * \brief Draw the colorkey on the video window.
2301 * Draws the colorkey depending on the set method ( colorkey_handling ).
2303 * Also draws the black bars ( when the video doesn't fit the display in
2304 * fullscreen ) separately, so they don't overlap with the video area.
2305 * It doesn't call XFlush.
2308 void vo_xv_draw_colorkey(struct vo *vo, int32_t x, int32_t y,
2309 int32_t w, int32_t h)
2311 struct MPOpts *opts = vo->opts;
2312 struct vo_x11_state *x11 = vo->x11;
2313 if( x11->xv_ck_info.method == CK_METHOD_MANUALFILL ||
2314 x11->xv_ck_info.method == CK_METHOD_BACKGROUND )//less tearing than XClearWindow()
2316 XSetForeground(x11->display, x11->vo_gc, x11->xv_colorkey );
2317 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2318 x, y,
2319 w, h );
2322 /* draw black bars if needed */
2323 /* TODO! move this to vo_x11_clearwindow_part() */
2324 if ( vo_fs )
2326 XSetForeground(x11->display, x11->vo_gc, 0 );
2327 /* making non-overlap fills, requires 8 checks instead of 4 */
2328 if ( y > 0 )
2329 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2330 0, 0,
2331 opts->vo_screenwidth, y);
2332 if (x > 0)
2333 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2334 0, 0,
2335 x, opts->vo_screenheight);
2336 if (x + w < opts->vo_screenwidth)
2337 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2338 x + w, 0,
2339 opts->vo_screenwidth, opts->vo_screenheight);
2340 if (y + h < opts->vo_screenheight)
2341 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2342 0, y + h,
2343 opts->vo_screenwidth, opts->vo_screenheight);
2347 /** \brief Tests if a valid argument for the ck suboption was given. */
2348 int xv_test_ck( void * arg )
2350 strarg_t * strarg = (strarg_t *)arg;
2352 if ( strargcmp( strarg, "use" ) == 0 ||
2353 strargcmp( strarg, "set" ) == 0 ||
2354 strargcmp( strarg, "cur" ) == 0 )
2356 return 1;
2359 return 0;
2361 /** \brief Tests if a valid arguments for the ck-method suboption was given. */
2362 int xv_test_ckm( void * arg )
2364 strarg_t * strarg = (strarg_t *)arg;
2366 if ( strargcmp( strarg, "bg" ) == 0 ||
2367 strargcmp( strarg, "man" ) == 0 ||
2368 strargcmp( strarg, "auto" ) == 0 )
2370 return 1;
2373 return 0;
2377 * \brief Modify the colorkey_handling var according to str
2379 * Checks if a valid pointer ( not NULL ) to the string
2380 * was given. And in that case modifies the colorkey_handling
2381 * var to reflect the requested behaviour.
2382 * If nothing happens the content of colorkey_handling stays
2383 * the same.
2385 * \param str Pointer to the string or NULL
2388 void xv_setup_colorkeyhandling(struct vo *vo, const char *ck_method_str,
2389 const char *ck_str)
2391 struct vo_x11_state *x11 = vo->x11;
2392 /* check if a valid pointer to the string was passed */
2393 if ( ck_str )
2395 if ( strncmp( ck_str, "use", 3 ) == 0 )
2397 x11->xv_ck_info.source = CK_SRC_USE;
2399 else if ( strncmp( ck_str, "set", 3 ) == 0 )
2401 x11->xv_ck_info.source = CK_SRC_SET;
2404 /* check if a valid pointer to the string was passed */
2405 if ( ck_method_str )
2407 if ( strncmp( ck_method_str, "bg", 2 ) == 0 )
2409 x11->xv_ck_info.method = CK_METHOD_BACKGROUND;
2411 else if ( strncmp( ck_method_str, "man", 3 ) == 0 )
2413 x11->xv_ck_info.method = CK_METHOD_MANUALFILL;
2415 else if ( strncmp( ck_method_str, "auto", 4 ) == 0 )
2417 x11->xv_ck_info.method = CK_METHOD_AUTOPAINT;
2422 #endif
2424 struct vo_x11_state *vo_x11_init_state(void)
2426 struct vo_x11_state *s = talloc_ptrtype(NULL, s);
2427 *s = (struct vo_x11_state){
2428 .xv_ck_info = { CK_METHOD_MANUALFILL, CK_SRC_CUR },
2429 .olddecor = MWM_DECOR_ALL,
2430 .oldfuncs = MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE |
2431 MWM_FUNC_MAXIMIZE | MWM_FUNC_RESIZE,
2432 .old_gravity = NorthWestGravity,
2434 return s;