talloc.[ch]: remove "type safety" hack that violates C types
[mplayer.git] / libvo / x11_common.c
blob1b7636bba803bf6c8e65273bed1715485db31d18
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/keycodes.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 "wskeys.h"
533 #ifdef XF86XK_AudioPause
534 static const struct mp_keymap keysym_map[] = {
535 {XF86XK_MenuKB, KEY_MENU},
536 {XF86XK_AudioPlay, KEY_PLAY}, {XF86XK_AudioPause, KEY_PAUSE}, {XF86XK_AudioStop, KEY_STOP},
537 {XF86XK_AudioPrev, KEY_PREV}, {XF86XK_AudioNext, KEY_NEXT},
538 {XF86XK_AudioMute, KEY_MUTE}, {XF86XK_AudioLowerVolume, KEY_VOLUME_DOWN}, {XF86XK_AudioRaiseVolume, KEY_VOLUME_UP},
539 {0, 0}
542 static void vo_x11_putkey_ext(struct vo *vo, int keysym, int modifiers)
544 struct mp_fifo *f = vo->key_fifo;
545 int mpkey = lookup_keymap_table(keysym_map, keysym);
546 if (mpkey)
547 mplayer_put_key(f, mpkey + modifiers);
549 #endif
551 static const struct mp_keymap keymap[] = {
552 // special keys
553 {wsPause, KEY_PAUSE}, {wsEscape, KEY_ESC}, {wsBackSpace, KEY_BS},
554 {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 : (char *)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 XFreeGC(vo->x11->display, x11->vo_gc);
737 x11->vo_gc = None;
739 if (x11->window != None)
741 XClearWindow(x11->display, x11->window);
742 if (WinID < 0)
744 XEvent xev;
746 XUnmapWindow(x11->display, x11->window);
747 XSelectInput(x11->display, x11->window, StructureNotifyMask);
748 XDestroyWindow(x11->display, x11->window);
751 XNextEvent(x11->display, &xev);
753 while (xev.type != DestroyNotify
754 || xev.xdestroywindow.event != x11->window);
756 x11->window = None;
758 vo_fs = 0;
759 x11->vo_old_width = x11->vo_old_height = 0;
760 x11->last_video_width = 0;
761 x11->last_video_height = 0;
762 x11->size_changed_during_fs = false;
766 static int check_resize(struct vo *vo)
768 int old_w = vo->dwidth, old_h = vo->dheight;
769 int old_x = vo->dx, old_y = vo->dy;
770 int rc = 0;
771 vo_x11_update_geometry(vo, true);
772 if (vo->dwidth != old_w || vo->dheight != old_h)
773 rc |= VO_EVENT_RESIZE;
774 if (vo->dx != old_x || vo->dy != old_y)
775 rc |= VO_EVENT_MOVE;
776 return rc;
779 int vo_x11_check_events(struct vo *vo)
781 struct vo_x11_state *x11 = vo->x11;
782 Display *display = vo->x11->display;
783 int ret = 0;
784 XEvent Event;
785 char buf[100];
786 KeySym keySym;
788 if (x11->vo_mouse_autohide && x11->mouse_waiting_hide &&
789 (GetTimerMS() - x11->mouse_timer >= 1000)) {
790 vo_hidecursor(display, x11->window);
791 x11->mouse_waiting_hide = 0;
794 if (WinID > 0)
795 ret |= check_resize(vo);
796 while (XPending(display))
798 XNextEvent(display, &Event);
799 // printf("\rEvent.type=%X \n",Event.type);
800 switch (Event.type)
802 case Expose:
803 ret |= VO_EVENT_EXPOSE;
804 break;
805 case ConfigureNotify:
806 if (x11->window == None)
807 break;
808 ret |= check_resize(vo);
809 break;
810 case KeyPress:
812 XLookupString(&Event.xkey, buf, sizeof(buf), &keySym,
813 &x11->compose_status);
814 int modifiers = 0;
815 if (Event.xkey.state & ShiftMask)
816 modifiers |= KEY_MODIFIER_SHIFT;
817 if (Event.xkey.state & ControlMask)
818 modifiers |= KEY_MODIFIER_CTRL;
819 if (Event.xkey.state & Mod1Mask)
820 modifiers |= KEY_MODIFIER_ALT;
821 if (Event.xkey.state & Mod4Mask)
822 modifiers |= KEY_MODIFIER_META;
823 #ifdef XF86XK_AudioPause
824 vo_x11_putkey_ext(vo, keySym, modifiers);
825 #endif
826 vo_x11_putkey(vo, keySym, modifiers);
827 ret |= VO_EVENT_KEYPRESS;
829 break;
830 case MotionNotify:
831 vo_mouse_movement(vo, Event.xmotion.x, Event.xmotion.y);
833 if (x11->vo_mouse_autohide)
835 vo_showcursor(display, x11->window);
836 x11->mouse_waiting_hide = 1;
837 x11->mouse_timer = GetTimerMS();
839 break;
840 case ButtonPress:
841 if (x11->vo_mouse_autohide)
843 vo_showcursor(display, x11->window);
844 x11->mouse_waiting_hide = 1;
845 x11->mouse_timer = GetTimerMS();
847 mplayer_put_key(vo->key_fifo,
848 (MOUSE_BTN0 + Event.xbutton.button - 1)
849 | MP_KEY_DOWN);
850 break;
851 case ButtonRelease:
852 if (x11->vo_mouse_autohide)
854 vo_showcursor(display, x11->window);
855 x11->mouse_waiting_hide = 1;
856 x11->mouse_timer = GetTimerMS();
858 mplayer_put_key(vo->key_fifo,
859 MOUSE_BTN0 + Event.xbutton.button - 1);
860 break;
861 case PropertyNotify:
863 char *name =
864 XGetAtomName(display, Event.xproperty.atom);
866 if (!name)
867 break;
869 // fprintf(stderr,"[ws] PropertyNotify ( 0x%x ) %s ( 0x%x )\n",vo_window,name,Event.xproperty.atom );
871 XFree(name);
873 break;
874 case MapNotify:
875 x11->vo_hint.win_gravity = x11->old_gravity;
876 XSetWMNormalHints(display, x11->window, &x11->vo_hint);
877 x11->fs_flip = 0;
878 break;
879 case DestroyNotify:
880 mp_msg(MSGT_VO, MSGL_WARN, "Our window was destroyed, exiting\n");
881 mplayer_put_key(vo->key_fifo, KEY_CLOSE_WIN);
882 break;
883 case ClientMessage:
884 if (Event.xclient.message_type == x11->XAWM_PROTOCOLS &&
885 Event.xclient.data.l[0] == x11->XAWM_DELETE_WINDOW)
886 mplayer_put_key(vo->key_fifo, KEY_CLOSE_WIN);
887 break;
890 return ret;
894 * \brief sets the size and position of the non-fullscreen window.
896 static void vo_x11_nofs_sizepos(struct vo *vo, int x, int y,
897 int width, int height)
899 struct vo_x11_state *x11 = vo->x11;
900 if (width == x11->last_video_width && height == x11->last_video_height) {
901 if (!vo->opts->force_window_position && !x11->size_changed_during_fs)
902 return;
903 } else if (vo_fs)
904 x11->size_changed_during_fs = true;
905 x11->last_video_height = height;
906 x11->last_video_width = width;
907 vo_x11_sizehint(vo, x, y, width, height, 0);
908 if (vo_fs) {
909 x11->vo_old_x = x;
910 x11->vo_old_y = y;
911 x11->vo_old_width = width;
912 x11->vo_old_height = height;
914 else
916 vo->dwidth = width;
917 vo->dheight = height;
918 if (vo->opts->force_window_position)
919 XMoveResizeWindow(vo->x11->display, vo->x11->window, x, y, width,
920 height);
921 else
922 XResizeWindow(vo->x11->display, vo->x11->window, width, height);
926 void vo_x11_sizehint(struct vo *vo, int x, int y, int width, int height, int max)
928 struct vo_x11_state *x11 = vo->x11;
929 x11->vo_hint.flags = 0;
930 if (vo_keepaspect)
932 x11->vo_hint.flags |= PAspect;
933 x11->vo_hint.min_aspect.x = width;
934 x11->vo_hint.min_aspect.y = height;
935 x11->vo_hint.max_aspect.x = width;
936 x11->vo_hint.max_aspect.y = height;
939 x11->vo_hint.flags |= PPosition | PSize;
940 x11->vo_hint.x = x;
941 x11->vo_hint.y = y;
942 x11->vo_hint.width = width;
943 x11->vo_hint.height = height;
944 if (max)
946 x11->vo_hint.flags |= PMaxSize;
947 x11->vo_hint.max_width = width;
948 x11->vo_hint.max_height = height;
949 } else
951 x11->vo_hint.max_width = 0;
952 x11->vo_hint.max_height = 0;
955 // Set minimum height/width to 4 to avoid off-by-one errors
956 // and because mga_vid requires a minimal size of 4 pixels.
957 x11->vo_hint.flags |= PMinSize;
958 x11->vo_hint.min_width = x11->vo_hint.min_height = 4;
960 // Set the base size. A window manager might display the window
961 // size to the user relative to this.
962 // Setting these to width/height might be nice, but e.g. fluxbox can't handle it.
963 x11->vo_hint.flags |= PBaseSize;
964 x11->vo_hint.base_width = 0 /*width*/;
965 x11->vo_hint.base_height = 0 /*height*/;
967 x11->vo_hint.flags |= PWinGravity;
968 x11->vo_hint.win_gravity = StaticGravity;
969 XSetWMNormalHints(x11->display, x11->window, &x11->vo_hint);
972 static int vo_x11_get_gnome_layer(struct vo_x11_state *x11, Window win)
974 Atom type;
975 int format;
976 unsigned long nitems;
977 unsigned long bytesafter;
978 unsigned short *args = NULL;
980 if (XGetWindowProperty(x11->display, win, x11->XA_WIN_LAYER, 0, 16384,
981 False, AnyPropertyType, &type, &format, &nitems,
982 &bytesafter,
983 (unsigned char **) &args) == Success
984 && nitems > 0 && args)
986 mp_msg(MSGT_VO, MSGL_V, "[x11] original window layer is %d.\n",
987 *args);
988 return *args;
990 return WIN_LAYER_NORMAL;
994 static Window vo_x11_create_smooth_window(struct vo_x11_state *x11, Window mRoot,
995 Visual * vis, int x, int y,
996 unsigned int width, unsigned int height,
997 int depth, Colormap col_map)
999 unsigned long xswamask = CWBorderPixel;
1000 XSetWindowAttributes xswa;
1001 Window ret_win;
1003 if (col_map != CopyFromParent)
1005 xswa.colormap = col_map;
1006 xswamask |= CWColormap;
1008 xswa.background_pixel = 0;
1009 xswa.border_pixel = 0;
1010 xswa.backing_store = NotUseful;
1011 xswa.bit_gravity = StaticGravity;
1013 ret_win =
1014 XCreateWindow(x11->display, x11->rootwin, x, y, width, height, 0, depth,
1015 CopyFromParent, vis, xswamask, &xswa);
1016 XSetWMProtocols(x11->display, ret_win, &x11->XAWM_DELETE_WINDOW, 1);
1017 if (x11->f_gc == None)
1018 x11->f_gc = XCreateGC(x11->display, ret_win, 0, 0);
1019 XSetForeground(x11->display, x11->f_gc, 0);
1021 return ret_win;
1025 * \brief create and setup a window suitable for display
1026 * \param vis Visual to use for creating the window
1027 * \param x x position of window
1028 * \param y y position of window
1029 * \param width width of window
1030 * \param height height of window
1031 * \param flags flags for window creation.
1032 * Only VOFLAG_FULLSCREEN is supported so far.
1033 * \param col_map Colourmap for window or CopyFromParent if a specific colormap isn't needed
1034 * \param classname name to use for the classhint
1035 * \param title title for the window
1037 * This also does the grunt-work like setting Window Manager hints etc.
1038 * If vo_window is already set it just moves and resizes it.
1040 void vo_x11_create_vo_window(struct vo *vo, XVisualInfo *vis, int x, int y,
1041 unsigned int width, unsigned int height, int flags,
1042 Colormap col_map,
1043 const char *classname, const char *title)
1045 struct MPOpts *opts = vo->opts;
1046 struct vo_x11_state *x11 = vo->x11;
1047 Display *mDisplay = vo->x11->display;
1048 if (WinID >= 0) {
1049 vo_fs = flags & VOFLAG_FULLSCREEN;
1050 x11->window = WinID ? (Window)WinID : x11->rootwin;
1051 if (col_map != CopyFromParent) {
1052 unsigned long xswamask = CWColormap;
1053 XSetWindowAttributes xswa;
1054 xswa.colormap = col_map;
1055 XChangeWindowAttributes(mDisplay, x11->window, xswamask, &xswa);
1056 XInstallColormap(mDisplay, col_map);
1058 if (WinID) {
1059 // Expose events can only really be handled by us, so request them.
1060 vo_x11_selectinput_witherr(mDisplay, x11->window, ExposureMask);
1061 } else
1062 // Do not capture events since it might break the parent application
1063 // if it relies on events being forwarded to the parent of WinID.
1064 // It also is consistent with the w32_common.c code.
1065 vo_x11_selectinput_witherr(mDisplay, x11->window,
1066 StructureNotifyMask | KeyPressMask | PointerMotionMask |
1067 ButtonPressMask | ButtonReleaseMask | ExposureMask);
1069 vo_x11_update_geometry(vo, true);
1070 goto final;
1072 if (x11->window == None) {
1073 vo_fs = 0;
1074 vo->dwidth = width;
1075 vo->dheight = height;
1076 x11->window = vo_x11_create_smooth_window(x11, x11->rootwin, vis->visual,
1077 x, y, width, height, vis->depth, col_map);
1078 x11->window_state = VOFLAG_HIDDEN;
1080 if (flags & VOFLAG_HIDDEN)
1081 goto final;
1082 if (x11->window_state & VOFLAG_HIDDEN) {
1083 XSizeHints hint;
1084 x11->window_state &= ~VOFLAG_HIDDEN;
1085 vo_x11_classhint(vo, x11->window, classname);
1086 XStoreName(mDisplay, x11->window, title);
1087 vo_hidecursor(mDisplay, x11->window);
1088 XSelectInput(mDisplay, x11->window, StructureNotifyMask);
1089 hint.x = x; hint.y = y;
1090 hint.width = width; hint.height = height;
1091 hint.flags = PSize;
1092 if (geometry_xy_changed)
1093 hint.flags |= PPosition;
1094 XSetStandardProperties(mDisplay, x11->window, title, title, None, NULL, 0, &hint);
1095 if (!vo_border) vo_x11_decoration(vo, 0);
1096 // map window
1097 XSelectInput(mDisplay, x11->window, NoEventMask);
1098 vo_x11_selectinput_witherr(mDisplay, x11->window,
1099 StructureNotifyMask | KeyPressMask | PointerMotionMask |
1100 ButtonPressMask | ButtonReleaseMask | ExposureMask);
1101 XMapWindow(mDisplay, x11->window);
1102 vo_x11_clearwindow(vo, x11->window);
1104 if (opts->vo_ontop) vo_x11_setlayer(vo, x11->window, opts->vo_ontop);
1105 vo_x11_update_geometry(vo, !geometry_xy_changed);
1106 vo_x11_nofs_sizepos(vo, vo->dx, vo->dy, width, height);
1107 if (!!vo_fs != !!(flags & VOFLAG_FULLSCREEN))
1108 vo_x11_fullscreen(vo);
1109 else if (vo_fs) {
1110 // if we are already in fullscreen do not switch back and forth, just
1111 // set the size values right.
1112 vo->dwidth = vo->opts->vo_screenwidth;
1113 vo->dheight = vo->opts->vo_screenheight;
1115 final:
1116 if (x11->vo_gc != None)
1117 XFreeGC(mDisplay, x11->vo_gc);
1118 x11->vo_gc = XCreateGC(mDisplay, x11->window, 0, NULL);
1120 XSync(mDisplay, False);
1121 x11->vo_mouse_autohide = 1;
1122 vo->event_fd = ConnectionNumber(x11->display);
1125 void vo_x11_clearwindow_part(struct vo *vo, Window vo_window,
1126 int img_width, int img_height)
1128 struct vo_x11_state *x11 = vo->x11;
1129 Display *mDisplay = vo->x11->display;
1130 int u_dheight, u_dwidth, left_ov, left_ov2;
1132 if (x11->f_gc == None)
1133 return;
1135 u_dheight = vo->dheight;
1136 u_dwidth = vo->dwidth;
1137 if ((u_dheight <= img_height) && (u_dwidth <= img_width))
1138 return;
1140 left_ov = (u_dheight - img_height) / 2;
1141 left_ov2 = (u_dwidth - img_width) / 2;
1143 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, 0, u_dwidth, left_ov);
1144 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, u_dheight - left_ov - 1,
1145 u_dwidth, left_ov + 1);
1147 if (u_dwidth > img_width)
1149 XFillRectangle(mDisplay, vo_window, x11->f_gc, 0, left_ov, left_ov2,
1150 img_height);
1151 XFillRectangle(mDisplay, vo_window, x11->f_gc, u_dwidth - left_ov2 - 1,
1152 left_ov, left_ov2 + 1, img_height);
1155 XFlush(mDisplay);
1158 void vo_x11_clearwindow(struct vo *vo, Window vo_window)
1160 struct vo_x11_state *x11 = vo->x11;
1161 struct MPOpts *opts = vo->opts;
1162 if (x11->f_gc == None)
1163 return;
1164 XFillRectangle(x11->display, vo_window, x11->f_gc, 0, 0,
1165 opts->vo_screenwidth, opts->vo_screenheight);
1167 XFlush(x11->display);
1171 void vo_x11_setlayer(struct vo *vo, Window vo_window, int layer)
1173 struct vo_x11_state *x11 = vo->x11;
1174 if (WinID >= 0)
1175 return;
1177 if (x11->fs_type & vo_wm_LAYER)
1179 XClientMessageEvent xev;
1181 if (!x11->orig_layer)
1182 x11->orig_layer = vo_x11_get_gnome_layer(x11, vo_window);
1184 memset(&xev, 0, sizeof(xev));
1185 xev.type = ClientMessage;
1186 xev.display = x11->display;
1187 xev.window = vo_window;
1188 xev.message_type = x11->XA_WIN_LAYER;
1189 xev.format = 32;
1190 xev.data.l[0] = layer ? fs_layer : x11->orig_layer; // if not fullscreen, stay on default layer
1191 xev.data.l[1] = CurrentTime;
1192 mp_msg(MSGT_VO, MSGL_V,
1193 "[x11] Layered style stay on top (layer %ld).\n",
1194 xev.data.l[0]);
1195 XSendEvent(x11->display, x11->rootwin, False, SubstructureNotifyMask,
1196 (XEvent *) & xev);
1197 } else if (x11->fs_type & vo_wm_NETWM)
1199 XClientMessageEvent xev;
1200 char *state;
1202 memset(&xev, 0, sizeof(xev));
1203 xev.type = ClientMessage;
1204 xev.message_type = x11->XA_NET_WM_STATE;
1205 xev.display = x11->display;
1206 xev.window = vo_window;
1207 xev.format = 32;
1208 xev.data.l[0] = layer;
1210 if (x11->fs_type & vo_wm_STAYS_ON_TOP)
1211 xev.data.l[1] = x11->XA_NET_WM_STATE_STAYS_ON_TOP;
1212 else if (x11->fs_type & vo_wm_ABOVE)
1213 xev.data.l[1] = x11->XA_NET_WM_STATE_ABOVE;
1214 else if (x11->fs_type & vo_wm_FULLSCREEN)
1215 xev.data.l[1] = x11->XA_NET_WM_STATE_FULLSCREEN;
1216 else if (x11->fs_type & vo_wm_BELOW)
1217 // This is not fallback. We can safely assume that the situation
1218 // where only NETWM_STATE_BELOW is supported doesn't exist.
1219 xev.data.l[1] = x11->XA_NET_WM_STATE_BELOW;
1221 XSendEvent(x11->display, x11->rootwin, False, SubstructureRedirectMask,
1222 (XEvent *) & xev);
1223 state = XGetAtomName(x11->display, xev.data.l[1]);
1224 mp_msg(MSGT_VO, MSGL_V,
1225 "[x11] NET style stay on top (layer %d). Using state %s.\n",
1226 layer, state);
1227 XFree(state);
1231 static int vo_x11_get_fs_type(int supported)
1233 int i;
1234 int type = supported;
1236 if (vo_fstype_list)
1238 for (i = 0; vo_fstype_list[i]; i++)
1240 int neg = 0;
1241 char *arg = vo_fstype_list[i];
1243 if (vo_fstype_list[i][0] == '-')
1245 neg = 1;
1246 arg = vo_fstype_list[i] + 1;
1249 if (!strncmp(arg, "layer", 5))
1251 if (!neg && (arg[5] == '='))
1253 char *endptr = NULL;
1254 int layer = strtol(vo_fstype_list[i] + 6, &endptr, 10);
1256 if (endptr && *endptr == '\0' && layer >= 0
1257 && layer <= 15)
1258 fs_layer = layer;
1260 if (neg)
1261 type &= ~vo_wm_LAYER;
1262 else
1263 type |= vo_wm_LAYER;
1264 } else if (!strcmp(arg, "above"))
1266 if (neg)
1267 type &= ~vo_wm_ABOVE;
1268 else
1269 type |= vo_wm_ABOVE;
1270 } else if (!strcmp(arg, "fullscreen"))
1272 if (neg)
1273 type &= ~vo_wm_FULLSCREEN;
1274 else
1275 type |= vo_wm_FULLSCREEN;
1276 } else if (!strcmp(arg, "stays_on_top"))
1278 if (neg)
1279 type &= ~vo_wm_STAYS_ON_TOP;
1280 else
1281 type |= vo_wm_STAYS_ON_TOP;
1282 } else if (!strcmp(arg, "below"))
1284 if (neg)
1285 type &= ~vo_wm_BELOW;
1286 else
1287 type |= vo_wm_BELOW;
1288 } else if (!strcmp(arg, "netwm"))
1290 if (neg)
1291 type &= ~vo_wm_NETWM;
1292 else
1293 type |= vo_wm_NETWM;
1294 } else if (!strcmp(arg, "none"))
1295 type = 0; // clear; keep parsing
1299 return type;
1303 * \brief update vo->dx, vo->dy, vo->dwidth and vo->dheight with current values of vo->x11->window
1304 * \return returns current color depth of vo->x11->window
1306 int vo_x11_update_geometry(struct vo *vo, bool update_pos)
1308 struct MPOpts *opts = vo->opts;
1309 struct vo_x11_state *x11 = vo->x11;
1310 unsigned depth, w, h;
1311 int dummy_int;
1312 Window dummy_win;
1313 XGetGeometry(x11->display, x11->window, &dummy_win, &dummy_int, &dummy_int,
1314 &w, &h, &dummy_int, &depth);
1315 if (w <= INT_MAX && h <= INT_MAX) {
1316 vo->dwidth = w;
1317 vo->dheight = h;
1319 if (update_pos)
1320 XTranslateCoordinates(x11->display, x11->window, x11->rootwin, 0, 0,
1321 &vo->dx, &vo->dy, &dummy_win);
1322 if (opts->vo_wintitle)
1323 XStoreName(x11->display, x11->window, opts->vo_wintitle);
1325 return depth <= INT_MAX ? depth : 0;
1328 void vo_x11_fullscreen(struct vo *vo)
1330 struct MPOpts *opts = vo->opts;
1331 struct vo_x11_state *x11 = vo->x11;
1332 int x, y, w, h;
1333 x = x11->vo_old_x;
1334 y = x11->vo_old_y;
1335 w = x11->vo_old_width;
1336 h = x11->vo_old_height;
1338 if (WinID >= 0) {
1339 vo_fs = !vo_fs;
1340 return;
1342 if (x11->fs_flip)
1343 return;
1345 if (vo_fs)
1347 vo_x11_ewmh_fullscreen(x11, _NET_WM_STATE_REMOVE); // removes fullscreen state if wm supports EWMH
1348 vo_fs = VO_FALSE;
1349 if (x11->size_changed_during_fs && (x11->fs_type & vo_wm_FULLSCREEN))
1350 vo_x11_nofs_sizepos(vo, vo->dx, vo->dy, x11->last_video_width,
1351 x11->last_video_height);
1352 x11->size_changed_during_fs = false;
1353 } else
1355 // win->fs
1356 vo_x11_ewmh_fullscreen(x11, _NET_WM_STATE_ADD); // sends fullscreen state to be added if wm supports EWMH
1358 vo_fs = VO_TRUE;
1359 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs
1361 x11->vo_old_x = vo->dx;
1362 x11->vo_old_y = vo->dy;
1363 x11->vo_old_width = vo->dwidth;
1364 x11->vo_old_height = vo->dheight;
1366 update_xinerama_info(vo);
1367 x = xinerama_x;
1368 y = xinerama_y;
1369 w = opts->vo_screenwidth;
1370 h = opts->vo_screenheight;
1373 long dummy;
1375 XGetWMNormalHints(x11->display, x11->window, &x11->vo_hint, &dummy);
1376 if (!(x11->vo_hint.flags & PWinGravity))
1377 x11->old_gravity = NorthWestGravity;
1378 else
1379 x11->old_gravity = x11->vo_hint.win_gravity;
1381 if (x11->wm_type == 0 && !(vo_fsmode & 16))
1383 XUnmapWindow(x11->display, x11->window); // required for MWM
1384 XWithdrawWindow(x11->display, x11->window, x11->screen);
1385 x11->fs_flip = 1;
1388 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs
1390 vo_x11_decoration(vo, vo_border && !vo_fs);
1391 vo_x11_sizehint(vo, x, y, w, h, 0);
1392 vo_x11_setlayer(vo, x11->window, vo_fs);
1395 XMoveResizeWindow(x11->display, x11->window, x, y, w, h);
1397 /* some WMs lose ontop after fullscreen */
1398 if ((!(vo_fs)) & opts->vo_ontop)
1399 vo_x11_setlayer(vo, x11->window, opts->vo_ontop);
1401 XMapRaised(x11->display, x11->window);
1402 if ( ! (x11->fs_type & vo_wm_FULLSCREEN) ) // some WMs change window pos on map
1403 XMoveResizeWindow(x11->display, x11->window, x, y, w, h);
1404 XRaiseWindow(x11->display, x11->window);
1405 XFlush(x11->display);
1408 void vo_x11_ontop(struct vo *vo)
1410 struct MPOpts *opts = vo->opts;
1411 opts->vo_ontop = !opts->vo_ontop;
1413 vo_x11_setlayer(vo, vo->x11->window, opts->vo_ontop);
1416 void vo_x11_border(struct vo *vo)
1418 vo_border = !vo_border;
1419 vo_x11_decoration(vo, vo_border && !vo_fs);
1423 * XScreensaver stuff
1426 static int screensaver_off;
1427 static unsigned int time_last;
1429 void xscreensaver_heartbeat(struct vo_x11_state *x11)
1431 unsigned int time = GetTimerMS();
1433 if (x11->display && screensaver_off && (time - time_last) > 30000)
1435 time_last = time;
1437 XResetScreenSaver(x11->display);
1441 static int xss_suspend(Display *mDisplay, Bool suspend)
1443 #ifndef CONFIG_XSS
1444 return 0;
1445 #else
1446 int event, error, major, minor;
1447 if (XScreenSaverQueryExtension(mDisplay, &event, &error) != True ||
1448 XScreenSaverQueryVersion(mDisplay, &major, &minor) != True)
1449 return 0;
1450 if (major < 1 || (major == 1 && minor < 1))
1451 return 0;
1452 XScreenSaverSuspend(mDisplay, suspend);
1453 return 1;
1454 #endif
1458 * End of XScreensaver stuff
1461 static void saver_on(Display * mDisplay)
1464 if (!screensaver_off)
1465 return;
1466 screensaver_off = 0;
1467 if (xss_suspend(mDisplay, False))
1468 return;
1469 #ifdef CONFIG_XDPMS
1470 if (dpms_disabled)
1472 int nothing;
1473 if (DPMSQueryExtension(mDisplay, &nothing, &nothing))
1475 if (!DPMSEnable(mDisplay))
1476 { // restoring power saving settings
1477 mp_msg(MSGT_VO, MSGL_WARN, "DPMS not available?\n");
1478 } else
1480 // DPMS does not seem to be enabled unless we call DPMSInfo
1481 BOOL onoff;
1482 CARD16 state;
1484 DPMSForceLevel(mDisplay, DPMSModeOn);
1485 DPMSInfo(mDisplay, &state, &onoff);
1486 if (onoff)
1488 mp_msg(MSGT_VO, MSGL_V,
1489 "Successfully enabled DPMS\n");
1490 } else
1492 mp_msg(MSGT_VO, MSGL_WARN, "Could not enable DPMS\n");
1496 dpms_disabled = 0;
1498 #endif
1501 static void saver_off(Display * mDisplay)
1503 int nothing;
1505 if (screensaver_off)
1506 return;
1507 screensaver_off = 1;
1508 if (xss_suspend(mDisplay, True))
1509 return;
1510 #ifdef CONFIG_XDPMS
1511 if (DPMSQueryExtension(mDisplay, &nothing, &nothing))
1513 BOOL onoff;
1514 CARD16 state;
1516 DPMSInfo(mDisplay, &state, &onoff);
1517 if (onoff)
1519 Status stat;
1521 mp_msg(MSGT_VO, MSGL_V, "Disabling DPMS\n");
1522 dpms_disabled = 1;
1523 stat = DPMSDisable(mDisplay); // monitor powersave off
1524 mp_msg(MSGT_VO, MSGL_V, "DPMSDisable stat: %d\n", stat);
1527 #endif
1530 static XErrorHandler old_handler = NULL;
1531 static int selectinput_err = 0;
1532 static int x11_selectinput_errorhandler(Display * display,
1533 XErrorEvent * event)
1535 if (event->error_code == BadAccess)
1537 selectinput_err = 1;
1538 mp_msg(MSGT_VO, MSGL_ERR,
1539 "X11 error: BadAccess during XSelectInput Call\n");
1540 mp_msg(MSGT_VO, MSGL_ERR,
1541 "X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)\n");
1542 /* If you think MPlayer should shutdown with this error,
1543 * comment out the following line */
1544 return 0;
1546 if (old_handler != NULL)
1547 old_handler(display, event);
1548 else
1549 x11_errorhandler(display, event);
1550 return 0;
1553 void vo_x11_selectinput_witherr(Display * display, Window w,
1554 long event_mask)
1556 XSync(display, False);
1557 old_handler = XSetErrorHandler(x11_selectinput_errorhandler);
1558 selectinput_err = 0;
1559 if (vo_nomouse_input)
1561 XSelectInput(display, w,
1562 event_mask &
1563 (~(ButtonPressMask | ButtonReleaseMask)));
1564 } else
1566 XSelectInput(display, w, event_mask);
1568 XSync(display, False);
1569 XSetErrorHandler(old_handler);
1570 if (selectinput_err)
1572 mp_msg(MSGT_VO, MSGL_ERR,
1573 "X11 error: MPlayer discards mouse control (reconfiguring)\n");
1574 XSelectInput(display, w,
1575 event_mask &
1577 (ButtonPressMask | ButtonReleaseMask |
1578 PointerMotionMask)));
1582 #ifdef CONFIG_XF86VM
1583 void vo_vm_switch(struct vo *vo)
1585 struct vo_x11_state *x11 = vo->x11;
1586 struct MPOpts *opts = vo->opts;
1587 Display *mDisplay = x11->display;
1588 int vm_event, vm_error;
1589 int vm_ver, vm_rev;
1590 int i, j, have_vm = 0;
1591 int X = vo->dwidth, Y = vo->dheight;
1592 int modeline_width, modeline_height;
1594 int modecount;
1596 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error))
1598 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev);
1599 mp_msg(MSGT_VO, MSGL_V, "XF86VidMode extension v%i.%i\n", vm_ver,
1600 vm_rev);
1601 have_vm = 1;
1602 } else {
1603 mp_msg(MSGT_VO, MSGL_WARN,
1604 "XF86VidMode extension not available.\n");
1607 if (have_vm)
1609 if (vidmodes == NULL)
1610 XF86VidModeGetAllModeLines(mDisplay, x11->screen, &modecount,
1611 &vidmodes);
1612 j = 0;
1613 modeline_width = vidmodes[0]->hdisplay;
1614 modeline_height = vidmodes[0]->vdisplay;
1616 for (i = 1; i < modecount; i++)
1617 if ((vidmodes[i]->hdisplay >= X)
1618 && (vidmodes[i]->vdisplay >= Y))
1619 if ((vidmodes[i]->hdisplay <= modeline_width)
1620 && (vidmodes[i]->vdisplay <= modeline_height))
1622 modeline_width = vidmodes[i]->hdisplay;
1623 modeline_height = vidmodes[i]->vdisplay;
1624 j = i;
1627 mp_tmsg(MSGT_VO, MSGL_INFO, "XF86VM: Selected video mode %dx%d for image size %dx%d.\n",
1628 modeline_width, modeline_height, X, Y);
1629 XF86VidModeLockModeSwitch(mDisplay, x11->screen, 0);
1630 XF86VidModeSwitchToMode(mDisplay, x11->screen, vidmodes[j]);
1631 XF86VidModeSwitchToMode(mDisplay, x11->screen, vidmodes[j]);
1633 // FIXME: all this is more of a hack than proper solution
1634 X = (opts->vo_screenwidth - modeline_width) / 2;
1635 Y = (opts->vo_screenheight - modeline_height) / 2;
1636 XF86VidModeSetViewPort(mDisplay, x11->screen, X, Y);
1637 vo->dx = X;
1638 vo->dy = Y;
1639 vo->dwidth = modeline_width;
1640 vo->dheight = modeline_height;
1641 aspect_save_screenres(vo, modeline_width, modeline_height);
1645 void vo_vm_close(struct vo *vo)
1647 Display *dpy = vo->x11->display;
1648 struct MPOpts *opts = vo->opts;
1649 if (vidmodes != NULL)
1651 int i, modecount;
1653 free(vidmodes);
1654 vidmodes = NULL;
1655 XF86VidModeGetAllModeLines(dpy, vo->x11->screen, &modecount,
1656 &vidmodes);
1657 for (i = 0; i < modecount; i++)
1658 if ((vidmodes[i]->hdisplay == opts->vo_screenwidth)
1659 && (vidmodes[i]->vdisplay == opts->vo_screenheight))
1661 mp_msg(MSGT_VO, MSGL_INFO,
1662 "Returning to original mode %dx%d\n",
1663 opts->vo_screenwidth, opts->vo_screenheight);
1664 break;
1667 XF86VidModeSwitchToMode(dpy, vo->x11->screen, vidmodes[i]);
1668 XF86VidModeSwitchToMode(dpy, vo->x11->screen, vidmodes[i]);
1669 free(vidmodes);
1670 vidmodes = NULL;
1674 double vo_vm_get_fps(struct vo *vo)
1676 struct vo_x11_state *x11 = vo->x11;
1677 int clock;
1678 XF86VidModeModeLine modeline;
1679 if (!XF86VidModeGetModeLine(x11->display, x11->screen, &clock, &modeline))
1680 return 0;
1681 if (modeline.privsize)
1682 XFree(modeline.private);
1683 return 1e3 * clock / modeline.htotal / modeline.vtotal;
1685 #endif
1687 #endif /* X11_FULLSCREEN */
1691 * Scan the available visuals on this Display/Screen. Try to find
1692 * the 'best' available TrueColor visual that has a decent color
1693 * depth (at least 15bit). If there are multiple visuals with depth
1694 * >= 15bit, we prefer visuals with a smaller color depth.
1696 int vo_find_depth_from_visuals(Display * dpy, int screen,
1697 Visual ** visual_return)
1699 XVisualInfo visual_tmpl;
1700 XVisualInfo *visuals;
1701 int nvisuals, i;
1702 int bestvisual = -1;
1703 int bestvisual_depth = -1;
1705 visual_tmpl.screen = screen;
1706 visual_tmpl.class = TrueColor;
1707 visuals = XGetVisualInfo(dpy,
1708 VisualScreenMask | VisualClassMask,
1709 &visual_tmpl, &nvisuals);
1710 if (visuals != NULL)
1712 for (i = 0; i < nvisuals; i++)
1714 mp_msg(MSGT_VO, MSGL_V,
1715 "vo: X11 truecolor visual %#lx, depth %d, R:%lX G:%lX B:%lX\n",
1716 visuals[i].visualid, visuals[i].depth,
1717 visuals[i].red_mask, visuals[i].green_mask,
1718 visuals[i].blue_mask);
1720 * Save the visual index and its depth, if this is the first
1721 * truecolor visul, or a visual that is 'preferred' over the
1722 * previous 'best' visual.
1724 if (bestvisual_depth == -1
1725 || (visuals[i].depth >= 15
1726 && (visuals[i].depth < bestvisual_depth
1727 || bestvisual_depth < 15)))
1729 bestvisual = i;
1730 bestvisual_depth = visuals[i].depth;
1734 if (bestvisual != -1 && visual_return != NULL)
1735 *visual_return = visuals[bestvisual].visual;
1737 XFree(visuals);
1739 return bestvisual_depth;
1743 static Colormap cmap = None;
1744 static XColor cols[256];
1745 static int cm_size, red_mask, green_mask, blue_mask;
1748 Colormap vo_x11_create_colormap(struct vo *vo, XVisualInfo *vinfo)
1750 struct vo_x11_state *x11 = vo->x11;
1751 unsigned k, r, g, b, ru, gu, bu, m, rv, gv, bv, rvu, gvu, bvu;
1753 if (vinfo->class != DirectColor)
1754 return XCreateColormap(x11->display, x11->rootwin, vinfo->visual,
1755 AllocNone);
1757 /* can this function get called twice or more? */
1758 if (cmap)
1759 return cmap;
1760 cm_size = vinfo->colormap_size;
1761 red_mask = vinfo->red_mask;
1762 green_mask = vinfo->green_mask;
1763 blue_mask = vinfo->blue_mask;
1764 ru = (red_mask & (red_mask - 1)) ^ red_mask;
1765 gu = (green_mask & (green_mask - 1)) ^ green_mask;
1766 bu = (blue_mask & (blue_mask - 1)) ^ blue_mask;
1767 rvu = 65536ull * ru / (red_mask + ru);
1768 gvu = 65536ull * gu / (green_mask + gu);
1769 bvu = 65536ull * bu / (blue_mask + bu);
1770 r = g = b = 0;
1771 rv = gv = bv = 0;
1772 m = DoRed | DoGreen | DoBlue;
1773 for (k = 0; k < cm_size; k++)
1775 int t;
1777 cols[k].pixel = r | g | b;
1778 cols[k].red = rv;
1779 cols[k].green = gv;
1780 cols[k].blue = bv;
1781 cols[k].flags = m;
1782 t = (r + ru) & red_mask;
1783 if (t < r)
1784 m &= ~DoRed;
1785 r = t;
1786 t = (g + gu) & green_mask;
1787 if (t < g)
1788 m &= ~DoGreen;
1789 g = t;
1790 t = (b + bu) & blue_mask;
1791 if (t < b)
1792 m &= ~DoBlue;
1793 b = t;
1794 rv += rvu;
1795 gv += gvu;
1796 bv += bvu;
1798 cmap = XCreateColormap(x11->display, x11->rootwin, vinfo->visual, AllocAll);
1799 XStoreColors(x11->display, cmap, cols, cm_size);
1800 return cmap;
1804 * Via colormaps/gamma ramps we can do gamma, brightness, contrast,
1805 * hue and red/green/blue intensity, but we cannot do saturation.
1806 * Currently only gamma, brightness and contrast are implemented.
1807 * Is there sufficient interest for hue and/or red/green/blue intensity?
1809 /* these values have range [-100,100] and are initially 0 */
1810 static int vo_gamma = 0;
1811 static int vo_brightness = 0;
1812 static int vo_contrast = 0;
1814 static int transform_color(float val,
1815 float brightness, float contrast, float gamma) {
1816 float s = pow(val, gamma);
1817 s = (s - 0.5) * contrast + 0.5;
1818 s += brightness;
1819 if (s < 0)
1820 s = 0;
1821 if (s > 1)
1822 s = 1;
1823 return (unsigned short) (s * 65535);
1826 uint32_t vo_x11_set_equalizer(struct vo *vo, const char *name, int value)
1828 float gamma, brightness, contrast;
1829 float rf, gf, bf;
1830 int k;
1833 * IMPLEMENTME: consider using XF86VidModeSetGammaRamp in the case
1834 * of TrueColor-ed window but be careful:
1835 * Unlike the colormaps, which are private for the X client
1836 * who created them and thus automatically destroyed on client
1837 * disconnect, this gamma ramp is a system-wide (X-server-wide)
1838 * setting and _must_ be restored before the process exits.
1839 * Unforunately when the process crashes (or gets killed
1840 * for some reason) it is impossible to restore the setting,
1841 * and such behaviour could be rather annoying for the users.
1843 if (cmap == None)
1844 return VO_NOTAVAIL;
1846 if (!strcasecmp(name, "brightness"))
1847 vo_brightness = value;
1848 else if (!strcasecmp(name, "contrast"))
1849 vo_contrast = value;
1850 else if (!strcasecmp(name, "gamma"))
1851 vo_gamma = value;
1852 else
1853 return VO_NOTIMPL;
1855 brightness = 0.01 * vo_brightness;
1856 contrast = tan(0.0095 * (vo_contrast + 100) * M_PI / 4);
1857 gamma = pow(2, -0.02 * vo_gamma);
1859 rf = (float) ((red_mask & (red_mask - 1)) ^ red_mask) / red_mask;
1860 gf = (float) ((green_mask & (green_mask - 1)) ^ green_mask) /
1861 green_mask;
1862 bf = (float) ((blue_mask & (blue_mask - 1)) ^ blue_mask) / blue_mask;
1864 /* now recalculate the colormap using the newly set value */
1865 for (k = 0; k < cm_size; k++)
1867 cols[k].red = transform_color(rf * k, brightness, contrast, gamma);
1868 cols[k].green = transform_color(gf * k, brightness, contrast, gamma);
1869 cols[k].blue = transform_color(bf * k, brightness, contrast, gamma);
1872 XStoreColors(vo->x11->display, cmap, cols, cm_size);
1873 XFlush(vo->x11->display);
1874 return VO_TRUE;
1877 uint32_t vo_x11_get_equalizer(const char *name, int *value)
1879 if (cmap == None)
1880 return VO_NOTAVAIL;
1881 if (!strcasecmp(name, "brightness"))
1882 *value = vo_brightness;
1883 else if (!strcasecmp(name, "contrast"))
1884 *value = vo_contrast;
1885 else if (!strcasecmp(name, "gamma"))
1886 *value = vo_gamma;
1887 else
1888 return VO_NOTIMPL;
1889 return VO_TRUE;
1892 #ifdef CONFIG_XV
1893 int vo_xv_set_eq(struct vo *vo, uint32_t xv_port, const char *name, int value)
1895 XvAttribute *attributes;
1896 int i, howmany, xv_atom;
1898 mp_dbg(MSGT_VO, MSGL_V, "xv_set_eq called! (%s, %d)\n", name, value);
1900 /* get available attributes */
1901 attributes = XvQueryPortAttributes(vo->x11->display, xv_port, &howmany);
1902 for (i = 0; i < howmany && attributes; i++)
1903 if (attributes[i].flags & XvSettable)
1905 xv_atom = XInternAtom(vo->x11->display, attributes[i].name, True);
1906 /* since we have SET_DEFAULTS first in our list, we can check if it's available
1907 then trigger it if it's ok so that the other values are at default upon query */
1908 if (xv_atom != None)
1910 int hue = 0, port_value, port_min, port_max;
1912 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") &&
1913 (!strcasecmp(name, "brightness")))
1914 port_value = value;
1915 else if (!strcmp(attributes[i].name, "XV_CONTRAST") &&
1916 (!strcasecmp(name, "contrast")))
1917 port_value = value;
1918 else if (!strcmp(attributes[i].name, "XV_SATURATION") &&
1919 (!strcasecmp(name, "saturation")))
1920 port_value = value;
1921 else if (!strcmp(attributes[i].name, "XV_HUE") &&
1922 (!strcasecmp(name, "hue")))
1924 port_value = value;
1925 hue = 1;
1926 } else
1927 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
1928 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") &&
1929 (!strcasecmp(name, "red_intensity")))
1930 port_value = value;
1931 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY")
1932 && (!strcasecmp(name, "green_intensity")))
1933 port_value = value;
1934 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY")
1935 && (!strcasecmp(name, "blue_intensity")))
1936 port_value = value;
1937 else if ((!strcmp(attributes[i].name, "XV_ITURBT_709") //NVIDIA
1938 || !strcmp(attributes[i].name, "XV_COLORSPACE"))//ATI
1939 && (!strcasecmp(name, "bt_709")))
1940 port_value = value;
1941 else
1942 continue;
1944 port_min = attributes[i].min_value;
1945 port_max = attributes[i].max_value;
1947 /* nvidia hue workaround */
1948 if (hue && port_min == 0 && port_max == 360)
1950 port_value =
1951 (port_value >=
1952 0) ? (port_value - 100) : (port_value + 100);
1954 // -100 -> min
1955 // 0 -> (max+min)/2
1956 // +100 -> max
1957 port_value =
1958 (port_value + 100) * (port_max - port_min) / 200 +
1959 port_min;
1960 XvSetPortAttribute(vo->x11->display, xv_port, xv_atom, port_value);
1961 return VO_TRUE;
1964 return VO_FALSE;
1967 int vo_xv_get_eq(struct vo *vo, uint32_t xv_port, const char *name, int *value)
1970 XvAttribute *attributes;
1971 int i, howmany, xv_atom;
1973 /* get available attributes */
1974 attributes = XvQueryPortAttributes(vo->x11->display, xv_port, &howmany);
1975 for (i = 0; i < howmany && attributes; i++)
1976 if (attributes[i].flags & XvGettable)
1978 xv_atom = XInternAtom(vo->x11->display, attributes[i].name, True);
1979 /* since we have SET_DEFAULTS first in our list, we can check if it's available
1980 then trigger it if it's ok so that the other values are at default upon query */
1981 if (xv_atom != None)
1983 int val, port_value = 0, port_min, port_max;
1985 XvGetPortAttribute(vo->x11->display, xv_port, xv_atom,
1986 &port_value);
1988 port_min = attributes[i].min_value;
1989 port_max = attributes[i].max_value;
1990 val =
1991 (port_value - port_min) * 200 / (port_max - port_min) -
1992 100;
1994 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") &&
1995 (!strcasecmp(name, "brightness")))
1996 *value = val;
1997 else if (!strcmp(attributes[i].name, "XV_CONTRAST") &&
1998 (!strcasecmp(name, "contrast")))
1999 *value = val;
2000 else if (!strcmp(attributes[i].name, "XV_SATURATION") &&
2001 (!strcasecmp(name, "saturation")))
2002 *value = val;
2003 else if (!strcmp(attributes[i].name, "XV_HUE") &&
2004 (!strcasecmp(name, "hue")))
2006 /* nasty nvidia detect */
2007 if (port_min == 0 && port_max == 360)
2008 *value = (val >= 0) ? (val - 100) : (val + 100);
2009 else
2010 *value = val;
2011 } else
2012 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */
2013 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") &&
2014 (!strcasecmp(name, "red_intensity")))
2015 *value = val;
2016 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY")
2017 && (!strcasecmp(name, "green_intensity")))
2018 *value = val;
2019 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY")
2020 && (!strcasecmp(name, "blue_intensity")))
2021 *value = val;
2022 else if ((!strcmp(attributes[i].name, "XV_ITURBT_709") //NVIDIA
2023 || !strcmp(attributes[i].name, "XV_COLORSPACE"))//ATI
2024 && (!strcasecmp(name, "bt_709")))
2025 *value = val;
2026 else
2027 continue;
2029 mp_dbg(MSGT_VO, MSGL_V, "xv_get_eq called! (%s, %d)\n",
2030 name, *value);
2031 return VO_TRUE;
2034 return VO_FALSE;
2038 * \brief Interns the requested atom if it is available.
2040 * \param atom_name String containing the name of the requested atom.
2042 * \return Returns the atom if available, else None is returned.
2045 static Atom xv_intern_atom_if_exists(struct vo_x11_state *x11,
2046 char const *atom_name)
2048 XvAttribute * attributes;
2049 int attrib_count,i;
2050 Atom xv_atom = None;
2052 attributes = XvQueryPortAttributes(x11->display, x11->xv_port, &attrib_count );
2053 if( attributes!=NULL )
2055 for ( i = 0; i < attrib_count; ++i )
2057 if ( strcmp(attributes[i].name, atom_name ) == 0 )
2059 xv_atom = XInternAtom(x11->display, atom_name, False );
2060 break; // found what we want, break out
2063 XFree( attributes );
2066 return xv_atom;
2070 * \brief Try to enable vsync for xv.
2071 * \return Returns -1 if not available, 0 on failure and 1 on success.
2073 int vo_xv_enable_vsync(struct vo *vo)
2075 struct vo_x11_state *x11 = vo->x11;
2076 Atom xv_atom = xv_intern_atom_if_exists(x11, "XV_SYNC_TO_VBLANK");
2077 if (xv_atom == None)
2078 return -1;
2079 return XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 1) == Success;
2083 * \brief Get maximum supported source image dimensions.
2085 * This function does not set the variables pointed to by
2086 * width and height if the information could not be retrieved,
2087 * so the caller is reponsible for properly initializing them.
2089 * \param width [out] The maximum width gets stored here.
2090 * \param height [out] The maximum height gets stored here.
2093 void vo_xv_get_max_img_dim(struct vo *vo, uint32_t * width, uint32_t * height)
2095 struct vo_x11_state *x11 = vo->x11;
2096 XvEncodingInfo * encodings;
2097 //unsigned long num_encodings, idx; to int or too long?!
2098 unsigned int num_encodings, idx;
2100 XvQueryEncodings(x11->display, x11->xv_port, &num_encodings, &encodings);
2102 if ( encodings )
2104 for ( idx = 0; idx < num_encodings; ++idx )
2106 if ( strcmp( encodings[idx].name, "XV_IMAGE" ) == 0 )
2108 *width = encodings[idx].width;
2109 *height = encodings[idx].height;
2110 break;
2115 mp_msg( MSGT_VO, MSGL_V,
2116 "[xv common] Maximum source image dimensions: %ux%u\n",
2117 *width, *height );
2119 XvFreeEncodingInfo( encodings );
2123 * \brief Print information about the colorkey method and source.
2125 * \param ck_handling Integer value containing the information about
2126 * colorkey handling (see x11_common.h).
2128 * Outputs the content of |ck_handling| as a readable message.
2131 static void vo_xv_print_ck_info(struct vo_x11_state *x11)
2133 mp_msg( MSGT_VO, MSGL_V, "[xv common] " );
2135 switch ( x11->xv_ck_info.method )
2137 case CK_METHOD_NONE:
2138 mp_msg( MSGT_VO, MSGL_V, "Drawing no colorkey.\n" ); return;
2139 case CK_METHOD_AUTOPAINT:
2140 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn by Xv." ); break;
2141 case CK_METHOD_MANUALFILL:
2142 mp_msg( MSGT_VO, MSGL_V, "Drawing colorkey manually." ); break;
2143 case CK_METHOD_BACKGROUND:
2144 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn as window background." ); break;
2147 mp_msg( MSGT_VO, MSGL_V, "\n[xv common] " );
2149 switch ( x11->xv_ck_info.source )
2151 case CK_SRC_CUR:
2152 mp_msg( MSGT_VO, MSGL_V, "Using colorkey from Xv (0x%06lx).\n",
2153 x11->xv_colorkey );
2154 break;
2155 case CK_SRC_USE:
2156 if ( x11->xv_ck_info.method == CK_METHOD_AUTOPAINT )
2158 mp_msg( MSGT_VO, MSGL_V,
2159 "Ignoring colorkey from MPlayer (0x%06lx).\n",
2160 x11->xv_colorkey );
2162 else
2164 mp_msg( MSGT_VO, MSGL_V,
2165 "Using colorkey from MPlayer (0x%06lx)."
2166 " Use -colorkey to change.\n",
2167 x11->xv_colorkey );
2169 break;
2170 case CK_SRC_SET:
2171 mp_msg( MSGT_VO, MSGL_V,
2172 "Setting and using colorkey from MPlayer (0x%06lx)."
2173 " Use -colorkey to change.\n",
2174 x11->xv_colorkey );
2175 break;
2179 * \brief Init colorkey depending on the settings in xv_ck_info.
2181 * \return Returns 0 on failure and 1 on success.
2183 * Sets the colorkey variable according to the CK_SRC_* and CK_METHOD_*
2184 * flags in xv_ck_info.
2186 * Possiblilities:
2187 * * Methods
2188 * - manual colorkey drawing ( CK_METHOD_MANUALFILL )
2189 * - set colorkey as window background ( CK_METHOD_BACKGROUND )
2190 * - let Xv paint the colorkey ( CK_METHOD_AUTOPAINT )
2191 * * Sources
2192 * - use currently set colorkey ( CK_SRC_CUR )
2193 * - use colorkey in vo_colorkey ( CK_SRC_USE )
2194 * - use and set colorkey in vo_colorkey ( CK_SRC_SET )
2196 * NOTE: If vo_colorkey has bits set after the first 3 low order bytes
2197 * we don't draw anything as this means it was forced to off.
2199 int vo_xv_init_colorkey(struct vo *vo)
2201 struct vo_x11_state *x11 = vo->x11;
2202 Atom xv_atom;
2203 int rez;
2205 /* check if colorkeying is needed */
2206 xv_atom = xv_intern_atom_if_exists(vo->x11, "XV_COLORKEY");
2208 /* if we have to deal with colorkeying ... */
2209 if( xv_atom != None && !(vo_colorkey & 0xFF000000) )
2211 /* check if we should use the colorkey specified in vo_colorkey */
2212 if ( x11->xv_ck_info.source != CK_SRC_CUR )
2214 x11->xv_colorkey = vo_colorkey;
2216 /* check if we have to set the colorkey too */
2217 if ( x11->xv_ck_info.source == CK_SRC_SET )
2219 xv_atom = XInternAtom(x11->display, "XV_COLORKEY",False);
2221 rez = XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, vo_colorkey);
2222 if ( rez != Success )
2224 mp_msg( MSGT_VO, MSGL_FATAL,
2225 "[xv common] Couldn't set colorkey!\n" );
2226 return 0; // error setting colorkey
2230 else
2232 int colorkey_ret;
2234 rez=XvGetPortAttribute(x11->display,x11->xv_port, xv_atom, &colorkey_ret);
2235 if ( rez == Success )
2237 x11->xv_colorkey = colorkey_ret;
2239 else
2241 mp_msg( MSGT_VO, MSGL_FATAL,
2242 "[xv common] Couldn't get colorkey!"
2243 "Maybe the selected Xv port has no overlay.\n" );
2244 return 0; // error getting colorkey
2248 xv_atom = xv_intern_atom_if_exists(vo->x11, "XV_AUTOPAINT_COLORKEY");
2250 /* should we draw the colorkey ourselves or activate autopainting? */
2251 if ( x11->xv_ck_info.method == CK_METHOD_AUTOPAINT )
2253 rez = !Success; // reset rez to something different than Success
2255 if ( xv_atom != None ) // autopaint is supported
2257 rez = XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 1);
2260 if ( rez != Success )
2262 // fallback to manual colorkey drawing
2263 x11->xv_ck_info.method = CK_METHOD_MANUALFILL;
2266 else // disable colorkey autopainting if supported
2268 if ( xv_atom != None ) // we have autopaint attribute
2270 XvSetPortAttribute(x11->display, x11->xv_port, xv_atom, 0);
2274 else // do no colorkey drawing at all
2276 x11->xv_ck_info.method = CK_METHOD_NONE;
2277 } /* end: should we draw colorkey */
2279 /* output information about the current colorkey settings */
2280 vo_xv_print_ck_info(x11);
2282 return 1; // success
2286 * \brief Draw the colorkey on the video window.
2288 * Draws the colorkey depending on the set method ( colorkey_handling ).
2290 * Also draws the black bars ( when the video doesn't fit the display in
2291 * fullscreen ) separately, so they don't overlap with the video area.
2292 * It doesn't call XFlush.
2295 void vo_xv_draw_colorkey(struct vo *vo, int32_t x, int32_t y,
2296 int32_t w, int32_t h)
2298 struct vo_x11_state *x11 = vo->x11;
2299 if( x11->xv_ck_info.method == CK_METHOD_MANUALFILL ||
2300 x11->xv_ck_info.method == CK_METHOD_BACKGROUND )//less tearing than XClearWindow()
2302 XSetForeground(x11->display, x11->vo_gc, x11->xv_colorkey );
2303 XFillRectangle(x11->display, x11->window, x11->vo_gc,
2304 x, y,
2305 w, h );
2309 /** \brief Tests if a valid argument for the ck suboption was given. */
2310 int xv_test_ck( void * arg )
2312 strarg_t * strarg = (strarg_t *)arg;
2314 if ( strargcmp( strarg, "use" ) == 0 ||
2315 strargcmp( strarg, "set" ) == 0 ||
2316 strargcmp( strarg, "cur" ) == 0 )
2318 return 1;
2321 return 0;
2323 /** \brief Tests if a valid arguments for the ck-method suboption was given. */
2324 int xv_test_ckm( void * arg )
2326 strarg_t * strarg = (strarg_t *)arg;
2328 if ( strargcmp( strarg, "bg" ) == 0 ||
2329 strargcmp( strarg, "man" ) == 0 ||
2330 strargcmp( strarg, "auto" ) == 0 )
2332 return 1;
2335 return 0;
2339 * \brief Modify the colorkey_handling var according to str
2341 * Checks if a valid pointer ( not NULL ) to the string
2342 * was given. And in that case modifies the colorkey_handling
2343 * var to reflect the requested behaviour.
2344 * If nothing happens the content of colorkey_handling stays
2345 * the same.
2347 * \param str Pointer to the string or NULL
2350 void xv_setup_colorkeyhandling(struct vo *vo, const char *ck_method_str,
2351 const char *ck_str)
2353 struct vo_x11_state *x11 = vo->x11;
2354 /* check if a valid pointer to the string was passed */
2355 if ( ck_str )
2357 if ( strncmp( ck_str, "use", 3 ) == 0 )
2359 x11->xv_ck_info.source = CK_SRC_USE;
2361 else if ( strncmp( ck_str, "set", 3 ) == 0 )
2363 x11->xv_ck_info.source = CK_SRC_SET;
2366 /* check if a valid pointer to the string was passed */
2367 if ( ck_method_str )
2369 if ( strncmp( ck_method_str, "bg", 2 ) == 0 )
2371 x11->xv_ck_info.method = CK_METHOD_BACKGROUND;
2373 else if ( strncmp( ck_method_str, "man", 3 ) == 0 )
2375 x11->xv_ck_info.method = CK_METHOD_MANUALFILL;
2377 else if ( strncmp( ck_method_str, "auto", 4 ) == 0 )
2379 x11->xv_ck_info.method = CK_METHOD_AUTOPAINT;
2384 #endif
2386 struct vo_x11_state *vo_x11_init_state(void)
2388 struct vo_x11_state *s = talloc_ptrtype(NULL, s);
2389 *s = (struct vo_x11_state){
2390 .xv_ck_info = { CK_METHOD_MANUALFILL, CK_SRC_CUR },
2391 .olddecor = MWM_DECOR_ALL,
2392 .oldfuncs = MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE |
2393 MWM_FUNC_MAXIMIZE | MWM_FUNC_RESIZE,
2394 .old_gravity = NorthWestGravity,
2396 return s;