Mercurial > mplayer.hg
annotate libvo/vo_xvidix.c @ 22556:e34fa903c6d7
Remove superfluous rule and variable.
author | diego |
---|---|
date | Wed, 14 Mar 2007 20:06:06 +0000 |
parents | d0b60d14d8d7 |
children | 17bf4f4b0715 |
rev | line source |
---|---|
4123 | 1 /* |
2 VIDIX accelerated overlay in a X window | |
3 | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
4 (C) Alex Beregszaszi & Zoltan Ponekker & Nick Kurshev |
4123 | 5 |
6 WS window manager by Pontscho/Fresh! | |
7 | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
8 Based on vo_gl.c and vo_vesa.c and vo_xmga.c (.so mastah! ;)) |
4123 | 9 */ |
10 | |
11 #include <stdio.h> | |
12 #include <stdlib.h> | |
13 #include <string.h> | |
14 #include <math.h> | |
15 #include <errno.h> | |
16 | |
17 #include "config.h" | |
18 #include "video_out.h" | |
19 #include "video_out_internal.h" | |
20 | |
21 #include <X11/Xlib.h> | |
22 #include <X11/Xutil.h> | |
23 //#include <X11/keysym.h> | |
24 | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
25 #ifdef HAVE_XINERAMA |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
26 #include <X11/extensions/Xinerama.h> |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
27 #endif |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
28 |
4123 | 29 #include "x11_common.h" |
30 #include "aspect.h" | |
31 #include "mp_msg.h" | |
32 | |
33 #include "vosub_vidix.h" | |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
13056
diff
changeset
|
34 #include "vidix/vidixlib.h" |
4123 | 35 |
6009 | 36 #ifdef HAVE_NEW_GUI |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
13056
diff
changeset
|
37 #include "Gui/interface.h" |
6009 | 38 #endif |
39 | |
4123 | 40 |
12582 | 41 static vo_info_t info = { |
4123 | 42 "X11 (VIDIX)", |
43 "xvidix", | |
44 "Alex Beregszaszi", | |
45 "" | |
46 }; | |
47 | |
8148
5b39e79af5fe
removed get_info, using the same sheme as in libmpcodecs instead
alex
parents:
8123
diff
changeset
|
48 LIBVO_EXTERN(xvidix) |
12582 | 49 #define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */ |
4123 | 50 /* X11 related variables */ |
4363 | 51 /* Colorkey handling */ |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
52 static XGCValues mGCV; |
10988 | 53 static int colorkey; |
4363 | 54 static vidix_grkey_t gr_key; |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
55 |
4363 | 56 /* VIDIX related */ |
57 static char *vidix_name; | |
4123 | 58 |
59 /* Image parameters */ | |
60 static uint32_t image_width; | |
61 static uint32_t image_height; | |
62 static uint32_t image_format; | |
63 | |
64 /* Window parameters */ | |
6299
4446af3c1a75
set_window() fixing detection of changement of the window position
attila
parents:
6095
diff
changeset
|
65 static uint32_t window_x, window_y; |
4123 | 66 static uint32_t window_width, window_height; |
67 | |
4363 | 68 /* used by XGetGeometry & XTranslateCoordinates for moving/resizing window */ |
4123 | 69 static uint32_t drwX, drwY, drwWidth, drwHeight, drwBorderWidth, |
4981 | 70 drwDepth, drwcX, drwcY, dwidth, dheight; |
4123 | 71 |
12582 | 72 extern void set_video_eq(int cap); |
6755 | 73 |
8991 | 74 #ifdef HAVE_XINERAMA |
75 extern int xinerama_screen; | |
76 #endif | |
77 | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
6953
diff
changeset
|
78 static void set_window(int force_update) |
4123 | 79 { |
6095 | 80 Window mRoot; |
12582 | 81 |
82 if (WinID) | |
83 { | |
84 XGetGeometry(mDisplay, vo_window, &mRoot, &drwX, &drwY, &drwWidth, | |
85 &drwHeight, &drwBorderWidth, &drwDepth); | |
86 drwX = drwY = 0; | |
6307 | 87 |
12582 | 88 XTranslateCoordinates(mDisplay, vo_window, mRoot, 0, 0, |
89 &drwcX, &drwcY, &mRoot); | |
90 aspect(&dwidth, &dheight, A_NOZOOM); | |
91 if (!vo_fs) | |
92 mp_msg(MSGT_VO, MSGL_V, | |
93 "[xvidix] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n", | |
94 drwcX, drwcY, drwX, drwY, drwWidth, drwHeight); | |
4123 | 95 |
12582 | 96 /* following stuff copied from vo_xmga.c */ |
97 } else | |
98 { | |
99 aspect(&dwidth, &dheight, A_NOZOOM); | |
100 drwcX = drwX = vo_dx; | |
101 drwcY = drwY = vo_dy; | |
102 drwWidth = vo_dwidth; | |
103 drwHeight = vo_dheight; | |
104 } | |
6043 | 105 |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
106 #if X11_FULLSCREEN |
4981 | 107 if (vo_fs) |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
108 { |
12582 | 109 aspect(&dwidth, &dheight, A_ZOOM); |
110 drwX = | |
111 (vo_screenwidth - | |
112 (dwidth > vo_screenwidth ? vo_screenwidth : dwidth)) / 2; | |
113 drwcX = drwX; | |
114 drwY = | |
115 (vo_screenheight - | |
116 (dheight > vo_screenheight ? vo_screenheight : dheight)) / 2; | |
117 drwcY = drwY; | |
118 drwWidth = (dwidth > vo_screenwidth ? vo_screenwidth : dwidth); | |
119 drwHeight = | |
120 (dheight > vo_screenheight ? vo_screenheight : dheight); | |
121 mp_msg(MSGT_VO, MSGL_V, | |
122 "[xvidix-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n", | |
123 drwcX, drwcY, drwX, drwY, drwWidth, drwHeight); | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
124 } |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
125 #endif |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
126 |
12582 | 127 vo_dwidth = drwWidth; |
128 vo_dheight = drwHeight; | |
6307 | 129 |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
130 #ifdef HAVE_XINERAMA |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
131 if (XineramaIsActive(mDisplay)) |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
132 { |
12582 | 133 XineramaScreenInfo *screens; |
134 int num_screens; | |
135 int i = 0; | |
136 | |
137 screens = XineramaQueryScreens(mDisplay, &num_screens); | |
138 | |
139 /* find the screen we are on */ | |
140 while (i < num_screens && | |
141 ((screens[i].x_org < drwcX) || (screens[i].y_org < drwcY) || | |
142 (screens[i].x_org + screens[i].width >= drwcX) || | |
143 (screens[i].y_org + screens[i].height >= drwcY))) | |
144 { | |
145 i++; | |
146 } | |
8991 | 147 |
12582 | 148 if (i < num_screens) |
149 { | |
150 /* save the screen we are on */ | |
151 xinerama_screen = i; | |
152 } else | |
153 { | |
154 /* oops.. couldnt find the screen we are on | |
155 * because the upper left corner left the | |
156 * visual range. assume we are still on the | |
157 * same screen | |
158 */ | |
159 i = xinerama_screen; | |
160 } | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
161 |
12582 | 162 /* set drwcX and drwcY to the right values */ |
163 drwcX = drwcX - screens[i].x_org; | |
164 drwcY = drwcY - screens[i].y_org; | |
165 XFree(screens); | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
166 } |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
167 #endif |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
168 |
12582 | 169 if (vo_panscan > 0.0f && vo_fs) |
170 { | |
171 drwcX -= vo_panscan_x >> 1; | |
172 drwcY -= vo_panscan_y >> 1; | |
173 drwX -= vo_panscan_x >> 1; | |
174 drwY -= vo_panscan_y >> 1; | |
175 drwWidth += vo_panscan_x; | |
176 drwHeight += vo_panscan_y; | |
177 } | |
6307 | 178 |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
179 /* set new values in VIDIX */ |
6299
4446af3c1a75
set_window() fixing detection of changement of the window position
attila
parents:
6095
diff
changeset
|
180 if (force_update || (window_x != drwcX) || (window_y != drwcY) || |
12582 | 181 (window_width != drwWidth) || (window_height != drwHeight)) |
4123 | 182 { |
12582 | 183 // do a backup of window coordinates |
184 window_x = drwcX; | |
185 window_y = drwcY; | |
186 vo_dx = drwcX; | |
187 vo_dy = drwcY; | |
188 window_width = drwWidth; | |
189 window_height = drwHeight; | |
4198
7e2bf04c9a7c
added vidix_start() and vidix_stop() for better runtime-resize support ;)
alex
parents:
4194
diff
changeset
|
190 |
12582 | 191 /* FIXME: implement runtime resize/move if possible, this way is very ugly! */ |
192 vidix_stop(); | |
193 if (vidix_init(image_width, image_height, vo_dx, vo_dy, | |
194 window_width, window_height, image_format, | |
195 vo_depthonscreen, vo_screenwidth, | |
196 vo_screenheight) != 0) | |
4123 | 197 { |
12582 | 198 mp_msg(MSGT_VO, MSGL_FATAL, |
199 "Can't initialize VIDIX driver: %s\n", strerror(errno)); | |
200 abort(); | |
201 } | |
202 vidix_start(); | |
4123 | 203 } |
12582 | 204 |
205 mp_msg(MSGT_VO, MSGL_V, | |
206 "[xvidix] window properties: pos: %dx%d, size: %dx%d\n", vo_dx, | |
207 vo_dy, window_width, window_height); | |
4123 | 208 |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
209 /* mDrawColorKey: */ |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
210 |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
211 /* fill drawable with specified color */ |
11216 | 212 if (!(vo_colorkey & 0xff000000)) |
11158
85f4534d1edb
Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents:
10988
diff
changeset
|
213 { |
12582 | 214 XSetBackground(mDisplay, vo_gc, 0L); |
215 XClearWindow(mDisplay, vo_window); | |
216 XSetForeground(mDisplay, vo_gc, colorkey); | |
217 XFillRectangle(mDisplay, vo_window, vo_gc, drwX, drwY, drwWidth, | |
218 (vo_fs ? drwHeight - 1 : drwHeight)); | |
11158
85f4534d1edb
Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents:
10988
diff
changeset
|
219 } |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
220 /* flush, update drawable */ |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
221 XFlush(mDisplay); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
222 |
4123 | 223 return; |
224 } | |
225 | |
226 /* connect to server, create and map window, | |
227 * allocate colors and (shared) memory | |
228 */ | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
229 static int config(uint32_t width, uint32_t height, uint32_t d_width, |
12582 | 230 uint32_t d_height, uint32_t flags, char *title, |
231 uint32_t format) | |
4123 | 232 { |
233 XVisualInfo vinfo; | |
12582 | 234 |
8123
9fc45fe0d444
*HUGE* set of compiler warning fixes, unused variables removal
arpi
parents:
7931
diff
changeset
|
235 // XSizeHints hint; |
4123 | 236 XSetWindowAttributes xswa; |
237 unsigned long xswamask; | |
238 XWindowAttributes attribs; | |
10988 | 239 int window_depth, r, g, b; |
4125 | 240 |
5738 | 241 title = "MPlayer VIDIX X11 Overlay"; |
4123 | 242 |
243 image_height = height; | |
244 image_width = width; | |
245 image_format = format; | |
12582 | 246 vo_mouse_autohide = 1; |
4459 | 247 |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
248 window_width = d_width; |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
249 window_height = d_height; |
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
250 |
6009 | 251 // vo_fs = flags&0x01; |
252 // if (vo_fs) | |
253 // { vo_old_width=d_width; vo_old_height=d_height; } | |
4123 | 254 |
10988 | 255 r = (vo_colorkey & 0x00ff0000) >> 16; |
256 g = (vo_colorkey & 0x0000ff00) >> 8; | |
257 b = vo_colorkey & 0x000000ff; | |
12582 | 258 switch (vo_depthonscreen) |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
259 { |
12582 | 260 case 32: |
261 colorkey = vo_colorkey; | |
262 break; | |
263 case 24: | |
264 colorkey = vo_colorkey & 0x00ffffff; | |
265 break; | |
266 case 16: | |
267 colorkey = ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); | |
268 break; | |
269 case 15: | |
270 colorkey = ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3); | |
271 break; | |
272 default: | |
273 mp_msg(MSGT_VO, MSGL_ERR, | |
274 "Sorry, this (%d) color depth is not supported\n", | |
275 vo_depthonscreen); | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
276 } |
13946 | 277 mp_msg(MSGT_VO, MSGL_V, "Using colorkey: %x\n", colorkey); |
4123 | 278 |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
279 #ifdef HAVE_NEW_GUI |
12582 | 280 if (use_gui) |
281 guiGetEvent(guiSetShVideo, 0); // the GUI will set up / resize the window | |
282 else | |
283 { | |
4123 | 284 #endif |
285 | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
286 #ifdef X11_FULLSCREEN |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13946
diff
changeset
|
287 if ((flags & VOFLAG_FULLSCREEN) || (flags & VOFLAG_SWSCALE)) |
12582 | 288 aspect(&d_width, &d_height, A_ZOOM); |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
289 #endif |
12582 | 290 dwidth = d_width; |
291 dheight = d_height; | |
292 /* Make the window */ | |
293 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), | |
294 &attribs); | |
4123 | 295 |
12582 | 296 /* from vo_x11 */ |
297 window_depth = attribs.depth; | |
298 if ((window_depth != 15) && (window_depth != 16) | |
299 && (window_depth != 24) && (window_depth != 32)) | |
300 window_depth = 24; | |
301 XMatchVisualInfo(mDisplay, mScreen, window_depth, TrueColor, | |
302 &vinfo); | |
4123 | 303 |
12582 | 304 xswa.background_pixel = BlackPixel(mDisplay, mScreen); |
305 xswa.border_pixel = 0; | |
306 xswa.colormap = | |
307 XCreateColormap(mDisplay, RootWindow(mDisplay, mScreen), | |
308 vinfo.visual, AllocNone); | |
309 xswa.event_mask = | |
310 StructureNotifyMask | ExposureMask | KeyPressMask | | |
311 PropertyChangeMask | ((WinID == 0) ? 0 | |
312 : (ButtonPressMask | ButtonReleaseMask | | |
313 PointerMotionMask)); | |
314 xswamask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask; | |
4123 | 315 |
12582 | 316 if (WinID >= 0) |
317 { | |
318 vo_window = | |
319 WinID ? ((Window) WinID) : RootWindow(mDisplay, mScreen); | |
320 if (WinID) | |
321 { | |
322 XUnmapWindow(mDisplay, vo_window); | |
323 XChangeWindowAttributes(mDisplay, vo_window, xswamask, | |
324 &xswa); | |
325 vo_x11_selectinput_witherr(mDisplay, vo_window, | |
326 StructureNotifyMask | | |
327 KeyPressMask | | |
328 PropertyChangeMask | | |
329 PointerMotionMask | | |
330 ButtonPressMask | | |
331 ButtonReleaseMask | | |
332 ExposureMask); | |
15540 | 333 XMapWindow(mDisplay, vo_window); |
12582 | 334 } else |
335 XSelectInput(mDisplay, vo_window, ExposureMask); | |
336 } else | |
337 { | |
338 if (vo_window == None) | |
339 { | |
340 vo_window = | |
341 XCreateWindow(mDisplay, RootWindow(mDisplay, mScreen), | |
342 vo_dx, vo_dy, window_width, | |
343 window_height, xswa.border_pixel, | |
344 vinfo.depth, InputOutput, vinfo.visual, | |
345 xswamask, &xswa); | |
4123 | 346 |
12582 | 347 vo_x11_classhint(mDisplay, vo_window, "xvidix"); |
348 vo_hidecursor(mDisplay, vo_window); | |
349 vo_x11_sizehint(vo_dx, vo_dy, vo_dwidth, vo_dheight, 0); | |
4123 | 350 |
12582 | 351 XStoreName(mDisplay, vo_window, title); |
352 XMapWindow(mDisplay, vo_window); | |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18116
diff
changeset
|
353 vo_x11_nofs_sizepos(vo_dx, vo_dy, vo_dwidth, vo_dheight); |
12582 | 354 |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13946
diff
changeset
|
355 if (flags & VOFLAG_FULLSCREEN) |
12582 | 356 vo_x11_fullscreen(); |
357 | |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18116
diff
changeset
|
358 } else |
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18116
diff
changeset
|
359 vo_x11_nofs_sizepos(vo_dx, vo_dy, vo_dwidth, vo_dheight); |
12582 | 360 } |
361 | |
362 if (vo_gc != None) | |
363 XFreeGC(mDisplay, vo_gc); | |
364 vo_gc = XCreateGC(mDisplay, vo_window, GCForeground, &mGCV); | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
365 #ifdef HAVE_NEW_GUI |
12582 | 366 } |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
367 #endif |
4123 | 368 |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13946
diff
changeset
|
369 if ((!WinID) && (flags & VOFLAG_FULLSCREEN)) |
12582 | 370 { |
371 vo_dx = 0; | |
372 vo_dy = 0; | |
373 vo_dwidth = vo_screenwidth; | |
374 vo_dheight = vo_screenheight; | |
375 vo_fs = 1; | |
376 } | |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
377 |
4255 | 378 if (vidix_grkey_support()) |
379 { | |
12582 | 380 vidix_grkey_get(&gr_key); |
381 gr_key.key_op = KEYS_PUT; | |
382 if (!(vo_colorkey & 0xff000000)) | |
383 { | |
384 gr_key.ckey.op = CKEY_TRUE; | |
385 gr_key.ckey.red = r; | |
386 gr_key.ckey.green = g; | |
387 gr_key.ckey.blue = b; | |
388 } else | |
389 gr_key.ckey.op = CKEY_FALSE; | |
390 vidix_grkey_set(&gr_key); | |
4255 | 391 } |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
392 |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
6953
diff
changeset
|
393 set_window(1); |
6755 | 394 |
4805 | 395 XSync(mDisplay, False); |
4123 | 396 |
6382
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6311
diff
changeset
|
397 panscan_calc(); |
86d5fc5b54e2
fix panscan support and add Jesper Svennevid's <mplayer@svennevid.net> patch
pontscho
parents:
6311
diff
changeset
|
398 |
12582 | 399 if (vo_ontop) |
400 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); | |
11542 | 401 |
12582 | 402 return (0); |
4123 | 403 } |
404 | |
405 static void check_events(void) | |
406 { | |
407 const int event = vo_x11_check_events(mDisplay); | |
4125 | 408 |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
409 if ((event & VO_EVENT_RESIZE) || (event & VO_EVENT_EXPOSE)) |
12582 | 410 set_window(0); |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
411 |
4125 | 412 return; |
4123 | 413 } |
414 | |
415 /* draw_osd, flip_page, draw_slice, draw_frame should be | |
416 overwritten with vidix functions (vosub_vidix.c) */ | |
417 static void draw_osd(void) | |
418 { | |
12582 | 419 mp_msg(MSGT_VO, MSGL_FATAL, |
420 "[xvidix] error: didn't used vidix draw_osd!\n"); | |
4123 | 421 return; |
422 } | |
423 | |
424 static void flip_page(void) | |
425 { | |
12582 | 426 mp_msg(MSGT_VO, MSGL_FATAL, |
427 "[xvidix] error: didn't used vidix flip_page!\n"); | |
4123 | 428 return; |
429 } | |
430 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
431 static int draw_slice(uint8_t * src[], int stride[], |
12582 | 432 int w, int h, int x, int y) |
4123 | 433 { |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
434 UNUSED(src); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
435 UNUSED(stride); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
436 UNUSED(w); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
437 UNUSED(h); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
438 UNUSED(x); |
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
439 UNUSED(y); |
12582 | 440 mp_msg(MSGT_VO, MSGL_FATAL, |
441 "[xvidix] error: didn't used vidix draw_slice!\n"); | |
442 return (-1); | |
4123 | 443 } |
444 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
445 static int draw_frame(uint8_t * src[]) |
4123 | 446 { |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
447 UNUSED(src); |
12582 | 448 mp_msg(MSGT_VO, MSGL_FATAL, |
449 "[xvidix] error: didn't used vidix draw_frame!\n"); | |
450 return (-1); | |
4123 | 451 } |
452 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
453 static int query_format(uint32_t format) |
4123 | 454 { |
12582 | 455 return (vidix_query_fourcc(format)); |
4123 | 456 } |
457 | |
458 static void uninit(void) | |
459 { | |
12582 | 460 if (!vo_config_count) |
461 return; | |
4241
817742049fa0
updated based vo_xmga, using colorkey, working with gui, fixed xinerama and window moving/resizing
alex
parents:
4198
diff
changeset
|
462 vidix_term(); |
12582 | 463 |
8577 | 464 if (vidix_name) |
465 { | |
12582 | 466 free(vidix_name); |
467 vidix_name = NULL; | |
8577 | 468 } |
4441
90814d64a840
removed obosolete Terminate_Display_Process. using vo_x11_uninit. support UYVY format
alex
parents:
4434
diff
changeset
|
469 |
6095 | 470 vo_x11_uninit(); |
4271
2c7e6c87fb6f
reworked, picture moves when window moved, fullscreen working with gui, fixed some annoying bugs
alex
parents:
4255
diff
changeset
|
471 } |
4352 | 472 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
473 static int preinit(const char *arg) |
4352 | 474 { |
6016 | 475 |
4363 | 476 if (arg) |
477 vidix_name = strdup(arg); | |
478 else | |
479 { | |
12582 | 480 mp_msg(MSGT_VO, MSGL_INFO, |
481 "No vidix driver name provided, probing available ones (-v option for details)!\n"); | |
482 vidix_name = NULL; | |
4363 | 483 } |
484 | |
12582 | 485 if (!vo_init()) |
486 return (-1); | |
7777 | 487 |
4363 | 488 if (vidix_preinit(vidix_name, &video_out_xvidix) != 0) |
12582 | 489 return (1); |
4363 | 490 |
12582 | 491 return (0); |
4352 | 492 } |
493 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
494 static int control(uint32_t request, void *data, ...) |
4352 | 495 { |
12582 | 496 switch (request) |
497 { | |
498 case VOCTRL_QUERY_FORMAT: | |
499 return query_format(*((uint32_t *) data)); | |
500 case VOCTRL_GUISUPPORT: | |
501 return VO_TRUE; | |
502 case VOCTRL_GET_PANSCAN: | |
503 if (!vo_config_count || !vo_fs) | |
504 return VO_FALSE; | |
505 return VO_TRUE; | |
506 case VOCTRL_ONTOP: | |
507 vo_x11_ontop(); | |
508 return VO_TRUE; | |
509 case VOCTRL_FULLSCREEN: | |
510 vo_x11_fullscreen(); | |
511 case VOCTRL_SET_PANSCAN: | |
512 if (vo_fs && (vo_panscan != vo_panscan_amount)) | |
513 { | |
514 panscan_calc(); | |
515 set_window(0); | |
516 } | |
517 return VO_TRUE; | |
518 case VOCTRL_SET_EQUALIZER: | |
519 { | |
520 va_list ap; | |
521 int value; | |
6786 | 522 |
12582 | 523 va_start(ap, data); |
524 value = va_arg(ap, int); | |
525 | |
526 va_end(ap); | |
6786 | 527 |
20110 | 528 return vidix_control(request, data, value); |
12582 | 529 } |
530 case VOCTRL_GET_EQUALIZER: | |
531 { | |
532 va_list ap; | |
533 int *value; | |
534 | |
535 va_start(ap, data); | |
536 value = va_arg(ap, int *); | |
537 | |
538 va_end(ap); | |
539 | |
540 return vidix_control(request, data, value); | |
541 } | |
22232 | 542 case VOCTRL_UPDATE_SCREENINFO: |
543 aspect_save_screenres(vo_screenwidth, vo_screenheight); | |
544 return VO_TRUE; | |
545 | |
12582 | 546 } |
547 return vidix_control(request, data); | |
6531 | 548 // return VO_NOTIMPL; |
4352 | 549 } |