Mercurial > mplayer.hg
annotate libvo/x11_common.c @ 21429:d4cb537b3414
Replace deprecated vo_plugin_args by vf_settings.
author | diego |
---|---|
date | Sat, 02 Dec 2006 17:29:56 +0000 |
parents | 4919b3ce8d5e |
children | c6631583d68d |
rev | line source |
---|---|
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1 |
32 | 2 #include <stdio.h> |
3 #include <stdlib.h> | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
4 #include <math.h> |
6401 | 5 #include <inttypes.h> |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
6 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
7 #include "config.h" |
5998 | 8 #include "mp_msg.h" |
6401 | 9 #include "x11_common.h" |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
10 |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
11 #ifdef X11_FULLSCREEN |
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
12 |
440
d19a3da6ac13
Pontscho's mixer, select, and hell-a-lot-of-stuff patch ;)
gabucino
parents:
416
diff
changeset
|
13 #include <string.h> |
32 | 14 #include <unistd.h> |
15 #include <sys/mman.h> | |
9695 | 16 #include <signal.h> |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
17 #include <assert.h> |
32 | 18 |
19 #include "video_out.h" | |
10889 | 20 #include "aspect.h" |
12032
8cc4d4344c0f
Don't mess with the window position in xinerama when -geometry changes it.
diego
parents:
12031
diff
changeset
|
21 #include "geometry.h" |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
22 #include "help_mp.h" |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
23 #include "osdep/timer.h" |
32 | 24 |
324 | 25 #include <X11/Xmd.h> |
32 | 26 #include <X11/Xlib.h> |
27 #include <X11/Xutil.h> | |
28 #include <X11/Xatom.h> | |
29 | |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
30 #ifdef HAVE_XDPMS |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
31 #include <X11/extensions/dpms.h> |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
32 #endif |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
33 |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
34 #ifdef HAVE_XINERAMA |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
35 #include <X11/extensions/Xinerama.h> |
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
36 #endif |
1732 | 37 |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
38 #ifdef HAVE_XF86VM |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
39 #include <X11/extensions/xf86vmode.h> |
14636
408bcfa575bf
Separate XF86 video mode extension check from XF86 keysym check as
diego
parents:
14244
diff
changeset
|
40 #endif |
408bcfa575bf
Separate XF86 video mode extension check from XF86 keysym check as
diego
parents:
14244
diff
changeset
|
41 |
408bcfa575bf
Separate XF86 video mode extension check from XF86 keysym check as
diego
parents:
14244
diff
changeset
|
42 #ifdef HAVE_XF86XK |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
43 #include <X11/XF86keysym.h> |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
44 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
45 |
10359 | 46 #ifdef HAVE_XV |
47 #include <X11/extensions/Xv.h> | |
48 #include <X11/extensions/Xvlib.h> | |
14742 | 49 |
50 #include "subopt-helper.h" | |
10359 | 51 #endif |
52 | |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
53 #include "input/input.h" |
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
54 #include "input/mouse.h" |
4658 | 55 |
4798 | 56 #ifdef HAVE_NEW_GUI |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
57 #include "Gui/interface.h" |
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
58 #include "mplayer.h" |
4798 | 59 #endif |
60 | |
8660
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
61 #define WIN_LAYER_ONBOTTOM 2 |
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
62 #define WIN_LAYER_NORMAL 4 |
39476cbd1673
I have looked at the fullscreen code and realized that there are
arpi
parents:
8653
diff
changeset
|
63 #define WIN_LAYER_ONTOP 6 |
8669
fd398a0b4b3b
This time the patch is fixing much more that breaking :-)
arpi
parents:
8663
diff
changeset
|
64 #define WIN_LAYER_ABOVE_DOCK 10 |
12582 | 65 |
19850
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
66 extern int enable_mouse_movements; |
12582 | 67 int fs_layer = WIN_LAYER_ABOVE_DOCK; |
68 static int orig_layer = 0; | |
12111
8e31aacc3e81
- win_gravity memorizing and restoring while switching fullscreen mode (by Adam Tla/lka)
rathann
parents:
12096
diff
changeset
|
69 static int old_gravity = NorthWestGravity; |
8866 | 70 |
12582 | 71 int stop_xscreensaver = 0; |
6202 | 72 |
12582 | 73 static int dpms_disabled = 0; |
74 static int timeout_save = 0; | |
75 static int kdescreensaver_was_running = 0; | |
324 | 76 |
12582 | 77 char *mDisplayName = NULL; |
78 Display *mDisplay = NULL; | |
79 Window mRootWin; | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
80 int mScreen; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
81 int mLocalDisplay; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
82 |
3830 | 83 /* output window id */ |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
84 int vo_mouse_autohide = 0; |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
85 int vo_wm_type = 0; |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
86 int vo_fs_type = 0; // needs to be accessible for GUI X11 code |
12125
f4fc74a88e65
full screen flipping synchronization corrections (by Adam Tla/lka)
rathann
parents:
12123
diff
changeset
|
87 static int vo_fs_flip = 0; |
12582 | 88 char **vo_fstype_list; |
384 | 89 |
8835
664b0612f950
Fixed metacity + xv behavior (something broke it lately).
filon
parents:
8783
diff
changeset
|
90 /* if equal to 1 means that WM is a metacity (broken as hell) */ |
664b0612f950
Fixed metacity + xv behavior (something broke it lately).
filon
parents:
8783
diff
changeset
|
91 int metacity_hack = 0; |
664b0612f950
Fixed metacity + xv behavior (something broke it lately).
filon
parents:
8783
diff
changeset
|
92 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
93 static Atom XA_NET_SUPPORTED; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
94 static Atom XA_NET_WM_STATE; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
95 static Atom XA_NET_WM_STATE_FULLSCREEN; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
96 static Atom XA_NET_WM_STATE_ABOVE; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
97 static Atom XA_NET_WM_STATE_STAYS_ON_TOP; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
98 static Atom XA_NET_WM_STATE_BELOW; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
99 static Atom XA_NET_WM_PID; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
100 static Atom XA_WIN_PROTOCOLS; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
101 static Atom XA_WIN_LAYER; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
102 static Atom XA_WIN_HINTS; |
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
103 static Atom XA_BLACKBOX_PID; |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
104 static Atom XAWM_PROTOCOLS; |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
105 static Atom XAWM_DELETE_WINDOW; |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
106 |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
107 #define XA_INIT(x) XA##x = XInternAtom(mDisplay, #x, False) |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
108 |
7435 | 109 static int vo_old_x = 0; |
110 static int vo_old_y = 0; | |
111 static int vo_old_width = 0; | |
112 static int vo_old_height = 0; | |
113 | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
114 #ifdef HAVE_XF86VM |
12582 | 115 XF86VidModeModeInfo **vidmodes = NULL; |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
116 XF86VidModeModeLine modeline; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
117 #endif |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
118 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
119 static int vo_x11_get_fs_type(int supported); |
10212
d358fa9a1068
warning fixes by Dominik Mierzejewski <dominik@rangers.eu.org>
alex
parents:
10193
diff
changeset
|
120 |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
121 |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
122 /* |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
123 * Sends the EWMH fullscreen state event. |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
124 * |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
125 * action: could be on of _NET_WM_STATE_REMOVE -- remove state |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
126 * _NET_WM_STATE_ADD -- add state |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
127 * _NET_WM_STATE_TOGGLE -- toggle |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
128 */ |
12582 | 129 void vo_x11_ewmh_fullscreen(int action) |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
130 { |
12582 | 131 assert(action == _NET_WM_STATE_REMOVE || |
132 action == _NET_WM_STATE_ADD || action == _NET_WM_STATE_TOGGLE); | |
133 | |
134 if (vo_fs_type & vo_wm_FULLSCREEN) | |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
135 { |
12582 | 136 XEvent xev; |
137 | |
138 /* init X event structure for _NET_WM_FULLSCREEN client msg */ | |
139 xev.xclient.type = ClientMessage; | |
140 xev.xclient.serial = 0; | |
141 xev.xclient.send_event = True; | |
142 xev.xclient.message_type = XInternAtom(mDisplay, | |
143 "_NET_WM_STATE", False); | |
144 xev.xclient.window = vo_window; | |
145 xev.xclient.format = 32; | |
146 xev.xclient.data.l[0] = action; | |
147 xev.xclient.data.l[1] = XInternAtom(mDisplay, | |
148 "_NET_WM_STATE_FULLSCREEN", | |
149 False); | |
150 xev.xclient.data.l[2] = 0; | |
151 xev.xclient.data.l[3] = 0; | |
152 xev.xclient.data.l[4] = 0; | |
153 | |
154 /* finally send that damn thing */ | |
155 if (!XSendEvent(mDisplay, DefaultRootWindow(mDisplay), False, | |
156 SubstructureRedirectMask | SubstructureNotifyMask, | |
157 &xev)) | |
158 { | |
159 mp_msg(MSGT_VO, MSGL_ERR, MSGTR_EwmhFullscreenStateFailed); | |
160 } | |
12520
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
161 } |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
162 } |
94e66acdb706
Metacity fullscreen issues, patch by Alexander Strasser <eclipse7@gmx.net>,
diego
parents:
12371
diff
changeset
|
163 |
12582 | 164 void vo_hidecursor(Display * disp, Window win) |
384 | 165 { |
12582 | 166 Cursor no_ptr; |
167 Pixmap bm_no; | |
168 XColor black, dummy; | |
169 Colormap colormap; | |
13828
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
170 static char bm_no_data[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; |
3954 | 171 |
12582 | 172 if (WinID == 0) |
173 return; // do not hide, if we're playing at rootwin | |
174 | |
175 colormap = DefaultColormap(disp, DefaultScreen(disp)); | |
14743
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
176 if ( !XAllocNamedColor(disp, colormap, "black", &black, &dummy) ) |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
177 { |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
178 return; // color alloc failed, give up |
465c8617cbe5
We should not crash, only because we couldn't hide the cursor.
al
parents:
14742
diff
changeset
|
179 } |
12582 | 180 bm_no = XCreateBitmapFromData(disp, win, bm_no_data, 8, 8); |
181 no_ptr = XCreatePixmapCursor(disp, bm_no, bm_no, &black, &black, 0, 0); | |
182 XDefineCursor(disp, win, no_ptr); | |
183 XFreeCursor(disp, no_ptr); | |
184 if (bm_no != None) | |
185 XFreePixmap(disp, bm_no); | |
13953 | 186 XFreeColors(disp,colormap,&black.pixel,1,0); |
384 | 187 } |
188 | |
12582 | 189 void vo_showcursor(Display * disp, Window win) |
190 { | |
191 if (WinID == 0) | |
192 return; | |
193 XDefineCursor(disp, win, 0); | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
194 } |
384 | 195 |
12582 | 196 static int x11_errorhandler(Display * display, XErrorEvent * event) |
4742 | 197 { |
198 #define MSGLEN 60 | |
199 char msg[MSGLEN]; | |
12582 | 200 |
201 XGetErrorText(display, event->error_code, (char *) &msg, MSGLEN); | |
202 | |
203 mp_msg(MSGT_VO, MSGL_ERR, "X11 error: %s\n", msg); | |
204 | |
205 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 206 "Type: %x, display: %p, resourceid: %lx, serial: %lx\n", |
12582 | 207 event->type, event->display, event->resourceid, event->serial); |
208 mp_msg(MSGT_VO, MSGL_V, | |
209 "Error code: %x, request code: %x, minor code: %x\n", | |
210 event->error_code, event->request_code, event->minor_code); | |
211 | |
6095 | 212 abort(); |
213 //exit_player("X11 error"); | |
4742 | 214 #undef MSGLEN |
215 } | |
1732 | 216 |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
217 void fstype_help(void) |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
218 { |
12582 | 219 mp_msg(MSGT_VO, MSGL_INFO, MSGTR_AvailableFsType); |
18237
4231482179b6
Get ride of the several if(identify) messy lines and rearangment of some of the output, both patches by Kiriuja mplayer-patches AT en-directo_net, his changes are barely unrelated, nevertheless Im commiting them thogeter just for the sake of my mental healt, I had both patches already applied on my local three
reynaldo
parents:
18160
diff
changeset
|
220 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FULL_SCREEN_TYPES\n"); |
12582 | 221 |
222 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "none", | |
223 "don't set fullscreen window layer"); | |
224 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer", | |
225 "use _WIN_LAYER hint with default layer"); | |
226 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "layer=<0..15>", | |
227 "use _WIN_LAYER hint with a given layer number"); | |
228 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "netwm", | |
229 "force NETWM style"); | |
230 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "above", | |
231 "use _NETWM_STATE_ABOVE hint if available"); | |
232 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "below", | |
233 "use _NETWM_STATE_BELOW hint if available"); | |
234 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "fullscreen", | |
235 "use _NETWM_STATE_FULLSCREEN hint if availale"); | |
236 mp_msg(MSGT_VO, MSGL_INFO, " %-15s %s\n", "stays_on_top", | |
237 "use _NETWM_STATE_STAYS_ON_TOP hint if available"); | |
238 mp_msg(MSGT_VO, MSGL_INFO, | |
239 "You can also negate the settings with simply putting '-' in the beginning"); | |
17727
096cb1dfb591
Make -xy help output consistent, output an empty line before and after.
diego
parents:
17566
diff
changeset
|
240 mp_msg(MSGT_VO, MSGL_INFO, "\n"); |
10695
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
241 } |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
242 |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
243 static void fstype_dump(int fstype) |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
244 { |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
245 if (fstype) |
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
246 { |
12582 | 247 mp_msg(MSGT_VO, MSGL_V, "[x11] Current fstype setting honours"); |
248 if (fstype & vo_wm_LAYER) | |
249 mp_msg(MSGT_VO, MSGL_V, " LAYER"); | |
250 if (fstype & vo_wm_FULLSCREEN) | |
251 mp_msg(MSGT_VO, MSGL_V, " FULLSCREEN"); | |
252 if (fstype & vo_wm_STAYS_ON_TOP) | |
253 mp_msg(MSGT_VO, MSGL_V, " STAYS_ON_TOP"); | |
254 if (fstype & vo_wm_ABOVE) | |
255 mp_msg(MSGT_VO, MSGL_V, " ABOVE"); | |
256 if (fstype & vo_wm_BELOW) | |
257 mp_msg(MSGT_VO, MSGL_V, " BELOW"); | |
258 mp_msg(MSGT_VO, MSGL_V, " X atoms\n"); | |
259 } else | |
260 mp_msg(MSGT_VO, MSGL_V, | |
261 "[x11] Current fstype setting doesn't honour any X atoms\n"); | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
262 } |
12582 | 263 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
264 static int net_wm_support_state_test(Atom atom) |
8653 | 265 { |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
266 #define NET_WM_STATE_TEST(x) { if (atom == XA_NET_WM_STATE_##x) { mp_msg( MSGT_VO,MSGL_V, "[x11] Detected wm supports " #x " state.\n" ); return vo_wm_##x; } } |
12582 | 267 |
268 NET_WM_STATE_TEST(FULLSCREEN); | |
269 NET_WM_STATE_TEST(ABOVE); | |
270 NET_WM_STATE_TEST(STAYS_ON_TOP); | |
271 NET_WM_STATE_TEST(BELOW); | |
272 return 0; | |
8653 | 273 } |
274 | |
12582 | 275 static int x11_get_property(Atom type, Atom ** args, unsigned long *nitems) |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
276 { |
12582 | 277 int format; |
278 unsigned long bytesafter; | |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
279 |
12582 | 280 return (Success == |
281 XGetWindowProperty(mDisplay, mRootWin, type, 0, 16384, False, | |
282 AnyPropertyType, &type, &format, nitems, | |
283 &bytesafter, (unsigned char **) args) | |
284 && *nitems > 0); | |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
285 } |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
286 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
287 static int vo_wm_detect(void) |
6009 | 288 { |
12582 | 289 int i; |
290 int wm = 0; | |
291 unsigned long nitems; | |
292 Atom *args = NULL; | |
293 | |
294 if (WinID >= 0) | |
295 return 0; | |
296 | |
8669
fd398a0b4b3b
This time the patch is fixing much more that breaking :-)
arpi
parents:
8663
diff
changeset
|
297 // -- supports layers |
12582 | 298 if (x11_get_property(XA_WIN_PROTOCOLS, &args, &nitems)) |
299 { | |
300 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports layers.\n"); | |
301 for (i = 0; i < nitems; i++) | |
302 { | |
303 if (args[i] == XA_WIN_LAYER) | |
304 { | |
305 wm |= vo_wm_LAYER; | |
306 metacity_hack |= 1; | |
307 } else | |
308 // metacity is the only manager I know which reports support only for _WIN_LAYER | |
309 // hint in _WIN_PROTOCOLS (what's more support for it is broken) | |
310 metacity_hack |= 2; | |
311 } | |
312 XFree(args); | |
313 if (wm && (metacity_hack == 1)) | |
314 { | |
315 // metacity reports that it supports layers, but it is not really truth :-) | |
316 wm ^= vo_wm_LAYER; | |
317 mp_msg(MSGT_VO, MSGL_V, | |
318 "[x11] Using workaround for Metacity bugs.\n"); | |
319 } | |
320 } | |
6009 | 321 // --- netwm |
12582 | 322 if (x11_get_property(XA_NET_SUPPORTED, &args, &nitems)) |
323 { | |
324 mp_msg(MSGT_VO, MSGL_V, "[x11] Detected wm supports NetWM.\n"); | |
325 for (i = 0; i < nitems; i++) | |
326 wm |= net_wm_support_state_test(args[i]); | |
327 XFree(args); | |
10695
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
328 #if 0 |
12582 | 329 // ugly hack for broken OpenBox _NET_WM_STATE_FULLSCREEN support |
330 // (in their implementation it only changes internal state of window, nothing more!!!) | |
331 if (wm & vo_wm_FULLSCREEN) | |
332 { | |
333 if (x11_get_property(XA_BLACKBOX_PID, &args, &nitems)) | |
334 { | |
335 mp_msg(MSGT_VO, MSGL_V, | |
336 "[x11] Detected wm is a broken OpenBox.\n"); | |
337 wm ^= vo_wm_FULLSCREEN; | |
338 } | |
339 XFree(args); | |
340 } | |
10695
879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
attila
parents:
10587
diff
changeset
|
341 #endif |
12582 | 342 } |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
343 |
12582 | 344 if (wm == 0) |
345 mp_msg(MSGT_VO, MSGL_V, "[x11] Unknown wm type...\n"); | |
346 return wm; | |
347 } | |
6009 | 348 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
349 static void init_atoms(void) |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
350 { |
12582 | 351 XA_INIT(_NET_SUPPORTED); |
352 XA_INIT(_NET_WM_STATE); | |
353 XA_INIT(_NET_WM_STATE_FULLSCREEN); | |
354 XA_INIT(_NET_WM_STATE_ABOVE); | |
355 XA_INIT(_NET_WM_STATE_STAYS_ON_TOP); | |
356 XA_INIT(_NET_WM_STATE_BELOW); | |
357 XA_INIT(_NET_WM_PID); | |
358 XA_INIT(_WIN_PROTOCOLS); | |
359 XA_INIT(_WIN_LAYER); | |
360 XA_INIT(_WIN_HINTS); | |
361 XA_INIT(_BLACKBOX_PID); | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
362 XA_INIT(WM_PROTOCOLS); |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
363 XA_INIT(WM_DELETE_WINDOW); |
8742
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
364 } |
241f40ef5e28
More fullscreen cleanup work. Use nice macros for X atoms.
filon
parents:
8716
diff
changeset
|
365 |
18116 | 366 void update_xinerama_info(void) { |
367 int screen = xinerama_screen; | |
368 xinerama_x = xinerama_y = 0; | |
369 #ifdef HAVE_XINERAMA | |
370 if (screen >= -1 && XineramaIsActive(mDisplay)) | |
371 { | |
372 XineramaScreenInfo *screens; | |
373 int num_screens; | |
374 | |
375 screens = XineramaQueryScreens(mDisplay, &num_screens); | |
376 if (screen >= num_screens) | |
377 screen = num_screens - 1; | |
378 if (screen == -1) { | |
379 int x = vo_dx + vo_dwidth / 2; | |
380 int y = vo_dy + vo_dheight / 2; | |
381 for (screen = num_screens - 1; screen > 0; screen--) { | |
382 int left = screens[screen].x_org; | |
383 int right = left + screens[screen].width; | |
384 int top = screens[screen].y_org; | |
385 int bottom = top + screens[screen].height; | |
386 if (left <= x && x <= right && top <= y && y <= bottom) | |
387 break; | |
388 } | |
389 } | |
390 if (screen < 0) | |
391 screen = 0; | |
392 vo_screenwidth = screens[screen].width; | |
393 vo_screenheight = screens[screen].height; | |
394 xinerama_x = screens[screen].x_org; | |
395 xinerama_y = screens[screen].y_org; | |
396 | |
397 XFree(screens); | |
398 } | |
18160
03bc3385a845
10l, aspect_save_screenres must be always called in update_xinerama_info.
reimar
parents:
18149
diff
changeset
|
399 #endif |
18116 | 400 aspect_save_screenres(vo_screenwidth, vo_screenheight); |
401 } | |
402 | |
12582 | 403 int vo_init(void) |
32 | 404 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
405 // int mScreen; |
12582 | 406 int depth, bpp; |
407 unsigned int mask; | |
408 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
409 // char * DisplayName = ":0.0"; |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
410 // Display * mDisplay; |
12582 | 411 XImage *mXImage = NULL; |
412 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
413 // Window mRootWin; |
12582 | 414 XWindowAttributes attribs; |
415 char *dispName; | |
12972
c8900eba2cc7
now use vo_rootwin var to check for -rootwin switch
nplourde
parents:
12798
diff
changeset
|
416 |
c8900eba2cc7
now use vo_rootwin var to check for -rootwin switch
nplourde
parents:
12798
diff
changeset
|
417 if (vo_rootwin) |
c8900eba2cc7
now use vo_rootwin var to check for -rootwin switch
nplourde
parents:
12798
diff
changeset
|
418 WinID = 0; // use root win |
32 | 419 |
12582 | 420 if (vo_depthonscreen) |
13935 | 421 { |
422 saver_off(mDisplay); | |
12582 | 423 return 1; // already called |
13935 | 424 } |
32 | 425 |
12582 | 426 XSetErrorHandler(x11_errorhandler); |
4812 | 427 |
428 #if 0 | |
12582 | 429 if (!mDisplayName) |
430 if (!(mDisplayName = getenv("DISPLAY"))) | |
431 mDisplayName = strdup(":0.0"); | |
4812 | 432 #else |
12582 | 433 dispName = XDisplayName(mDisplayName); |
4812 | 434 #endif |
435 | |
12582 | 436 mp_msg(MSGT_VO, MSGL_V, "X11 opening display: %s\n", dispName); |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
437 |
12582 | 438 mDisplay = XOpenDisplay(dispName); |
439 if (!mDisplay) | |
440 { | |
441 mp_msg(MSGT_VO, MSGL_ERR, | |
442 "vo: couldn't open the X11 display (%s)!\n", dispName); | |
443 return 0; | |
444 } | |
445 mScreen = DefaultScreen(mDisplay); // Screen ID. | |
446 mRootWin = RootWindow(mDisplay, mScreen); // Root window ID. | |
2149
6358db6ad3d0
Xinerama screen size fix by Lev Babiev <harley@hosers.org>
arpi
parents:
1746
diff
changeset
|
447 |
12582 | 448 init_atoms(); |
449 | |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
450 #ifdef HAVE_XF86VM |
12582 | 451 { |
452 int clock; | |
453 | |
454 XF86VidModeGetModeLine(mDisplay, mScreen, &clock, &modeline); | |
455 if (!vo_screenwidth) | |
456 vo_screenwidth = modeline.hdisplay; | |
457 if (!vo_screenheight) | |
458 vo_screenheight = modeline.vdisplay; | |
459 } | |
4977
7b65a4f0b74e
vm pecs applied from daniel carter <hedonist@win.co.nz>
pontscho
parents:
4974
diff
changeset
|
460 #endif |
12582 | 461 { |
462 if (!vo_screenwidth) | |
463 vo_screenwidth = DisplayWidth(mDisplay, mScreen); | |
464 if (!vo_screenheight) | |
465 vo_screenheight = DisplayHeight(mDisplay, mScreen); | |
466 } | |
467 // get color depth (from root window, or the best visual): | |
468 XGetWindowAttributes(mDisplay, mRootWin, &attribs); | |
469 depth = attribs.depth; | |
1732 | 470 |
12582 | 471 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) |
472 { | |
473 Visual *visual; | |
474 | |
475 depth = vo_find_depth_from_visuals(mDisplay, mScreen, &visual); | |
476 if (depth != -1) | |
477 mXImage = XCreateImage(mDisplay, visual, depth, ZPixmap, | |
478 0, NULL, 1, 1, 8, 1); | |
479 } else | |
480 mXImage = | |
481 XGetImage(mDisplay, mRootWin, 0, 0, 1, 1, AllPlanes, ZPixmap); | |
1732 | 482 |
12582 | 483 vo_depthonscreen = depth; // display depth on screen |
1732 | 484 |
12582 | 485 // get bits/pixel from XImage structure: |
486 if (mXImage == NULL) | |
487 { | |
488 mask = 0; | |
489 } else | |
490 { | |
491 /* | |
492 * for the depth==24 case, the XImage structures might use | |
493 * 24 or 32 bits of data per pixel. The global variable | |
494 * vo_depthonscreen stores the amount of data per pixel in the | |
495 * XImage structure! | |
496 * | |
497 * Maybe we should rename vo_depthonscreen to (or add) vo_bpp? | |
498 */ | |
499 bpp = mXImage->bits_per_pixel; | |
500 if ((vo_depthonscreen + 7) / 8 != (bpp + 7) / 8) | |
501 vo_depthonscreen = bpp; // by A'rpi | |
502 mask = | |
503 mXImage->red_mask | mXImage->green_mask | mXImage->blue_mask; | |
504 mp_msg(MSGT_VO, MSGL_V, | |
505 "vo: X11 color mask: %X (R:%lX G:%lX B:%lX)\n", mask, | |
506 mXImage->red_mask, mXImage->green_mask, mXImage->blue_mask); | |
507 XDestroyImage(mXImage); | |
508 } | |
509 if (((vo_depthonscreen + 7) / 8) == 2) | |
510 { | |
511 if (mask == 0x7FFF) | |
512 vo_depthonscreen = 15; | |
513 else if (mask == 0xFFFF) | |
514 vo_depthonscreen = 16; | |
515 } | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
741
diff
changeset
|
516 // XCloseDisplay( mDisplay ); |
1447
e82fbd67ae60
better local display connection patch by Adam Tla/lka atlka@pg.gda.pl
arpi
parents:
1415
diff
changeset
|
517 /* slightly improved local display detection AST */ |
12582 | 518 if (strncmp(dispName, "unix:", 5) == 0) |
519 dispName += 4; | |
520 else if (strncmp(dispName, "localhost:", 10) == 0) | |
521 dispName += 9; | |
522 if (*dispName == ':' && atoi(dispName + 1) < 10) | |
523 mLocalDisplay = 1; | |
524 else | |
525 mLocalDisplay = 0; | |
16301 | 526 mp_msg(MSGT_VO, MSGL_V, |
12582 | 527 "vo: X11 running at %dx%d with depth %d and %d bpp (\"%s\" => %s display)\n", |
528 vo_screenwidth, vo_screenheight, depth, vo_depthonscreen, | |
529 dispName, mLocalDisplay ? "local" : "remote"); | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
530 |
12582 | 531 vo_wm_type = vo_wm_detect(); |
532 | |
533 vo_fs_type = vo_x11_get_fs_type(vo_wm_type); | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
534 |
12582 | 535 fstype_dump(vo_fs_type); |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
536 |
12582 | 537 saver_off(mDisplay); |
538 return 1; | |
32 | 539 } |
540 | |
12582 | 541 void vo_uninit(void) |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
6009
diff
changeset
|
542 { |
12582 | 543 if (!mDisplay) |
544 { | |
545 mp_msg(MSGT_VO, MSGL_V, | |
546 "vo: x11 uninit called but X11 not inited..\n"); | |
547 return; | |
548 } | |
6077 | 549 // if( !vo_depthonscreen ) return; |
12582 | 550 mp_msg(MSGT_VO, MSGL_V, "vo: uninit ...\n"); |
551 XSetErrorHandler(NULL); | |
552 XCloseDisplay(mDisplay); | |
553 vo_depthonscreen = 0; | |
554 mDisplay = NULL; | |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
6009
diff
changeset
|
555 } |
4436 | 556 |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12972
diff
changeset
|
557 #include "osdep/keycodes.h" |
32 | 558 #include "wskeys.h" |
559 | |
560 extern void mplayer_put_key(int code); | |
561 | |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
562 #ifdef XF86XK_AudioPause |
18950 | 563 static void vo_x11_putkey_ext(int keysym) |
12582 | 564 { |
565 switch (keysym) | |
566 { | |
567 case XF86XK_AudioPause: | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
568 mplayer_put_key(KEY_PAUSE); |
12582 | 569 break; |
570 case XF86XK_AudioStop: | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
571 mplayer_put_key(KEY_STOP); |
12582 | 572 break; |
573 case XF86XK_AudioPrev: | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
574 mplayer_put_key(KEY_PREV); |
12582 | 575 break; |
576 case XF86XK_AudioNext: | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
577 mplayer_put_key(KEY_NEXT); |
12582 | 578 break; |
579 default: | |
580 break; | |
581 } | |
9822
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
582 } |
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
583 #endif |
1e761763566c
Support for "internet" or "multimedia" keyboards in X11.
albeu
parents:
9695
diff
changeset
|
584 |
12582 | 585 void vo_x11_putkey(int key) |
586 { | |
587 switch (key) | |
588 { | |
589 case wsLeft: | |
590 mplayer_put_key(KEY_LEFT); | |
591 break; | |
592 case wsRight: | |
593 mplayer_put_key(KEY_RIGHT); | |
594 break; | |
595 case wsUp: | |
596 mplayer_put_key(KEY_UP); | |
597 break; | |
598 case wsDown: | |
599 mplayer_put_key(KEY_DOWN); | |
600 break; | |
601 case wsSpace: | |
602 mplayer_put_key(' '); | |
603 break; | |
604 case wsEscape: | |
605 mplayer_put_key(KEY_ESC); | |
606 break; | |
16892
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
607 case wsTab: |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
608 mplayer_put_key(KEY_TAB); |
3470c810527b
libvo input cleanup: remove the dependency on libinput,
albeu
parents:
16793
diff
changeset
|
609 break; |
12582 | 610 case wsEnter: |
611 mplayer_put_key(KEY_ENTER); | |
612 break; | |
613 case wsBackSpace: | |
614 mplayer_put_key(KEY_BS); | |
615 break; | |
616 case wsDelete: | |
617 mplayer_put_key(KEY_DELETE); | |
618 break; | |
619 case wsInsert: | |
620 mplayer_put_key(KEY_INSERT); | |
621 break; | |
622 case wsHome: | |
623 mplayer_put_key(KEY_HOME); | |
624 break; | |
625 case wsEnd: | |
626 mplayer_put_key(KEY_END); | |
627 break; | |
628 case wsPageUp: | |
629 mplayer_put_key(KEY_PAGE_UP); | |
630 break; | |
631 case wsPageDown: | |
632 mplayer_put_key(KEY_PAGE_DOWN); | |
633 break; | |
634 case wsF1: | |
635 mplayer_put_key(KEY_F + 1); | |
636 break; | |
637 case wsF2: | |
638 mplayer_put_key(KEY_F + 2); | |
639 break; | |
640 case wsF3: | |
641 mplayer_put_key(KEY_F + 3); | |
642 break; | |
643 case wsF4: | |
644 mplayer_put_key(KEY_F + 4); | |
645 break; | |
646 case wsF5: | |
647 mplayer_put_key(KEY_F + 5); | |
648 break; | |
649 case wsF6: | |
650 mplayer_put_key(KEY_F + 6); | |
651 break; | |
652 case wsF7: | |
653 mplayer_put_key(KEY_F + 7); | |
654 break; | |
655 case wsF8: | |
656 mplayer_put_key(KEY_F + 8); | |
657 break; | |
658 case wsF9: | |
659 mplayer_put_key(KEY_F + 9); | |
660 break; | |
661 case wsF10: | |
662 mplayer_put_key(KEY_F + 10); | |
663 break; | |
664 case wsF11: | |
665 mplayer_put_key(KEY_F + 11); | |
666 break; | |
667 case wsF12: | |
668 mplayer_put_key(KEY_F + 12); | |
669 break; | |
670 case wsMinus: | |
671 case wsGrayMinus: | |
672 mplayer_put_key('-'); | |
673 break; | |
674 case wsPlus: | |
675 case wsGrayPlus: | |
676 mplayer_put_key('+'); | |
677 break; | |
678 case wsGrayMul: | |
679 case wsMul: | |
680 mplayer_put_key('*'); | |
681 break; | |
682 case wsGrayDiv: | |
683 case wsDiv: | |
684 mplayer_put_key('/'); | |
685 break; | |
686 case wsLess: | |
687 mplayer_put_key('<'); | |
688 break; | |
689 case wsMore: | |
690 mplayer_put_key('>'); | |
691 break; | |
692 case wsGray0: | |
693 mplayer_put_key(KEY_KP0); | |
694 break; | |
695 case wsGrayEnd: | |
696 case wsGray1: | |
697 mplayer_put_key(KEY_KP1); | |
698 break; | |
699 case wsGrayDown: | |
700 case wsGray2: | |
701 mplayer_put_key(KEY_KP2); | |
702 break; | |
703 case wsGrayPgDn: | |
704 case wsGray3: | |
705 mplayer_put_key(KEY_KP3); | |
706 break; | |
707 case wsGrayLeft: | |
708 case wsGray4: | |
709 mplayer_put_key(KEY_KP4); | |
710 break; | |
711 case wsGray5Dup: | |
712 case wsGray5: | |
713 mplayer_put_key(KEY_KP5); | |
714 break; | |
715 case wsGrayRight: | |
716 case wsGray6: | |
717 mplayer_put_key(KEY_KP6); | |
718 break; | |
719 case wsGrayHome: | |
720 case wsGray7: | |
721 mplayer_put_key(KEY_KP7); | |
722 break; | |
723 case wsGrayUp: | |
724 case wsGray8: | |
725 mplayer_put_key(KEY_KP8); | |
726 break; | |
727 case wsGrayPgUp: | |
728 case wsGray9: | |
729 mplayer_put_key(KEY_KP9); | |
730 break; | |
731 case wsGrayDecimal: | |
732 mplayer_put_key(KEY_KPDEC); | |
733 break; | |
734 case wsGrayInsert: | |
735 mplayer_put_key(KEY_KPINS); | |
736 break; | |
737 case wsGrayDelete: | |
738 mplayer_put_key(KEY_KPDEL); | |
739 break; | |
740 case wsGrayEnter: | |
741 mplayer_put_key(KEY_KPENTER); | |
742 break; | |
743 case wsGrave: | |
744 mplayer_put_key('`'); | |
745 break; | |
746 case wsTilde: | |
747 mplayer_put_key('~'); | |
748 break; | |
749 case wsExclSign: | |
750 mplayer_put_key('!'); | |
751 break; | |
752 case wsAt: | |
753 mplayer_put_key('@'); | |
754 break; | |
755 case wsHash: | |
756 mplayer_put_key('#'); | |
757 break; | |
758 case wsDollar: | |
759 mplayer_put_key('$'); | |
760 break; | |
761 case wsPercent: | |
762 mplayer_put_key('%'); | |
763 break; | |
764 case wsCircumflex: | |
765 mplayer_put_key('^'); | |
766 break; | |
767 case wsAmpersand: | |
768 mplayer_put_key('&'); | |
769 break; | |
770 case wsobracket: | |
771 mplayer_put_key('('); | |
772 break; | |
773 case wscbracket: | |
774 mplayer_put_key(')'); | |
775 break; | |
776 case wsUnder: | |
777 mplayer_put_key('_'); | |
778 break; | |
779 case wsocbracket: | |
780 mplayer_put_key('{'); | |
781 break; | |
782 case wsccbracket: | |
783 mplayer_put_key('}'); | |
784 break; | |
785 case wsColon: | |
786 mplayer_put_key(':'); | |
787 break; | |
788 case wsSemicolon: | |
789 mplayer_put_key(';'); | |
790 break; | |
791 case wsDblQuote: | |
792 mplayer_put_key('\"'); | |
793 break; | |
794 case wsAcute: | |
795 mplayer_put_key('\''); | |
796 break; | |
797 case wsComma: | |
798 mplayer_put_key(','); | |
799 break; | |
800 case wsPoint: | |
801 mplayer_put_key('.'); | |
802 break; | |
803 case wsQuestSign: | |
804 mplayer_put_key('?'); | |
805 break; | |
806 case wsBSlash: | |
807 mplayer_put_key('\\'); | |
808 break; | |
809 case wsPipe: | |
810 mplayer_put_key('|'); | |
811 break; | |
812 case wsEqual: | |
813 mplayer_put_key('='); | |
814 break; | |
815 case wsosbrackets: | |
816 mplayer_put_key('['); | |
817 break; | |
818 case wscsbrackets: | |
819 mplayer_put_key(']'); | |
820 break; | |
10936
51bc09f2977c
Get more keys from X window (punctuation, etc.) Hopefully, all alnum keys
lumag
parents:
10920
diff
changeset
|
821 |
51bc09f2977c
Get more keys from X window (punctuation, etc.) Hopefully, all alnum keys
lumag
parents:
10920
diff
changeset
|
822 |
12582 | 823 default: |
824 if ((key >= 'a' && key <= 'z') || (key >= 'A' && key <= 'Z') || | |
825 (key >= '0' && key <= '9')) | |
826 mplayer_put_key(key); | |
827 } | |
369 | 828 |
32 | 829 } |
830 | |
831 | |
832 // ----- Motif header: ------- | |
833 | |
1236 | 834 #define MWM_HINTS_FUNCTIONS (1L << 0) |
835 #define MWM_HINTS_DECORATIONS (1L << 1) | |
836 #define MWM_HINTS_INPUT_MODE (1L << 2) | |
837 #define MWM_HINTS_STATUS (1L << 3) | |
838 | |
839 #define MWM_FUNC_ALL (1L << 0) | |
840 #define MWM_FUNC_RESIZE (1L << 1) | |
841 #define MWM_FUNC_MOVE (1L << 2) | |
842 #define MWM_FUNC_MINIMIZE (1L << 3) | |
843 #define MWM_FUNC_MAXIMIZE (1L << 4) | |
844 #define MWM_FUNC_CLOSE (1L << 5) | |
845 | |
846 #define MWM_DECOR_ALL (1L << 0) | |
847 #define MWM_DECOR_BORDER (1L << 1) | |
848 #define MWM_DECOR_RESIZEH (1L << 2) | |
849 #define MWM_DECOR_TITLE (1L << 3) | |
850 #define MWM_DECOR_MENU (1L << 4) | |
851 #define MWM_DECOR_MINIMIZE (1L << 5) | |
852 #define MWM_DECOR_MAXIMIZE (1L << 6) | |
853 | |
854 #define MWM_INPUT_MODELESS 0 | |
855 #define MWM_INPUT_PRIMARY_APPLICATION_MODAL 1 | |
856 #define MWM_INPUT_SYSTEM_MODAL 2 | |
857 #define MWM_INPUT_FULL_APPLICATION_MODAL 3 | |
858 #define MWM_INPUT_APPLICATION_MODAL MWM_INPUT_PRIMARY_APPLICATION_MODAL | |
859 | |
860 #define MWM_TEAROFF_WINDOW (1L<<0) | |
32 | 861 |
862 typedef struct | |
863 { | |
12582 | 864 long flags; |
865 long functions; | |
866 long decorations; | |
867 long input_mode; | |
868 long state; | |
32 | 869 } MotifWmHints; |
870 | |
12582 | 871 static MotifWmHints vo_MotifWmHints; |
872 static Atom vo_MotifHints = None; | |
32 | 873 |
12582 | 874 void vo_x11_decoration(Display * vo_Display, Window w, int d) |
32 | 875 { |
12582 | 876 static unsigned int olddecor = MWM_DECOR_ALL; |
877 static unsigned int oldfuncs = | |
878 MWM_FUNC_MOVE | MWM_FUNC_CLOSE | MWM_FUNC_MINIMIZE | | |
879 MWM_FUNC_MAXIMIZE | MWM_FUNC_RESIZE; | |
880 Atom mtype; | |
881 int mformat; | |
882 unsigned long mn, mb; | |
883 | |
884 if (!WinID) | |
885 return; | |
5955
caac20b1ca79
fix xmga fs, resize to movie size and mouse auto hide + dga
pontscho
parents:
5919
diff
changeset
|
886 |
12582 | 887 if (vo_fsmode & 8) |
888 { | |
889 XSetTransientForHint(vo_Display, w, | |
890 RootWindow(vo_Display, mScreen)); | |
891 } | |
892 | |
893 vo_MotifHints = XInternAtom(vo_Display, "_MOTIF_WM_HINTS", 0); | |
894 if (vo_MotifHints != None) | |
895 { | |
896 if (!d) | |
897 { | |
898 MotifWmHints *mhints = NULL; | |
1415 | 899 |
12582 | 900 XGetWindowProperty(vo_Display, w, vo_MotifHints, 0, 20, False, |
901 vo_MotifHints, &mtype, &mformat, &mn, | |
902 &mb, (unsigned char **) &mhints); | |
903 if (mhints) | |
904 { | |
905 if (mhints->flags & MWM_HINTS_DECORATIONS) | |
906 olddecor = mhints->decorations; | |
907 if (mhints->flags & MWM_HINTS_FUNCTIONS) | |
908 oldfuncs = mhints->functions; | |
909 XFree(mhints); | |
910 } | |
911 } | |
12096 | 912 |
12582 | 913 memset(&vo_MotifWmHints, 0, sizeof(MotifWmHints)); |
914 vo_MotifWmHints.flags = | |
915 MWM_HINTS_FUNCTIONS | MWM_HINTS_DECORATIONS; | |
916 if (d) | |
917 { | |
918 vo_MotifWmHints.functions = oldfuncs; | |
919 d = olddecor; | |
920 } | |
4993 | 921 #if 0 |
12582 | 922 vo_MotifWmHints.decorations = |
923 d | ((vo_fsmode & 2) ? 0 : MWM_DECOR_MENU); | |
4993 | 924 #else |
12582 | 925 vo_MotifWmHints.decorations = |
926 d | ((vo_fsmode & 2) ? MWM_DECOR_MENU : 0); | |
4993 | 927 #endif |
12582 | 928 XChangeProperty(vo_Display, w, vo_MotifHints, vo_MotifHints, 32, |
929 PropModeReplace, | |
930 (unsigned char *) &vo_MotifWmHints, | |
931 (vo_fsmode & 4) ? 4 : 5); | |
932 } | |
32 | 933 } |
934 | |
12582 | 935 void vo_x11_classhint(Display * display, Window window, char *name) |
936 { | |
937 XClassHint wmClass; | |
938 pid_t pid = getpid(); | |
939 | |
940 wmClass.res_name = name; | |
941 wmClass.res_class = "MPlayer"; | |
942 XSetClassHint(display, window, &wmClass); | |
943 XChangeProperty(display, window, XA_NET_WM_PID, XA_CARDINAL, 32, | |
944 PropModeReplace, (unsigned char *) &pid, 1); | |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
945 } |
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
1109
diff
changeset
|
946 |
12582 | 947 Window vo_window = None; |
948 GC vo_gc = NULL; | |
949 GC f_gc = NULL; | |
4993 | 950 XSizeHints vo_hint; |
4795 | 951 |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1501
diff
changeset
|
952 #ifdef HAVE_NEW_GUI |
12582 | 953 void vo_setwindow(Window w, GC g) |
954 { | |
955 vo_window = w; | |
956 vo_gc = g; | |
957 } | |
723 | 958 #endif |
959 | |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17366
diff
changeset
|
960 void vo_x11_uninit(void) |
4437 | 961 { |
7111 | 962 saver_on(mDisplay); |
12582 | 963 if (vo_window != None) |
964 vo_showcursor(mDisplay, vo_window); | |
4742 | 965 |
12582 | 966 if (f_gc) |
967 { | |
968 XFreeGC(mDisplay, f_gc); | |
969 f_gc = NULL; | |
970 } | |
4437 | 971 #ifdef HAVE_NEW_GUI |
972 /* destroy window only if it's not controlled by GUI */ | |
12582 | 973 if (!use_gui) |
4437 | 974 #endif |
975 { | |
12582 | 976 if (vo_gc) |
977 { | |
978 XSetBackground(mDisplay, vo_gc, 0); | |
979 XFreeGC(mDisplay, vo_gc); | |
980 vo_gc = NULL; | |
981 } | |
982 if (vo_window != None) | |
983 { | |
984 XClearWindow(mDisplay, vo_window); | |
985 if (WinID < 0) | |
986 { | |
987 XEvent xev; | |
988 | |
989 XUnmapWindow(mDisplay, vo_window); | |
990 XDestroyWindow(mDisplay, vo_window); | |
991 do | |
992 { | |
993 XNextEvent(mDisplay, &xev); | |
994 } | |
995 while (xev.type != DestroyNotify | |
996 || xev.xdestroywindow.event != vo_window); | |
997 } | |
998 vo_window = None; | |
999 } | |
1000 vo_fs = 0; | |
1001 vo_old_width = vo_old_height = 0; | |
4437 | 1002 } |
1003 } | |
1004 | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1005 static unsigned int mouse_timer; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1006 static int mouse_waiting_hide; |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
1007 |
12582 | 1008 int vo_x11_check_events(Display * mydisplay) |
1009 { | |
1010 int ret = 0; | |
1011 XEvent Event; | |
1012 char buf[100]; | |
1013 KeySym keySym; | |
1014 static XComposeStatus stat; | |
5651
b8d8d72776f2
fix playlist bug with gui and rewrite mousecursor show/hide code
pontscho
parents:
5538
diff
changeset
|
1015 |
32 | 1016 // unsigned long vo_KeyTable[512]; |
1017 | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1018 if ((vo_mouse_autohide) && mouse_waiting_hide && |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1019 (GetTimerMS() - mouse_timer >= 1000)) { |
12582 | 1020 vo_hidecursor(mydisplay, vo_window); |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1021 mouse_waiting_hide = 0; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1022 } |
6095 | 1023 |
12582 | 1024 while (XPending(mydisplay)) |
1025 { | |
1026 XNextEvent(mydisplay, &Event); | |
1027 #ifdef HAVE_NEW_GUI | |
1028 if (use_gui) | |
1029 { | |
1030 guiGetEvent(0, (char *) &Event); | |
1031 if (vo_window != Event.xany.window) | |
1032 continue; | |
1033 } | |
1034 #endif | |
6095 | 1035 // printf("\rEvent.type=%X \n",Event.type); |
12582 | 1036 switch (Event.type) |
1037 { | |
1038 case Expose: | |
1039 ret |= VO_EVENT_EXPOSE; | |
1040 break; | |
1041 case ConfigureNotify: | |
1042 // if (!vo_fs && (Event.xconfigure.width == vo_screenwidth || Event.xconfigure.height == vo_screenheight)) break; | |
1043 // if (vo_fs && Event.xconfigure.width != vo_screenwidth && Event.xconfigure.height != vo_screenheight) break; | |
1044 if (vo_window == None) | |
1045 break; | |
1046 vo_dwidth = Event.xconfigure.width; | |
1047 vo_dheight = Event.xconfigure.height; | |
4812 | 1048 #if 0 |
12582 | 1049 /* when resizing, x and y are zero :( */ |
1050 vo_dx = Event.xconfigure.x; | |
1051 vo_dy = Event.xconfigure.y; | |
4812 | 1052 #else |
12582 | 1053 { |
1054 Window root; | |
1055 int foo; | |
1056 Window win; | |
1057 | |
1058 XGetGeometry(mydisplay, vo_window, &root, &foo, &foo, | |
1059 &foo /*width */ , &foo /*height */ , &foo, | |
1060 &foo); | |
1061 XTranslateCoordinates(mydisplay, vo_window, root, 0, 0, | |
1062 &vo_dx, &vo_dy, &win); | |
1063 } | |
1064 #endif | |
1065 ret |= VO_EVENT_RESIZE; | |
1066 break; | |
1067 case KeyPress: | |
1068 { | |
1069 int key; | |
1070 | |
14001 | 1071 #ifdef HAVE_NEW_GUI |
1072 if ( use_gui ) { break; } | |
1073 #endif | |
1074 | |
12582 | 1075 XLookupString(&Event.xkey, buf, sizeof(buf), &keySym, |
1076 &stat); | |
1077 #ifdef XF86XK_AudioPause | |
1078 vo_x11_putkey_ext(keySym); | |
1079 #endif | |
1080 key = | |
1081 ((keySym & 0xff00) != | |
1082 0 ? ((keySym & 0x00ff) + 256) : (keySym)); | |
1083 vo_x11_putkey(key); | |
1084 ret |= VO_EVENT_KEYPRESS; | |
1085 } | |
1086 break; | |
1087 case MotionNotify: | |
19850
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1088 if(enable_mouse_movements) |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1089 { |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1090 char cmd_str[40]; |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1091 sprintf(cmd_str,"set_mouse_pos %i %i",Event.xmotion.x, Event.xmotion.y); |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1092 mp_input_queue_cmd(mp_input_parse_cmd(cmd_str)); |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1093 } |
4919b3ce8d5e
report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
nicodvb
parents:
18950
diff
changeset
|
1094 |
12582 | 1095 if (vo_mouse_autohide) |
1096 { | |
1097 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1098 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1099 mouse_timer = GetTimerMS(); |
12582 | 1100 } |
1101 break; | |
1102 case ButtonPress: | |
1103 if (vo_mouse_autohide) | |
1104 { | |
1105 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1106 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1107 mouse_timer = GetTimerMS(); |
12582 | 1108 } |
1109 // Ignore mouse whell press event | |
1110 if (Event.xbutton.button > 3) | |
1111 { | |
1112 mplayer_put_key(MOUSE_BTN0 + Event.xbutton.button - 1); | |
1113 break; | |
1114 } | |
1115 #ifdef HAVE_NEW_GUI | |
1116 // Ignor mouse button 1 - 3 under gui | |
1117 if (use_gui && (Event.xbutton.button >= 1) | |
1118 && (Event.xbutton.button <= 3)) | |
1119 break; | |
1120 #endif | |
1121 mplayer_put_key((MOUSE_BTN0 + Event.xbutton.button - | |
1122 1) | MP_KEY_DOWN); | |
1123 break; | |
1124 case ButtonRelease: | |
1125 if (vo_mouse_autohide) | |
1126 { | |
1127 vo_showcursor(mydisplay, vo_window); | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1128 mouse_waiting_hide = 1; |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18237
diff
changeset
|
1129 mouse_timer = GetTimerMS(); |
12582 | 1130 } |
1131 #ifdef HAVE_NEW_GUI | |
1132 // Ignor mouse button 1 - 3 under gui | |
1133 if (use_gui && (Event.xbutton.button >= 1) | |
1134 && (Event.xbutton.button <= 3)) | |
1135 break; | |
1136 #endif | |
1137 mplayer_put_key(MOUSE_BTN0 + Event.xbutton.button - 1); | |
1138 break; | |
1139 case PropertyNotify: | |
1140 { | |
1141 char *name = | |
1142 XGetAtomName(mydisplay, Event.xproperty.atom); | |
1143 | |
1144 if (!name) | |
1145 break; | |
1146 | |
6046 | 1147 // fprintf(stderr,"[ws] PropertyNotify ( 0x%x ) %s ( 0x%x )\n",vo_window,name,Event.xproperty.atom ); |
12582 | 1148 |
1149 XFree(name); | |
1150 } | |
1151 break; | |
1152 case MapNotify: | |
1153 vo_hint.win_gravity = old_gravity; | |
1154 XSetWMNormalHints(mDisplay, vo_window, &vo_hint); | |
1155 vo_fs_flip = 0; | |
1156 break; | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1157 case ClientMessage: |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1158 if (Event.xclient.message_type == XAWM_PROTOCOLS && |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1159 Event.xclient.data.l[0] == XAWM_DELETE_WINDOW) |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1160 mplayer_put_key(KEY_CLOSE_WIN); |
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1161 break; |
12582 | 1162 } |
1163 } | |
1164 return ret; | |
32 | 1165 } |
1166 | |
13843 | 1167 /** |
1168 * \brief sets the size and position of the non-fullscreen window. | |
1169 */ | |
1170 void vo_x11_nofs_sizepos(int x, int y, int width, int height) | |
1171 { | |
1172 if (vo_fs) { | |
1173 vo_old_x = x; | |
1174 vo_old_y = y; | |
1175 vo_old_width = width; | |
1176 vo_old_height = height; | |
1177 } | |
1178 else | |
13871 | 1179 { |
1180 vo_dwidth = width; | |
1181 vo_dheight = height; | |
13843 | 1182 XMoveResizeWindow(mDisplay, vo_window, x, y, width, height); |
13871 | 1183 } |
13843 | 1184 } |
1185 | |
12582 | 1186 void vo_x11_sizehint(int x, int y, int width, int height, int max) |
4993 | 1187 { |
12582 | 1188 vo_hint.flags = PPosition | PSize | PWinGravity; |
1189 if (vo_keepaspect) | |
1190 { | |
1191 vo_hint.flags |= PAspect; | |
1192 vo_hint.min_aspect.x = width; | |
1193 vo_hint.min_aspect.y = height; | |
1194 vo_hint.max_aspect.x = width; | |
1195 vo_hint.max_aspect.y = height; | |
1196 } | |
8692
604f0cde816c
X11 window aspect patch by Arnaud Boulan <boulan@iie.cnam.fr>
attila
parents:
8676
diff
changeset
|
1197 |
12582 | 1198 vo_hint.x = x; |
1199 vo_hint.y = y; | |
1200 vo_hint.width = width; | |
1201 vo_hint.height = height; | |
1202 if (max) | |
1203 { | |
1204 vo_hint.max_width = width; | |
1205 vo_hint.max_height = height; | |
1206 vo_hint.flags |= PMaxSize; | |
1207 } else | |
1208 { | |
1209 vo_hint.max_width = 0; | |
1210 vo_hint.max_height = 0; | |
1211 } | |
11995 | 1212 |
12582 | 1213 // set min height/width to 4 to avoid off by one errors |
1214 // and because mga_vid requires a minial size of 4 pixel | |
1215 vo_hint.min_width = vo_hint.min_height = 4; | |
1216 vo_hint.flags |= PMinSize; | |
11995 | 1217 |
12582 | 1218 vo_hint.win_gravity = StaticGravity; |
1219 XSetWMNormalHints(mDisplay, vo_window, &vo_hint); | |
4993 | 1220 } |
1221 | |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
1222 static int vo_x11_get_gnome_layer(Display * mDisplay, Window win) |
8866 | 1223 { |
12582 | 1224 Atom type; |
1225 int format; | |
1226 unsigned long nitems; | |
1227 unsigned long bytesafter; | |
1228 unsigned short *args = NULL; | |
8866 | 1229 |
12582 | 1230 if (XGetWindowProperty(mDisplay, win, XA_WIN_LAYER, 0, 16384, |
1231 False, AnyPropertyType, &type, &format, &nitems, | |
1232 &bytesafter, | |
1233 (unsigned char **) &args) == Success | |
1234 && nitems > 0 && args) | |
1235 { | |
1236 mp_msg(MSGT_VO, MSGL_V, "[x11] original window layer is %d.\n", | |
1237 *args); | |
1238 return *args; | |
1239 } | |
1240 return WIN_LAYER_NORMAL; | |
8866 | 1241 } |
1242 | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1243 // |
12582 | 1244 Window vo_x11_create_smooth_window(Display * mDisplay, Window mRoot, |
1245 Visual * vis, int x, int y, | |
1246 unsigned int width, unsigned int height, | |
1247 int depth, Colormap col_map) | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1248 { |
12582 | 1249 unsigned long xswamask = CWBackingStore | CWBorderPixel; |
1250 XSetWindowAttributes xswa; | |
1251 Window ret_win; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1252 |
12582 | 1253 if (col_map != CopyFromParent) |
1254 { | |
1255 xswa.colormap = col_map; | |
1256 xswamask |= CWColormap; | |
1257 } | |
1258 xswa.background_pixel = 0; | |
1259 xswa.border_pixel = 0; | |
1260 xswa.backing_store = Always; | |
1261 xswa.bit_gravity = StaticGravity; | |
1262 | |
1263 ret_win = | |
1264 XCreateWindow(mDisplay, mRootWin, x, y, width, height, 0, depth, | |
1265 CopyFromParent, vis, xswamask, &xswa); | |
18149
163fe5c2577d
Register for window-manager delete window events and quit MPlayer.
reimar
parents:
18116
diff
changeset
|
1266 XSetWMProtocols(mDisplay, ret_win, &XAWM_DELETE_WINDOW, 1); |
12582 | 1267 if (!f_gc) |
1268 f_gc = XCreateGC(mDisplay, ret_win, 0, 0); | |
1269 XSetForeground(mDisplay, f_gc, 0); | |
1270 | |
1271 return ret_win; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1272 } |
12582 | 1273 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1274 |
12582 | 1275 void vo_x11_clearwindow_part(Display * mDisplay, Window vo_window, |
1276 int img_width, int img_height, int use_fs) | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1277 { |
12582 | 1278 int u_dheight, u_dwidth, left_ov, left_ov2; |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10757
diff
changeset
|
1279 |
12582 | 1280 if (!f_gc) |
1281 return; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1282 |
12582 | 1283 u_dheight = use_fs ? vo_screenheight : vo_dheight; |
1284 u_dwidth = use_fs ? vo_screenwidth : vo_dwidth; | |
1285 if ((u_dheight <= img_height) && (u_dwidth <= img_width)) | |
1286 return; | |
10765
c8fb7e2690a3
10000l. Never ever use such foolish GCC 3.x extensionscvs diff -u x11_common.c x11_common.h |more
alex
parents:
10757
diff
changeset
|
1287 |
12582 | 1288 left_ov = (u_dheight - img_height) / 2; |
1289 left_ov2 = (u_dwidth - img_width) / 2; | |
1290 | |
1291 XFillRectangle(mDisplay, vo_window, f_gc, 0, 0, u_dwidth, left_ov); | |
1292 XFillRectangle(mDisplay, vo_window, f_gc, 0, u_dheight - left_ov - 1, | |
1293 u_dwidth, left_ov + 1); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1294 |
12582 | 1295 if (u_dwidth > img_width) |
1296 { | |
1297 XFillRectangle(mDisplay, vo_window, f_gc, 0, left_ov, left_ov2, | |
1298 img_height); | |
1299 XFillRectangle(mDisplay, vo_window, f_gc, u_dwidth - left_ov2 - 1, | |
1300 left_ov, left_ov2, img_height); | |
1301 } | |
1302 | |
1303 XFlush(mDisplay); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1304 } |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1305 |
12582 | 1306 void vo_x11_clearwindow(Display * mDisplay, Window vo_window) |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1307 { |
12582 | 1308 if (!f_gc) |
1309 return; | |
1310 XFillRectangle(mDisplay, vo_window, f_gc, 0, 0, vo_screenwidth, | |
1311 vo_screenheight); | |
1312 // | |
1313 XFlush(mDisplay); | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1314 } |
12582 | 1315 |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10754
diff
changeset
|
1316 |
12582 | 1317 void vo_x11_setlayer(Display * mDisplay, Window vo_window, int layer) |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1318 { |
12582 | 1319 if (WinID >= 0) |
1320 return; | |
8864 | 1321 |
12582 | 1322 if (vo_fs_type & vo_wm_LAYER) |
1323 { | |
1324 XClientMessageEvent xev; | |
1325 | |
1326 if (!orig_layer) | |
1327 orig_layer = vo_x11_get_gnome_layer(mDisplay, vo_window); | |
8866 | 1328 |
12582 | 1329 memset(&xev, 0, sizeof(xev)); |
1330 xev.type = ClientMessage; | |
1331 xev.display = mDisplay; | |
1332 xev.window = vo_window; | |
1333 xev.message_type = XA_WIN_LAYER; | |
1334 xev.format = 32; | |
1335 xev.data.l[0] = layer ? fs_layer : orig_layer; // if not fullscreen, stay on default layer | |
1336 xev.data.l[1] = CurrentTime; | |
1337 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 1338 "[x11] Layered style stay on top (layer %ld).\n", |
12582 | 1339 xev.data.l[0]); |
1340 XSendEvent(mDisplay, mRootWin, False, SubstructureNotifyMask, | |
1341 (XEvent *) & xev); | |
1342 } else if (vo_fs_type & vo_wm_NETWM) | |
1343 { | |
1344 XClientMessageEvent xev; | |
1345 char *state; | |
8645 | 1346 |
12582 | 1347 memset(&xev, 0, sizeof(xev)); |
1348 xev.type = ClientMessage; | |
1349 xev.message_type = XA_NET_WM_STATE; | |
1350 xev.display = mDisplay; | |
1351 xev.window = vo_window; | |
1352 xev.format = 32; | |
1353 xev.data.l[0] = layer; | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1354 |
12582 | 1355 if (vo_fs_type & vo_wm_STAYS_ON_TOP) |
1356 xev.data.l[1] = XA_NET_WM_STATE_STAYS_ON_TOP; | |
1357 else if (vo_fs_type & vo_wm_ABOVE) | |
1358 xev.data.l[1] = XA_NET_WM_STATE_ABOVE; | |
1359 else if (vo_fs_type & vo_wm_FULLSCREEN) | |
1360 xev.data.l[1] = XA_NET_WM_STATE_FULLSCREEN; | |
1361 else if (vo_fs_type & vo_wm_BELOW) | |
1362 // This is not fallback. We can safely assume that situation where | |
1363 // only NETWM_STATE_BELOW is supported and others not, doesn't exist. | |
1364 xev.data.l[1] = XA_NET_WM_STATE_BELOW; | |
1365 | |
1366 XSendEvent(mDisplay, mRootWin, False, SubstructureRedirectMask, | |
1367 (XEvent *) & xev); | |
1368 state = XGetAtomName(mDisplay, xev.data.l[1]); | |
1369 mp_msg(MSGT_VO, MSGL_V, | |
1370 "[x11] NET style stay on top (layer %d). Using state %s.\n", | |
1371 layer, state); | |
1372 XFree(state); | |
1373 } | |
5997
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1374 } |
b5fb9a927bf3
add WM detection, and wm specific fullscreen code. (???)
pontscho
parents:
5981
diff
changeset
|
1375 |
10587
382bf4771ee7
moved lot of global variables into static ones (and some minor spelling fixes)
alex
parents:
10570
diff
changeset
|
1376 static int vo_x11_get_fs_type(int supported) |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1377 { |
12582 | 1378 int i; |
1379 int type = supported; | |
1380 | |
1381 if (vo_fstype_list) | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1382 { |
12582 | 1383 i = 0; |
1384 for (i = 0; vo_fstype_list[i]; i++) | |
1385 { | |
1386 int neg = 0; | |
1387 char *arg = vo_fstype_list[i]; | |
1388 | |
1389 if (vo_fstype_list[i][0] == '-') | |
1390 { | |
1391 neg = 1; | |
1392 arg = vo_fstype_list[i] + 1; | |
1393 } | |
1394 | |
1395 if (!strncmp(arg, "layer", 5)) | |
1396 { | |
1397 if (!neg && (arg[5] == '=')) | |
1398 { | |
1399 char *endptr = NULL; | |
1400 int layer = strtol(vo_fstype_list[i] + 6, &endptr, 10); | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1401 |
12582 | 1402 if (endptr && *endptr == '\0' && layer >= 0 |
1403 && layer <= 15) | |
1404 fs_layer = layer; | |
1405 } | |
1406 if (neg) | |
1407 type &= ~vo_wm_LAYER; | |
1408 else | |
1409 type |= vo_wm_LAYER; | |
1410 } else if (!strcmp(arg, "above")) | |
1411 { | |
1412 if (neg) | |
1413 type &= ~vo_wm_ABOVE; | |
1414 else | |
1415 type |= vo_wm_ABOVE; | |
1416 } else if (!strcmp(arg, "fullscreen")) | |
1417 { | |
1418 if (neg) | |
1419 type &= ~vo_wm_FULLSCREEN; | |
1420 else | |
1421 type |= vo_wm_FULLSCREEN; | |
1422 } else if (!strcmp(arg, "stays_on_top")) | |
1423 { | |
1424 if (neg) | |
1425 type &= ~vo_wm_STAYS_ON_TOP; | |
1426 else | |
1427 type |= vo_wm_STAYS_ON_TOP; | |
1428 } else if (!strcmp(arg, "below")) | |
1429 { | |
1430 if (neg) | |
1431 type &= ~vo_wm_BELOW; | |
1432 else | |
1433 type |= vo_wm_BELOW; | |
1434 } else if (!strcmp(arg, "netwm")) | |
1435 { | |
1436 if (neg) | |
1437 type &= ~vo_wm_NETWM; | |
1438 else | |
1439 type |= vo_wm_NETWM; | |
1440 } else if (!strcmp(arg, "none")) | |
1441 return 0; | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1442 } |
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9217
diff
changeset
|
1443 } |
5919 | 1444 |
12582 | 1445 return type; |
4981 | 1446 } |
1447 | |
12582 | 1448 void vo_x11_fullscreen(void) |
11542 | 1449 { |
12582 | 1450 int x, y, w, h; |
1451 | |
1452 if (WinID >= 0 || vo_fs_flip) | |
1453 return; | |
1454 | |
1455 if (vo_fs) | |
1456 { | |
1457 // fs->win | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1458 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1459 { |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1460 if (vo_dwidth != vo_screenwidth && vo_dheight != vo_screenheight) |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1461 return; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1462 x = vo_old_x; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1463 y = vo_old_y; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1464 w = vo_old_width; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1465 h = vo_old_height; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1466 } |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1467 |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1468 vo_x11_ewmh_fullscreen(_NET_WM_STATE_REMOVE); // removes fullscreen state if wm supports EWMH |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1469 vo_fs = VO_FALSE; |
12582 | 1470 } else |
1471 { | |
1472 // win->fs | |
1473 vo_x11_ewmh_fullscreen(_NET_WM_STATE_ADD); // sends fullscreen state to be added if wm supports EWMH | |
1474 | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1475 vo_fs = VO_TRUE; |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1476 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1477 { |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1478 if (vo_old_width && |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1479 (vo_dwidth == vo_screenwidth && vo_dwidth != vo_old_width) && |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1480 (vo_dheight == vo_screenheight && vo_dheight != vo_old_height)) |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1481 return; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1482 vo_old_x = vo_dx; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1483 vo_old_y = vo_dy; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1484 vo_old_width = vo_dwidth; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1485 vo_old_height = vo_dheight; |
18116 | 1486 update_xinerama_info(); |
1487 x = xinerama_x; | |
1488 y = xinerama_y; | |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1489 w = vo_screenwidth; |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1490 h = vo_screenheight; |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1491 } |
12582 | 1492 } |
1493 { | |
1494 long dummy; | |
1495 | |
1496 XGetWMNormalHints(mDisplay, vo_window, &vo_hint, &dummy); | |
1497 if (!(vo_hint.flags & PWinGravity)) | |
1498 old_gravity = NorthWestGravity; | |
1499 else | |
1500 old_gravity = vo_hint.win_gravity; | |
1501 } | |
1502 if (vo_wm_type == 0 && !(vo_fsmode & 16)) | |
1503 { | |
1504 XUnmapWindow(mDisplay, vo_window); // required for MWM | |
1505 XWithdrawWindow(mDisplay, vo_window, mScreen); | |
1506 vo_fs_flip = 1; | |
1507 } | |
1508 | |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1509 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // not needed with EWMH fs |
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1510 { |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1511 vo_x11_decoration(mDisplay, vo_window, (vo_fs) ? 0 : 1); |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1512 vo_x11_sizehint(x, y, w, h, 0); |
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1513 vo_x11_setlayer(mDisplay, vo_window, vo_fs); |
12582 | 1514 |
1515 | |
12798
33423862b159
Indentation fix from previous patch, as discussed on IRC.
rtognimp
parents:
12796
diff
changeset
|
1516 XMoveResizeWindow(mDisplay, vo_window, x, y, w, h); |
12796
24075685789b
This fixes the problems that originated from my ewmh
rtognimp
parents:
12582
diff
changeset
|
1517 } |
14244
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1518 /* some WMs lose ontop after fullscreeen */ |
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1519 if ((!(vo_fs)) & vo_ontop) |
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1520 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); |
9b03ad0254ae
Fix ontop for some WMs that lose ontop state after fullscreen event.
al
parents:
14207
diff
changeset
|
1521 |
12582 | 1522 XMapRaised(mDisplay, vo_window); |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18508
diff
changeset
|
1523 if ( ! (vo_fs_type & vo_wm_FULLSCREEN) ) // some WMs change window pos on map |
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18508
diff
changeset
|
1524 XMoveResizeWindow(mDisplay, vo_window, x, y, w, h); |
12582 | 1525 XRaiseWindow(mDisplay, vo_window); |
1526 XFlush(mDisplay); | |
1527 } | |
1528 | |
1529 void vo_x11_ontop(void) | |
1530 { | |
1531 vo_ontop = (!(vo_ontop)); | |
1532 | |
1533 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); | |
11542 | 1534 } |
1535 | |
9695 | 1536 /* |
1537 * XScreensaver stuff | |
1538 */ | |
1539 | |
1540 static int got_badwindow; | |
1541 static XErrorHandler old_handler; | |
1542 | |
12582 | 1543 static int badwindow_handler(Display * dpy, XErrorEvent * error) |
9695 | 1544 { |
1545 if (error->error_code != BadWindow) | |
12582 | 1546 return (*old_handler) (dpy, error); |
9695 | 1547 |
1548 got_badwindow = True; | |
1549 return 0; | |
1550 } | |
1551 | |
12582 | 1552 static Window find_xscreensaver_window(Display * dpy) |
9695 | 1553 { |
1554 int i; | |
1555 Window root = RootWindowOfScreen(DefaultScreenOfDisplay(dpy)); | |
1556 Window root2, parent, *kids; | |
1557 Window retval = 0; | |
1558 Atom xs_version; | |
1559 unsigned int nkids = 0; | |
1560 | |
1561 xs_version = XInternAtom(dpy, "_SCREENSAVER_VERSION", True); | |
1562 | |
1563 if (!(xs_version != None && | |
1564 XQueryTree(dpy, root, &root2, &parent, &kids, &nkids) && | |
12582 | 1565 kids && nkids)) |
1566 return 0; | |
9695 | 1567 |
1568 old_handler = XSetErrorHandler(badwindow_handler); | |
1569 | |
12582 | 1570 for (i = 0; i < nkids; i++) |
1571 { | |
1572 Atom type; | |
1573 int format; | |
1574 unsigned long nitems, bytesafter; | |
1575 char *v; | |
1576 int status; | |
9695 | 1577 |
1578 got_badwindow = False; | |
12582 | 1579 status = |
1580 XGetWindowProperty(dpy, kids[i], xs_version, 0, 200, False, | |
1581 XA_STRING, &type, &format, &nitems, | |
1582 &bytesafter, (unsigned char **) &v); | |
1583 XSync(dpy, False); | |
1584 if (got_badwindow) | |
1585 status = BadWindow; | |
9695 | 1586 |
12582 | 1587 if (status == Success && type != None) |
1588 { | |
1589 retval = kids[i]; | |
1590 break; | |
1591 } | |
9695 | 1592 } |
1593 XFree(kids); | |
1594 XSetErrorHandler(old_handler); | |
1595 | |
1596 return retval; | |
1597 } | |
1598 | |
1599 static Window xs_windowid = 0; | |
1600 static Atom deactivate; | |
1601 static Atom screensaver; | |
1602 | |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1603 static unsigned int time_last; |
9695 | 1604 |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1605 void xscreensaver_heartbeat(void) |
9695 | 1606 { |
12031
0c2b8b731d42
Use system clock for xscreensaver pings (Tobias Diedrich).
diego
parents:
11995
diff
changeset
|
1607 unsigned int time = GetTimerMS(); |
9695 | 1608 XEvent ev; |
1609 | |
18485
b8ec2d53a206
Simplify condition, since both time and time_last are unsigned.
rathann
parents:
18287
diff
changeset
|
1610 if (mDisplay && xs_windowid && (time - time_last) > 30000) |
12582 | 1611 { |
1612 time_last = time; | |
9695 | 1613 |
12582 | 1614 ev.xany.type = ClientMessage; |
1615 ev.xclient.display = mDisplay; | |
1616 ev.xclient.window = xs_windowid; | |
1617 ev.xclient.message_type = screensaver; | |
1618 ev.xclient.format = 32; | |
1619 memset(&ev.xclient.data, 0, sizeof(ev.xclient.data)); | |
1620 ev.xclient.data.l[0] = (long) deactivate; | |
9695 | 1621 |
12582 | 1622 mp_msg(MSGT_VO, MSGL_DBG2, "Pinging xscreensaver.\n"); |
17123
f79b39b07cc3
Don't abort when xscreensaver window isn't available anymore.
al
parents:
17033
diff
changeset
|
1623 old_handler = XSetErrorHandler(badwindow_handler); |
12582 | 1624 XSendEvent(mDisplay, xs_windowid, False, 0L, &ev); |
1625 XSync(mDisplay, False); | |
17123
f79b39b07cc3
Don't abort when xscreensaver window isn't available anymore.
al
parents:
17033
diff
changeset
|
1626 XSetErrorHandler(old_handler); |
9695 | 1627 } |
1628 } | |
1629 | |
12582 | 1630 static void xscreensaver_disable(Display * dpy) |
9695 | 1631 { |
12582 | 1632 mp_msg(MSGT_VO, MSGL_DBG2, "xscreensaver_disable()\n"); |
9695 | 1633 |
1634 xs_windowid = find_xscreensaver_window(dpy); | |
12582 | 1635 if (!xs_windowid) |
1636 { | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16301
diff
changeset
|
1637 mp_msg(MSGT_VO, MSGL_INFO, MSGTR_CouldNotFindXScreenSaver); |
12582 | 1638 return; |
9695 | 1639 } |
12582 | 1640 mp_msg(MSGT_VO, MSGL_INFO, |
17366 | 1641 "xscreensaver_disable: xscreensaver wid=%ld.\n", xs_windowid); |
9695 | 1642 |
1643 deactivate = XInternAtom(dpy, "DEACTIVATE", False); | |
1644 screensaver = XInternAtom(dpy, "SCREENSAVER", False); | |
1645 } | |
1646 | |
1647 static void xscreensaver_enable(void) | |
1648 { | |
1649 xs_windowid = 0; | |
1650 } | |
1651 | |
1652 /* | |
1653 * End of XScreensaver stuff | |
1654 */ | |
1655 | |
12582 | 1656 void saver_on(Display * mDisplay) |
1657 { | |
324 | 1658 |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1659 #ifdef HAVE_XDPMS |
324 | 1660 int nothing; |
12582 | 1661 |
324 | 1662 if (dpms_disabled) |
1663 { | |
12582 | 1664 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) |
1665 { | |
1666 if (!DPMSEnable(mDisplay)) | |
1667 { // restoring power saving settings | |
1668 mp_msg(MSGT_VO, MSGL_WARN, "DPMS not available?\n"); | |
1669 } else | |
1670 { | |
741 | 1671 // DPMS does not seem to be enabled unless we call DPMSInfo |
12582 | 1672 BOOL onoff; |
1673 CARD16 state; | |
1674 | |
1675 DPMSForceLevel(mDisplay, DPMSModeOn); | |
1676 DPMSInfo(mDisplay, &state, &onoff); | |
1677 if (onoff) | |
1678 { | |
13946 | 1679 mp_msg(MSGT_VO, MSGL_V, |
12582 | 1680 "Successfully enabled DPMS\n"); |
1681 } else | |
1682 { | |
1683 mp_msg(MSGT_VO, MSGL_WARN, "Could not enable DPMS\n"); | |
741 | 1684 } |
1685 } | |
12582 | 1686 } |
1687 dpms_disabled = 0; | |
324 | 1688 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1689 #endif |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1690 |
324 | 1691 if (timeout_save) |
1692 { | |
12582 | 1693 int dummy, interval, prefer_blank, allow_exp; |
1694 | |
1695 XGetScreenSaver(mDisplay, &dummy, &interval, &prefer_blank, | |
1696 &allow_exp); | |
1697 XSetScreenSaver(mDisplay, timeout_save, interval, prefer_blank, | |
1698 allow_exp); | |
1699 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, | |
1700 &allow_exp); | |
1701 timeout_save = 0; | |
324 | 1702 } |
1703 | |
12582 | 1704 if (stop_xscreensaver) |
1705 xscreensaver_enable(); | |
1706 if (kdescreensaver_was_running && stop_xscreensaver) | |
1707 { | |
1708 system | |
1709 ("dcop kdesktop KScreensaverIface enable true 2>/dev/null >/dev/null"); | |
1710 kdescreensaver_was_running = 0; | |
8354
8a0b6e083280
This patch fixes the screensaver issues in mplayer. It will correctly read
arpi
parents:
8215
diff
changeset
|
1711 } |
8a0b6e083280
This patch fixes the screensaver issues in mplayer. It will correctly read
arpi
parents:
8215
diff
changeset
|
1712 |
6303 | 1713 |
324 | 1714 } |
1715 | |
12582 | 1716 void saver_off(Display * mDisplay) |
1717 { | |
324 | 1718 |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1719 int interval, prefer_blank, allow_exp; |
12582 | 1720 |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1721 #ifdef HAVE_XDPMS |
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1722 int nothing; |
324 | 1723 |
1724 if (DPMSQueryExtension(mDisplay, ¬hing, ¬hing)) | |
1725 { | |
12582 | 1726 BOOL onoff; |
1727 CARD16 state; | |
1728 | |
1729 DPMSInfo(mDisplay, &state, &onoff); | |
1730 if (onoff) | |
1731 { | |
1732 Status stat; | |
1733 | |
13946 | 1734 mp_msg(MSGT_VO, MSGL_V, "Disabling DPMS\n"); |
12582 | 1735 dpms_disabled = 1; |
1736 stat = DPMSDisable(mDisplay); // monitor powersave off | |
1737 mp_msg(MSGT_VO, MSGL_V, "DPMSDisable stat: %d\n", stat); | |
1738 } | |
324 | 1739 } |
1345
be674b95b485
x11_common does not compile, when the XDPMS extension is not available on the
jkeil
parents:
1266
diff
changeset
|
1740 #endif |
12582 | 1741 if (!timeout_save) |
1742 { | |
1743 XGetScreenSaver(mDisplay, &timeout_save, &interval, &prefer_blank, | |
1744 &allow_exp); | |
1745 if (timeout_save) | |
1746 XSetScreenSaver(mDisplay, 0, interval, prefer_blank, | |
1747 allow_exp); | |
8097 | 1748 } |
12582 | 1749 // turning off screensaver |
1750 if (stop_xscreensaver) | |
1751 xscreensaver_disable(mDisplay); | |
8354
8a0b6e083280
This patch fixes the screensaver issues in mplayer. It will correctly read
arpi
parents:
8215
diff
changeset
|
1752 if (stop_xscreensaver && !kdescreensaver_was_running) |
8a0b6e083280
This patch fixes the screensaver issues in mplayer. It will correctly read
arpi
parents:
8215
diff
changeset
|
1753 { |
12582 | 1754 kdescreensaver_was_running = |
1755 (system | |
1756 ("dcop kdesktop KScreensaverIface isEnabled 2>/dev/null | sed 's/1/true/g' | grep true 2>/dev/null >/dev/null") | |
1757 == 0); | |
1758 if (kdescreensaver_was_running) | |
1759 system | |
1760 ("dcop kdesktop KScreensaverIface enable false 2>/dev/null >/dev/null"); | |
8354
8a0b6e083280
This patch fixes the screensaver issues in mplayer. It will correctly read
arpi
parents:
8215
diff
changeset
|
1761 } |
326 | 1762 } |
448
198b46b739d8
qrva eletbe nem kene cvs-t elbaszni inkabb ne nyuljatok hozza baz+
arpi_esp
parents:
440
diff
changeset
|
1763 |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1764 static XErrorHandler old_handler = NULL; |
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1765 static int selectinput_err = 0; |
12582 | 1766 static int x11_selectinput_errorhandler(Display * display, |
1767 XErrorEvent * event) | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1768 { |
12582 | 1769 if (event->error_code == BadAccess) |
1770 { | |
1771 selectinput_err = 1; | |
1772 mp_msg(MSGT_VO, MSGL_ERR, | |
1773 "X11 error: BadAccess during XSelectInput Call\n"); | |
1774 mp_msg(MSGT_VO, MSGL_ERR, | |
1775 "X11 error: The 'ButtonPressMask' mask of specified window has probably already used by another appication (see man XSelectInput)\n"); | |
1776 /* If you think mplayer should shutdown with this error, comments out following line */ | |
1777 return 0; | |
1778 } | |
1779 if (old_handler != NULL) | |
1780 old_handler(display, event); | |
1781 else | |
1782 x11_errorhandler(display, event); | |
1783 return 0; | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1784 } |
3990 | 1785 |
12582 | 1786 void vo_x11_selectinput_witherr(Display * display, Window w, |
1787 long event_mask) | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1788 { |
12582 | 1789 XSync(display, False); |
1790 old_handler = XSetErrorHandler(x11_selectinput_errorhandler); | |
1791 selectinput_err = 0; | |
1792 if (vo_nomouse_input) | |
1793 { | |
1794 XSelectInput(display, w, | |
1795 event_mask & | |
1796 (~(ButtonPressMask | ButtonReleaseMask))); | |
1797 } else | |
1798 { | |
1799 XSelectInput(display, w, event_mask); | |
1800 } | |
1801 XSync(display, False); | |
1802 XSetErrorHandler(old_handler); | |
1803 if (selectinput_err) | |
1804 { | |
1805 mp_msg(MSGT_VO, MSGL_ERR, | |
1806 "X11 error: MPlayer discards mouse control (reconfiguring)\n"); | |
1807 XSelectInput(display, w, | |
1808 event_mask & | |
1809 (~ | |
1810 (ButtonPressMask | ButtonReleaseMask | | |
1811 PointerMotionMask))); | |
1812 } | |
6953
ce67cc1f0beb
ignore BadAccess error at XSelectInput() (grabbing mouse etc) with warning
arpi
parents:
6401
diff
changeset
|
1813 } |
3990 | 1814 |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1815 #ifdef HAVE_XF86VM |
12582 | 1816 void vo_vm_switch(uint32_t X, uint32_t Y, int *modeline_width, |
1817 int *modeline_height) | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1818 { |
13828
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
1819 int vm_event, vm_error; |
b4ad5f0b550d
Fix erroneus extern declarations, fix wrong signedness of some vars
atmos4
parents:
13787
diff
changeset
|
1820 int vm_ver, vm_rev; |
12582 | 1821 int i, j, have_vm = 0; |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1822 |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1823 int modecount; |
12582 | 1824 |
1825 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error)) | |
1826 { | |
1827 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev); | |
18508 | 1828 mp_msg(MSGT_VO, MSGL_V, "XF86VidMode extension v%i.%i\n", vm_ver, |
12582 | 1829 vm_rev); |
1830 have_vm = 1; | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1831 } else |
12582 | 1832 mp_msg(MSGT_VO, MSGL_WARN, |
18508 | 1833 "XF86VidMode extension not available.\n"); |
12582 | 1834 |
1835 if (have_vm) | |
1836 { | |
1837 if (vidmodes == NULL) | |
1838 XF86VidModeGetAllModeLines(mDisplay, mScreen, &modecount, | |
1839 &vidmodes); | |
1840 j = 0; | |
1841 *modeline_width = vidmodes[0]->hdisplay; | |
1842 *modeline_height = vidmodes[0]->vdisplay; | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1843 |
12582 | 1844 for (i = 1; i < modecount; i++) |
1845 if ((vidmodes[i]->hdisplay >= X) | |
1846 && (vidmodes[i]->vdisplay >= Y)) | |
1847 if ((vidmodes[i]->hdisplay <= *modeline_width) | |
1848 && (vidmodes[i]->vdisplay <= *modeline_height)) | |
1849 { | |
1850 *modeline_width = vidmodes[i]->hdisplay; | |
1851 *modeline_height = vidmodes[i]->vdisplay; | |
1852 j = i; | |
1853 } | |
1854 | |
16793
8d4fb5469efb
Make a few more messages translatable by moving them into help_mp-en.h.
diego
parents:
16301
diff
changeset
|
1855 mp_msg(MSGT_VO, MSGL_INFO, MSGTR_SelectedVideoMode, |
12582 | 1856 *modeline_width, *modeline_height, X, Y); |
1857 XF86VidModeLockModeSwitch(mDisplay, mScreen, 0); | |
1858 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[j]); | |
1859 XF86VidModeSwitchToMode(mDisplay, mScreen, vidmodes[j]); | |
1860 X = (vo_screenwidth - *modeline_width) / 2; | |
1861 Y = (vo_screenheight - *modeline_height) / 2; | |
1862 XF86VidModeSetViewPort(mDisplay, mScreen, X, Y); | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1863 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1864 } |
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1865 |
12582 | 1866 void vo_vm_close(Display * dpy) |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1867 { |
12582 | 1868 #ifdef HAVE_NEW_GUI |
1869 if (vidmodes != NULL && vo_window != None) | |
1870 #else | |
1871 if (vidmodes != NULL) | |
1872 #endif | |
1873 { | |
1874 int i, modecount; | |
1875 int screen; | |
1876 | |
1877 screen = DefaultScreen(dpy); | |
5019 | 1878 |
12582 | 1879 free(vidmodes); |
1880 vidmodes = NULL; | |
1881 XF86VidModeGetAllModeLines(mDisplay, mScreen, &modecount, | |
1882 &vidmodes); | |
1883 for (i = 0; i < modecount; i++) | |
1884 if ((vidmodes[i]->hdisplay == vo_screenwidth) | |
1885 && (vidmodes[i]->vdisplay == vo_screenheight)) | |
1886 { | |
1887 mp_msg(MSGT_VO, MSGL_INFO, | |
1888 "Returning to original mode %dx%d\n", | |
1889 vo_screenwidth, vo_screenheight); | |
1890 break; | |
1891 } | |
5019 | 1892 |
12582 | 1893 XF86VidModeSwitchToMode(dpy, screen, vidmodes[i]); |
1894 XF86VidModeSwitchToMode(dpy, screen, vidmodes[i]); | |
1895 free(vidmodes); | |
1896 vidmodes = NULL; | |
1897 } | |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1898 } |
3990 | 1899 #endif |
4425
6144f63cbaa1
common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4181
diff
changeset
|
1900 |
12582 | 1901 #endif /* X11_FULLSCREEN */ |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1902 |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1903 |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1904 /* |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1905 * Scan the available visuals on this Display/Screen. Try to find |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1906 * the 'best' available TrueColor visual that has a decent color |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1907 * depth (at least 15bit). If there are multiple visuals with depth |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1908 * >= 15bit, we prefer visuals with a smaller color depth. |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1909 */ |
12582 | 1910 int vo_find_depth_from_visuals(Display * dpy, int screen, |
1911 Visual ** visual_return) | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1912 { |
12582 | 1913 XVisualInfo visual_tmpl; |
1914 XVisualInfo *visuals; | |
1915 int nvisuals, i; | |
1916 int bestvisual = -1; | |
1917 int bestvisual_depth = -1; | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1918 |
12582 | 1919 visual_tmpl.screen = screen; |
1920 visual_tmpl.class = TrueColor; | |
1921 visuals = XGetVisualInfo(dpy, | |
1922 VisualScreenMask | VisualClassMask, | |
1923 &visual_tmpl, &nvisuals); | |
1924 if (visuals != NULL) | |
1925 { | |
1926 for (i = 0; i < nvisuals; i++) | |
1927 { | |
1928 mp_msg(MSGT_VO, MSGL_V, | |
17366 | 1929 "vo: X11 truecolor visual %#lx, depth %d, R:%lX G:%lX B:%lX\n", |
12582 | 1930 visuals[i].visualid, visuals[i].depth, |
1931 visuals[i].red_mask, visuals[i].green_mask, | |
1932 visuals[i].blue_mask); | |
1933 /* | |
1934 * save the visual index and it's depth, if this is the first | |
1935 * truecolor visul, or a visual that is 'preferred' over the | |
1936 * previous 'best' visual | |
1937 */ | |
1938 if (bestvisual_depth == -1 | |
1939 || (visuals[i].depth >= 15 | |
1940 && (visuals[i].depth < bestvisual_depth | |
1941 || bestvisual_depth < 15))) | |
1942 { | |
1943 bestvisual = i; | |
1944 bestvisual_depth = visuals[i].depth; | |
1945 } | |
1946 } | |
1947 | |
1948 if (bestvisual != -1 && visual_return != NULL) | |
1949 *visual_return = visuals[bestvisual].visual; | |
1950 | |
1951 XFree(visuals); | |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1952 } |
12582 | 1953 return bestvisual_depth; |
7256
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1954 } |
ec6dd0a29d93
Add the code that chooses a good X11 truecolor visual to the vo_x11 config()
jkeil
parents:
7111
diff
changeset
|
1955 |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1956 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1957 static Colormap cmap = None; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1958 static XColor cols[256]; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1959 static int cm_size, red_mask, green_mask, blue_mask; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1960 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1961 |
12582 | 1962 Colormap vo_x11_create_colormap(XVisualInfo * vinfo) |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1963 { |
12582 | 1964 unsigned k, r, g, b, ru, gu, bu, m, rv, gv, bv, rvu, gvu, bvu; |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1965 |
12582 | 1966 if (vinfo->class != DirectColor) |
1967 return XCreateColormap(mDisplay, mRootWin, vinfo->visual, | |
1968 AllocNone); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
1969 |
12582 | 1970 /* can this function get called twice or more? */ |
1971 if (cmap) | |
1972 return cmap; | |
1973 cm_size = vinfo->colormap_size; | |
1974 red_mask = vinfo->red_mask; | |
1975 green_mask = vinfo->green_mask; | |
1976 blue_mask = vinfo->blue_mask; | |
1977 ru = (red_mask & (red_mask - 1)) ^ red_mask; | |
1978 gu = (green_mask & (green_mask - 1)) ^ green_mask; | |
1979 bu = (blue_mask & (blue_mask - 1)) ^ blue_mask; | |
1980 rvu = 65536ull * ru / (red_mask + ru); | |
1981 gvu = 65536ull * gu / (green_mask + gu); | |
1982 bvu = 65536ull * bu / (blue_mask + bu); | |
1983 r = g = b = 0; | |
1984 rv = gv = bv = 0; | |
1985 m = DoRed | DoGreen | DoBlue; | |
1986 for (k = 0; k < cm_size; k++) | |
1987 { | |
1988 int t; | |
1989 | |
1990 cols[k].pixel = r | g | b; | |
1991 cols[k].red = rv; | |
1992 cols[k].green = gv; | |
1993 cols[k].blue = bv; | |
1994 cols[k].flags = m; | |
1995 t = (r + ru) & red_mask; | |
1996 if (t < r) | |
1997 m &= ~DoRed; | |
1998 r = t; | |
1999 t = (g + gu) & green_mask; | |
2000 if (t < g) | |
2001 m &= ~DoGreen; | |
2002 g = t; | |
2003 t = (b + bu) & blue_mask; | |
2004 if (t < b) | |
2005 m &= ~DoBlue; | |
2006 b = t; | |
2007 rv += rvu; | |
2008 gv += gvu; | |
2009 bv += bvu; | |
2010 } | |
2011 cmap = XCreateColormap(mDisplay, mRootWin, vinfo->visual, AllocAll); | |
2012 XStoreColors(mDisplay, cmap, cols, cm_size); | |
2013 return cmap; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2014 } |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2015 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2016 /* |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2017 * Via colormaps/gamma ramps we can do gamma, brightness, contrast, |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2018 * hue and red/green/blue intensity, but we cannot do saturation. |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2019 * Currently only gamma, brightness and contrast are implemented. |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2020 * Is there sufficient interest for hue and/or red/green/blue intensity? |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2021 */ |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2022 /* these values have range [-100,100] and are initially 0 */ |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2023 static int vo_gamma = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2024 static int vo_brightness = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2025 static int vo_contrast = 0; |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2026 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2027 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2028 uint32_t vo_x11_set_equalizer(char *name, int value) |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2029 { |
12582 | 2030 float gamma, brightness, contrast; |
2031 float rf, gf, bf; | |
2032 int k; | |
2033 | |
2034 /* | |
2035 * IMPLEMENTME: consider using XF86VidModeSetGammaRamp in the case | |
2036 * of TrueColor-ed window but be careful: | |
2037 * unlike the colormaps, which are private for the X client | |
2038 * who created them and thus automatically destroyed on client | |
2039 * disconnect, this gamma ramp is a system-wide (X-server-wide) | |
2040 * setting and _must_ be restored before the process exit. | |
2041 * Unforunately when the process crashes (or get killed | |
2042 * for some reason) it is impossible to restore the setting, | |
2043 * and such behaviour could be rather annoying for the users. | |
2044 */ | |
2045 if (cmap == None) | |
2046 return VO_NOTAVAIL; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2047 |
12582 | 2048 if (!strcasecmp(name, "brightness")) |
2049 vo_brightness = value; | |
2050 else if (!strcasecmp(name, "contrast")) | |
2051 vo_contrast = value; | |
2052 else if (!strcasecmp(name, "gamma")) | |
2053 vo_gamma = value; | |
2054 else | |
2055 return VO_NOTIMPL; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2056 |
12582 | 2057 brightness = 0.01 * vo_brightness; |
2058 contrast = tan(0.0095 * (vo_contrast + 100) * M_PI / 4); | |
2059 gamma = pow(2, -0.02 * vo_gamma); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2060 |
12582 | 2061 rf = (float) ((red_mask & (red_mask - 1)) ^ red_mask) / red_mask; |
2062 gf = (float) ((green_mask & (green_mask - 1)) ^ green_mask) / | |
2063 green_mask; | |
2064 bf = (float) ((blue_mask & (blue_mask - 1)) ^ blue_mask) / blue_mask; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2065 |
12582 | 2066 /* now recalculate the colormap using the newly set value */ |
2067 for (k = 0; k < cm_size; k++) | |
2068 { | |
2069 float s; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2070 |
12582 | 2071 s = pow(rf * k, gamma); |
2072 s = (s - 0.5) * contrast + 0.5; | |
2073 s += brightness; | |
2074 if (s < 0) | |
2075 s = 0; | |
2076 if (s > 1) | |
2077 s = 1; | |
2078 cols[k].red = (unsigned short) (s * 65535); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2079 |
12582 | 2080 s = pow(gf * k, gamma); |
2081 s = (s - 0.5) * contrast + 0.5; | |
2082 s += brightness; | |
2083 if (s < 0) | |
2084 s = 0; | |
2085 if (s > 1) | |
2086 s = 1; | |
2087 cols[k].green = (unsigned short) (s * 65535); | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2088 |
12582 | 2089 s = pow(bf * k, gamma); |
2090 s = (s - 0.5) * contrast + 0.5; | |
2091 s += brightness; | |
2092 if (s < 0) | |
2093 s = 0; | |
2094 if (s > 1) | |
2095 s = 1; | |
2096 cols[k].blue = (unsigned short) (s * 65535); | |
2097 } | |
2098 | |
2099 XStoreColors(mDisplay, cmap, cols, cm_size); | |
2100 XFlush(mDisplay); | |
2101 return VO_TRUE; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2102 } |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2103 |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2104 uint32_t vo_x11_get_equalizer(char *name, int *value) |
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2105 { |
12582 | 2106 if (cmap == None) |
2107 return VO_NOTAVAIL; | |
2108 if (!strcasecmp(name, "brightness")) | |
2109 *value = vo_brightness; | |
2110 else if (!strcasecmp(name, "contrast")) | |
2111 *value = vo_contrast; | |
2112 else if (!strcasecmp(name, "gamma")) | |
2113 *value = vo_gamma; | |
2114 else | |
2115 return VO_NOTIMPL; | |
2116 return VO_TRUE; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2117 } |
12582 | 2118 |
10359 | 2119 #ifdef HAVE_XV |
2120 int vo_xv_set_eq(uint32_t xv_port, char *name, int value) | |
2121 { | |
2122 XvAttribute *attributes; | |
12582 | 2123 int i, howmany, xv_atom; |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2124 |
10359 | 2125 mp_dbg(MSGT_VO, MSGL_V, "xv_set_eq called! (%s, %d)\n", name, value); |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7766
diff
changeset
|
2126 |
10359 | 2127 /* get available attributes */ |
2128 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); | |
2129 for (i = 0; i < howmany && attributes; i++) | |
12582 | 2130 if (attributes[i].flags & XvSettable) |
2131 { | |
2132 xv_atom = XInternAtom(mDisplay, attributes[i].name, True); | |
10359 | 2133 /* since we have SET_DEFAULTS first in our list, we can check if it's available |
2134 then trigger it if it's ok so that the other values are at default upon query */ | |
12582 | 2135 if (xv_atom != None) |
2136 { | |
2137 int hue = 0, port_value, port_min, port_max; | |
10359 | 2138 |
12582 | 2139 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") && |
2140 (!strcasecmp(name, "brightness"))) | |
2141 port_value = value; | |
2142 else if (!strcmp(attributes[i].name, "XV_CONTRAST") && | |
2143 (!strcasecmp(name, "contrast"))) | |
2144 port_value = value; | |
2145 else if (!strcmp(attributes[i].name, "XV_SATURATION") && | |
2146 (!strcasecmp(name, "saturation"))) | |
2147 port_value = value; | |
2148 else if (!strcmp(attributes[i].name, "XV_HUE") && | |
2149 (!strcasecmp(name, "hue"))) | |
2150 { | |
2151 port_value = value; | |
2152 hue = 1; | |
2153 } else | |
10359 | 2154 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ |
12582 | 2155 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") && |
2156 (!strcasecmp(name, "red_intensity"))) | |
2157 port_value = value; | |
2158 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY") | |
2159 && (!strcasecmp(name, "green_intensity"))) | |
2160 port_value = value; | |
2161 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY") | |
2162 && (!strcasecmp(name, "blue_intensity"))) | |
2163 port_value = value; | |
2164 else | |
2165 continue; | |
2166 | |
2167 port_min = attributes[i].min_value; | |
2168 port_max = attributes[i].max_value; | |
10359 | 2169 |
12582 | 2170 /* nvidia hue workaround */ |
2171 if (hue && port_min == 0 && port_max == 360) | |
2172 { | |
2173 port_value = | |
2174 (port_value >= | |
2175 0) ? (port_value - 100) : (port_value + 100); | |
10359 | 2176 } |
12582 | 2177 // -100 -> min |
2178 // 0 -> (max+min)/2 | |
2179 // +100 -> max | |
2180 port_value = | |
2181 (port_value + 100) * (port_max - port_min) / 200 + | |
2182 port_min; | |
2183 XvSetPortAttribute(mDisplay, xv_port, xv_atom, port_value); | |
2184 return (VO_TRUE); | |
2185 } | |
2186 } | |
2187 return (VO_FALSE); | |
10359 | 2188 } |
2189 | |
2190 int vo_xv_get_eq(uint32_t xv_port, char *name, int *value) | |
2191 { | |
12582 | 2192 |
10359 | 2193 XvAttribute *attributes; |
12582 | 2194 int i, howmany, xv_atom; |
10359 | 2195 |
2196 /* get available attributes */ | |
2197 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); | |
2198 for (i = 0; i < howmany && attributes; i++) | |
12582 | 2199 if (attributes[i].flags & XvGettable) |
2200 { | |
2201 xv_atom = XInternAtom(mDisplay, attributes[i].name, True); | |
10359 | 2202 /* since we have SET_DEFAULTS first in our list, we can check if it's available |
2203 then trigger it if it's ok so that the other values are at default upon query */ | |
12582 | 2204 if (xv_atom != None) |
2205 { | |
2206 int val, port_value = 0, port_min, port_max; | |
10359 | 2207 |
12582 | 2208 XvGetPortAttribute(mDisplay, xv_port, xv_atom, |
2209 &port_value); | |
2210 | |
2211 port_min = attributes[i].min_value; | |
2212 port_max = attributes[i].max_value; | |
2213 val = | |
2214 (port_value - port_min) * 200 / (port_max - port_min) - | |
2215 100; | |
10359 | 2216 |
12582 | 2217 if (!strcmp(attributes[i].name, "XV_BRIGHTNESS") && |
2218 (!strcasecmp(name, "brightness"))) | |
2219 *value = val; | |
2220 else if (!strcmp(attributes[i].name, "XV_CONTRAST") && | |
2221 (!strcasecmp(name, "contrast"))) | |
2222 *value = val; | |
2223 else if (!strcmp(attributes[i].name, "XV_SATURATION") && | |
2224 (!strcasecmp(name, "saturation"))) | |
2225 *value = val; | |
2226 else if (!strcmp(attributes[i].name, "XV_HUE") && | |
2227 (!strcasecmp(name, "hue"))) | |
2228 { | |
2229 /* nasty nvidia detect */ | |
2230 if (port_min == 0 && port_max == 360) | |
2231 *value = (val >= 0) ? (val - 100) : (val + 100); | |
2232 else | |
2233 *value = val; | |
2234 } else | |
10359 | 2235 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ |
12582 | 2236 if (!strcmp(attributes[i].name, "XV_RED_INTENSITY") && |
2237 (!strcasecmp(name, "red_intensity"))) | |
2238 *value = val; | |
2239 else if (!strcmp(attributes[i].name, "XV_GREEN_INTENSITY") | |
2240 && (!strcasecmp(name, "green_intensity"))) | |
2241 *value = val; | |
2242 else if (!strcmp(attributes[i].name, "XV_BLUE_INTENSITY") | |
2243 && (!strcasecmp(name, "blue_intensity"))) | |
2244 *value = val; | |
2245 else | |
2246 continue; | |
10359 | 2247 |
12582 | 2248 mp_dbg(MSGT_VO, MSGL_V, "xv_get_eq called! (%s, %d)\n", |
2249 name, *value); | |
2250 return (VO_TRUE); | |
2251 } | |
2252 } | |
2253 return (VO_FALSE); | |
10359 | 2254 } |
2255 | |
14742 | 2256 /** \brief contains flags changing the execution of the colorkeying code */ |
2257 xv_ck_info_t xv_ck_info = { CK_METHOD_MANUALFILL, CK_SRC_CUR }; | |
2258 unsigned long xv_colorkey; ///< The color used for manual colorkeying. | |
2259 unsigned int xv_port; ///< The selected Xv port. | |
2260 | |
2261 /** | |
2262 * \brief Interns the requested atom if it is available. | |
2263 * | |
2264 * \param atom_name String containing the name of the requested atom. | |
2265 * | |
2266 * \return Returns the atom if available, else None is returned. | |
2267 * | |
2268 */ | |
2269 static Atom xv_intern_atom_if_exists( char const * atom_name ) | |
2270 { | |
2271 XvAttribute * attributes; | |
2272 int attrib_count,i; | |
2273 Atom xv_atom = None; | |
2274 | |
2275 attributes = XvQueryPortAttributes( mDisplay, xv_port, &attrib_count ); | |
2276 if( attributes!=NULL ) | |
2277 { | |
2278 for ( i = 0; i < attrib_count; ++i ) | |
2279 { | |
2280 if ( strcmp(attributes[i].name, atom_name ) == 0 ) | |
2281 { | |
2282 xv_atom = XInternAtom( mDisplay, atom_name, False ); | |
2283 break; // found what we want, break out | |
2284 } | |
2285 } | |
2286 XFree( attributes ); | |
2287 } | |
2288 | |
2289 return xv_atom; | |
2290 } | |
15826
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2291 |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2292 /** |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2293 * \brief Try to enable vsync for xv. |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2294 * \return Returns -1 if not available, 0 on failure and 1 on success. |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2295 */ |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2296 int vo_xv_enable_vsync() |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2297 { |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2298 Atom xv_atom = xv_intern_atom_if_exists("XV_SYNC_TO_VBLANK"); |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2299 if (xv_atom == None) |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2300 return -1; |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2301 return XvSetPortAttribute(mDisplay, xv_port, xv_atom, 1) == Success; |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2302 } |
db966bdf6f5b
Try to set XV_SYNC_TO_VBLANK to enable vsync on non-overlay xv adapters.
reimar
parents:
15789
diff
changeset
|
2303 |
14742 | 2304 /** |
16958 | 2305 * \brief Get maximum supported source image dimensions. |
2306 * | |
2307 * This function does not set the variables pointed to by | |
2308 * width and height if the information could not be retreived. | |
2309 * So the caller is reponsible for initing them properly. | |
2310 * | |
2311 * \param width [out] The maximum width gets stored here. | |
2312 * \param height [out] The maximum height gets stored here. | |
2313 * | |
2314 */ | |
2315 void vo_xv_get_max_img_dim( uint32_t * width, uint32_t * height ) | |
2316 { | |
2317 XvEncodingInfo * encodings; | |
2318 //unsigned long num_encodings, idx; to int or too long?! | |
2319 unsigned int num_encodings, idx; | |
2320 | |
2321 XvQueryEncodings( mDisplay, xv_port, &num_encodings, &encodings); | |
2322 | |
2323 if ( encodings ) | |
2324 { | |
2325 for ( idx = 0; idx < num_encodings; ++idx ) | |
2326 { | |
2327 if ( strcmp( encodings[idx].name, "XV_IMAGE" ) == 0 ) | |
2328 { | |
2329 *width = encodings[idx].width; | |
2330 *height = encodings[idx].height; | |
2331 break; | |
2332 } | |
2333 } | |
2334 } | |
2335 | |
2336 mp_msg( MSGT_VO, MSGL_V, | |
2337 "[xv common] Maximum source image dimensions: %ux%u\n", | |
2338 *width, *height ); | |
2339 | |
2340 XvFreeEncodingInfo( encodings ); | |
2341 } | |
2342 | |
2343 /** | |
14742 | 2344 * \brief Print information about the colorkey method and source. |
2345 * | |
2346 * \param ck_handling Integer value containing the information about | |
2347 * colorkey handling (see x11_common.h). | |
2348 * | |
2349 * Outputs the content of |ck_handling| as a readable message. | |
2350 * | |
2351 */ | |
2352 void vo_xv_print_ck_info() | |
2353 { | |
2354 mp_msg( MSGT_VO, MSGL_V, "[xv common] " ); | |
2355 | |
2356 switch ( xv_ck_info.method ) | |
2357 { | |
2358 case CK_METHOD_NONE: | |
2359 mp_msg( MSGT_VO, MSGL_V, "Drawing no colorkey.\n" ); return; | |
2360 case CK_METHOD_AUTOPAINT: | |
2361 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn by Xv." ); break; | |
2362 case CK_METHOD_MANUALFILL: | |
2363 mp_msg( MSGT_VO, MSGL_V, "Drawing colorkey manually." ); break; | |
2364 case CK_METHOD_BACKGROUND: | |
2365 mp_msg( MSGT_VO, MSGL_V, "Colorkey is drawn as window background." ); break; | |
2366 } | |
2367 | |
2368 mp_msg( MSGT_VO, MSGL_V, "\n[xv common] " ); | |
2369 | |
2370 switch ( xv_ck_info.source ) | |
2371 { | |
2372 case CK_SRC_CUR: | |
17366 | 2373 mp_msg( MSGT_VO, MSGL_V, "Using colorkey from Xv (0x%06lx).\n", |
14742 | 2374 xv_colorkey ); |
2375 break; | |
2376 case CK_SRC_USE: | |
2377 if ( xv_ck_info.method == CK_METHOD_AUTOPAINT ) | |
2378 { | |
2379 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2380 "Ignoring colorkey from MPlayer (0x%06lx).\n", |
14742 | 2381 xv_colorkey ); |
2382 } | |
2383 else | |
2384 { | |
2385 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2386 "Using colorkey from MPlayer (0x%06lx)." |
14742 | 2387 " Use -colorkey to change.\n", |
2388 xv_colorkey ); | |
2389 } | |
2390 break; | |
2391 case CK_SRC_SET: | |
2392 mp_msg( MSGT_VO, MSGL_V, | |
17366 | 2393 "Setting and using colorkey from MPlayer (0x%06lx)." |
14742 | 2394 " Use -colorkey to change.\n", |
2395 xv_colorkey ); | |
2396 break; | |
2397 } | |
2398 } | |
2399 /** | |
2400 * \brief Init colorkey depending on the settings in xv_ck_info. | |
2401 * | |
2402 * \return Returns 0 on failure and 1 on success. | |
2403 * | |
2404 * Sets the colorkey variable according to the CK_SRC_* and CK_METHOD_* | |
2405 * flags in xv_ck_info. | |
2406 * | |
2407 * Possiblilities: | |
2408 * * Methods | |
2409 * - manual colorkey drawing ( CK_METHOD_MANUALFILL ) | |
2410 * - set colorkey as window background ( CK_METHOD_BACKGROUND ) | |
2411 * - let Xv paint the colorkey ( CK_METHOD_AUTOPAINT ) | |
2412 * * Sources | |
2413 * - use currently set colorkey ( CK_SRC_CUR ) | |
2414 * - use colorkey in vo_colorkey ( CK_SRC_USE ) | |
2415 * - use and set colorkey in vo_colorkey ( CK_SRC_SET ) | |
2416 * | |
2417 * NOTE: If vo_colorkey has bits set after the first 3 low order bytes | |
2418 * we don't draw anything as this means it was forced to off. | |
2419 */ | |
2420 int vo_xv_init_colorkey() | |
2421 { | |
2422 Atom xv_atom; | |
2423 int rez; | |
2424 | |
2425 /* check if colorkeying is needed */ | |
2426 xv_atom = xv_intern_atom_if_exists( "XV_COLORKEY" ); | |
2427 | |
2428 /* if we have to deal with colorkeying ... */ | |
2429 if( xv_atom != None && !(vo_colorkey & 0xFF000000) ) | |
2430 { | |
2431 /* check if we should use the colorkey specified in vo_colorkey */ | |
2432 if ( xv_ck_info.source != CK_SRC_CUR ) | |
2433 { | |
2434 xv_colorkey = vo_colorkey; | |
2435 | |
2436 /* check if we have to set the colorkey too */ | |
2437 if ( xv_ck_info.source == CK_SRC_SET ) | |
2438 { | |
2439 xv_atom = XInternAtom(mDisplay, "XV_COLORKEY",False); | |
2440 | |
2441 rez = XvSetPortAttribute( mDisplay, xv_port, xv_atom, vo_colorkey ); | |
2442 if ( rez != Success ) | |
2443 { | |
2444 mp_msg( MSGT_VO, MSGL_FATAL, | |
2445 "[xv common] Couldn't set colorkey!\n" ); | |
2446 return 0; // error setting colorkey | |
2447 } | |
2448 } | |
2449 } | |
2450 else | |
2451 { | |
2452 int colorkey_ret; | |
2453 | |
2454 rez=XvGetPortAttribute(mDisplay,xv_port, xv_atom, &colorkey_ret); | |
2455 if ( rez == Success ) | |
2456 { | |
2457 xv_colorkey = colorkey_ret; | |
2458 } | |
2459 else | |
2460 { | |
2461 mp_msg( MSGT_VO, MSGL_FATAL, | |
2462 "[xv common] Couldn't get colorkey!" | |
2463 "Maybe the selected Xv port has no overlay.\n" ); | |
2464 return 0; // error getting colorkey | |
2465 } | |
2466 } | |
2467 | |
15186 | 2468 xv_atom = xv_intern_atom_if_exists( "XV_AUTOPAINT_COLORKEY" ); |
2469 | |
14742 | 2470 /* should we draw the colorkey ourselves or activate autopainting? */ |
2471 if ( xv_ck_info.method == CK_METHOD_AUTOPAINT ) | |
2472 { | |
2473 rez = !Success; // reset rez to something different than Success | |
2474 | |
2475 if ( xv_atom != None ) // autopaint is supported | |
2476 { | |
2477 rez = XvSetPortAttribute( mDisplay, xv_port, xv_atom, 1 ); | |
2478 } | |
2479 | |
2480 if ( rez != Success ) | |
2481 { | |
2482 // fallback to manual colorkey drawing | |
2483 xv_ck_info.method = CK_METHOD_MANUALFILL; | |
2484 } | |
2485 } | |
15186 | 2486 else // disable colorkey autopainting if supported |
2487 { | |
2488 if ( xv_atom != None ) // we have autopaint attribute | |
2489 { | |
2490 XvSetPortAttribute( mDisplay, xv_port, xv_atom, 0 ); | |
2491 } | |
2492 } | |
14742 | 2493 } |
2494 else // do no colorkey drawing at all | |
2495 { | |
2496 xv_ck_info.method = CK_METHOD_NONE; | |
2497 } /* end: should we draw colorkey */ | |
2498 | |
2499 /* output information about the curren colorkey settings */ | |
2500 vo_xv_print_ck_info(); | |
2501 | |
2502 return 1; // success | |
2503 } | |
2504 | |
2505 /** | |
2506 * \brief Draw the colorkey on the video window. | |
2507 * | |
2508 * Draws the colorkey depending on the set method ( colorkey_handling ). | |
2509 * | |
2510 * It also draws the black bars ( when the video doesn't fit to the | |
2511 * display in full screen ) seperately, so they don't overlap with the | |
2512 * video area. | |
15100 | 2513 * It doesn't call XFlush |
14742 | 2514 * |
2515 */ | |
15100 | 2516 inline void vo_xv_draw_colorkey( int32_t x, int32_t y, |
2517 int32_t w, int32_t h ) | |
14742 | 2518 { |
15100 | 2519 if( xv_ck_info.method == CK_METHOD_MANUALFILL || |
2520 xv_ck_info.method == CK_METHOD_BACKGROUND )//less tearing than XClearWindow() | |
14742 | 2521 { |
2522 XSetForeground( mDisplay, vo_gc, xv_colorkey ); | |
2523 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2524 x, y, | |
2525 w, h ); | |
2526 } | |
2527 | |
2528 /* draw black bars if needed */ | |
15100 | 2529 /* TODO! move this to vo_x11_clearwindow_part() */ |
14742 | 2530 if ( vo_fs ) |
2531 { | |
2532 XSetForeground( mDisplay, vo_gc, 0 ); | |
15100 | 2533 /* making non overlap fills, requiare 8 checks instead of 4*/ |
14742 | 2534 if ( y > 0 ) |
2535 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2536 0, 0, | |
2537 vo_screenwidth, y); | |
2538 if (x > 0) | |
2539 XFillRectangle( mDisplay, vo_window, vo_gc, | |
15100 | 2540 0, 0, |
2541 x, vo_screenheight); | |
14742 | 2542 if (x + w < vo_screenwidth) |
2543 XFillRectangle( mDisplay, vo_window, vo_gc, | |
15100 | 2544 x + w, 0, |
2545 vo_screenwidth, vo_screenheight); | |
14742 | 2546 if (y + h < vo_screenheight) |
2547 XFillRectangle( mDisplay, vo_window, vo_gc, | |
2548 0, y + h, | |
15100 | 2549 vo_screenwidth, vo_screenheight); |
14742 | 2550 } |
2551 } | |
2552 | |
2553 /** \brief tests if a valid arg for the ck suboption was given */ | |
2554 int xv_test_ck( void * arg ) | |
2555 { | |
2556 strarg_t * strarg = (strarg_t *)arg; | |
2557 | |
15734
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2558 if ( strargcmp( strarg, "use" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2559 strargcmp( strarg, "set" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2560 strargcmp( strarg, "cur" ) == 0 ) |
14742 | 2561 { |
2562 return 1; | |
2563 } | |
2564 | |
2565 return 0; | |
2566 } | |
2567 /** \brief tests if a valid arg for the ck-method suboption was given */ | |
2568 int xv_test_ckm( void * arg ) | |
2569 { | |
2570 strarg_t * strarg = (strarg_t *)arg; | |
2571 | |
15734
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2572 if ( strargcmp( strarg, "bg" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2573 strargcmp( strarg, "man" ) == 0 || |
7e4fa8fc255c
helper functions for comparing strarg_t "strings".
reimar
parents:
15186
diff
changeset
|
2574 strargcmp( strarg, "auto" ) == 0 ) |
14742 | 2575 { |
2576 return 1; | |
2577 } | |
2578 | |
2579 return 0; | |
2580 } | |
2581 | |
2582 /** | |
2583 * \brief Modify the colorkey_handling var according to str | |
2584 * | |
2585 * Checks if a valid pointer ( not NULL ) to the string | |
2586 * was given. And in that case modifies the colorkey_handling | |
2587 * var to reflect the requested behaviour. | |
2588 * If nothing happens the content of colorkey_handling stays | |
2589 * the same. | |
2590 * | |
2591 * \param str Pointer to the string or NULL | |
2592 * | |
2593 */ | |
2594 void xv_setup_colorkeyhandling( char const * ck_method_str, | |
2595 char const * ck_str ) | |
2596 { | |
2597 /* check if a valid pointer to the string was passed */ | |
2598 if ( ck_str ) | |
2599 { | |
2600 if ( strncmp( ck_str, "use", 3 ) == 0 ) | |
2601 { | |
2602 xv_ck_info.source = CK_SRC_USE; | |
2603 } | |
2604 else if ( strncmp( ck_str, "set", 3 ) == 0 ) | |
2605 { | |
2606 xv_ck_info.source = CK_SRC_SET; | |
2607 } | |
2608 } | |
2609 /* check if a valid pointer to the string was passed */ | |
2610 if ( ck_method_str ) | |
2611 { | |
2612 if ( strncmp( ck_method_str, "bg", 2 ) == 0 ) | |
2613 { | |
2614 xv_ck_info.method = CK_METHOD_BACKGROUND; | |
2615 } | |
2616 else if ( strncmp( ck_method_str, "man", 3 ) == 0 ) | |
2617 { | |
2618 xv_ck_info.method = CK_METHOD_MANUALFILL; | |
2619 } | |
2620 else if ( strncmp( ck_method_str, "auto", 4 ) == 0 ) | |
2621 { | |
2622 xv_ck_info.method = CK_METHOD_AUTOPAINT; | |
2623 } | |
2624 } | |
2625 } | |
2626 | |
10359 | 2627 #endif |