Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 5597:e9ceb08cc007
bigendlian fix by Guillaume Morin <guillaume@morinfr.org>
author | arpi |
---|---|
date | Sat, 13 Apr 2002 16:49:27 +0000 |
parents | e01c664def74 |
children | 1972c3475d93 |
rev | line source |
---|---|
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
1 |
1265 | 2 // Number of buffers _FOR_DOUBLEBUFFERING_MODE_ |
3 // Use option -double to enable double buffering! (default: single buffer) | |
4 #define NUM_BUFFERS 2 | |
1 | 5 |
182 | 6 /* |
7 * vo_xv.c, X11 Xv interface | |
1 | 8 * |
182 | 9 * Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. |
1 | 10 * |
11 * Hacked into mpeg2dec by | |
182 | 12 * |
1 | 13 * Aaron Holtzman <aholtzma@ess.engr.uvic.ca> |
14 * | |
15 * Xv image suuport by Gerd Knorr <kraxel@goldbach.in-berlin.de> | |
1265 | 16 * fullscreen support by Pontscho |
17 * double buffering support by A'rpi | |
1 | 18 */ |
19 | |
20 #include <stdio.h> | |
21 #include <stdlib.h> | |
22 #include <string.h> | |
23 | |
24 #include "config.h" | |
25 #include "video_out.h" | |
26 #include "video_out_internal.h" | |
27 | |
28 LIBVO_EXTERN(xv) | |
29 | |
30 #include <X11/Xlib.h> | |
31 #include <X11/Xutil.h> | |
32 #include <X11/extensions/XShm.h> | |
33 #include <errno.h> | |
34 | |
31 | 35 #include "x11_common.h" |
36 | |
354 | 37 #include "fastmemcpy.h" |
616 | 38 #include "sub.h" |
2054 | 39 #include "aspect.h" |
350 | 40 |
4629 | 41 #include "../postproc/rgb2rgb.h" |
4980 | 42 #include "../mp_image.h" |
4629 | 43 |
182 | 44 static vo_info_t vo_info = |
1 | 45 { |
182 | 46 "X11/Xv", |
47 "xv", | |
48 "Gerd Knorr <kraxel@goldbach.in-berlin.de>", | |
49 "" | |
1 | 50 }; |
51 | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
52 extern int verbose; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
53 |
1 | 54 /* since it doesn't seem to be defined on some platforms */ |
55 int XShmGetEventBase(Display*); | |
56 | |
57 /* local data */ | |
58 static unsigned char *ImageData; | |
59 | |
60 /* X11 related variables */ | |
61 static XImage *myximage; | |
62 static int depth, bpp, mode; | |
63 static XWindowAttributes attribs; | |
64 | |
65 #include <X11/extensions/Xv.h> | |
66 #include <X11/extensions/Xvlib.h> | |
67 // FIXME: dynamically allocate this stuff | |
68 static void allocate_xvimage(int); | |
69 static unsigned int ver,rel,req,ev,err; | |
70 static unsigned int formats, adaptors,i,xv_port,xv_format; | |
71 static XvAdaptorInfo *ai; | |
72 static XvImageFormatValues *fo; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
73 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
74 static int current_buf=0; |
1265 | 75 static int num_buffers=1; // default |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
76 static XvImage* xvimage[NUM_BUFFERS]; |
1 | 77 |
78 #include <sys/ipc.h> | |
79 #include <sys/shm.h> | |
80 #include <X11/extensions/XShm.h> | |
81 | |
82 static int Shmem_Flag; | |
83 static int Quiet_Flag; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
84 static XShmSegmentInfo Shminfo[NUM_BUFFERS]; |
1 | 85 static int gXErrorFlag; |
86 static int CompletionType = -1; | |
87 | |
88 static uint32_t image_width; | |
89 static uint32_t image_height; | |
90 static uint32_t image_format; | |
4629 | 91 static int flip_flag; |
1 | 92 |
182 | 93 static Window mRoot; |
94 static uint32_t drwX,drwY,drwWidth,drwHeight,drwBorderWidth,drwDepth; | |
4981 | 95 static uint32_t drwcX,drwcY,dwidth,dheight; |
1 | 96 |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
97 static void (*draw_alpha_fnc)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
98 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
99 static void draw_alpha_yv12(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
100 vo_draw_alpha_yv12(w,h,src,srca,stride,xvimage[current_buf]->data+image_width*y0+x0,image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
101 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
102 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
103 static void draw_alpha_yuy2(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
104 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0),2*image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
105 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
106 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
107 static void draw_alpha_uyvy(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
108 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0)+1,2*image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
109 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
110 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
111 static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
112 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
113 |
4396 | 114 static int __xv_set_video_eq( const vidix_video_eq_t *info,int use_reset) |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
115 { |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
116 XvAttribute *attributes; |
4307 | 117 int howmany, xv_min,xv_max,xv_atomka; |
118 static int was_reset = 0; | |
119 /* get available attributes */ | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
120 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); |
4307 | 121 /* first pass try reset */ |
4396 | 122 if(use_reset) |
4307 | 123 { |
4396 | 124 for (i = 0; i < howmany && attributes; i++) |
125 { | |
4307 | 126 if (attributes[i].flags & XvSettable && !strcmp(attributes[i].name,"XV_SET_DEFAULTS" |
127 )) | |
128 { | |
129 was_reset = 1; | |
130 if(verbose > 1) printf("vo_xv: reset gamma correction\n"); | |
131 xv_atomka = XInternAtom(mDisplay, attributes[i].name, True); | |
132 XvSetPortAttribute(mDisplay, xv_port, xv_atomka, attributes[i].max_value); | |
133 } | |
4396 | 134 } |
135 /* for safety purposes */ | |
136 if(!was_reset) return ENOSYS; | |
4307 | 137 } |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
138 for (i = 0; i < howmany && attributes; i++) |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
139 { |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
140 if (attributes[i].flags & XvSettable) |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
141 { |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
142 xv_min = attributes[i].min_value; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
143 xv_max = attributes[i].max_value; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
144 xv_atomka = XInternAtom(mDisplay, attributes[i].name, True); |
4307 | 145 /* since we have SET_DEFAULTS first in our list, we can check if it's available |
146 then trigger it if it's ok so that the other values are at default upon query */ | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
147 if (xv_atomka != None) |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
148 { |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
149 int port_value,port_min,port_max,port_mid; |
4396 | 150 if(strcmp(attributes[i].name,"XV_BRIGHTNESS") == 0 |
151 && (info->cap & VEQ_CAP_BRIGHTNESS)) | |
152 port_value = info->brightness; | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
153 else |
4396 | 154 if(strcmp(attributes[i].name,"XV_SATURATION") == 0 |
155 && (info->cap & VEQ_CAP_SATURATION)) | |
156 port_value = info->saturation; | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
157 else |
4396 | 158 if(strcmp(attributes[i].name,"XV_CONTRAST") == 0 |
159 && (info->cap & VEQ_CAP_CONTRAST)) | |
160 port_value = info->contrast; | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
161 else |
4396 | 162 if(strcmp(attributes[i].name,"XV_HUE") == 0 |
163 && (info->cap & VEQ_CAP_HUE)) | |
164 port_value = info->hue; | |
4320
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
165 else |
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
166 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ |
4396 | 167 if(strcmp(attributes[i].name,"XV_RED_INTENSITY") == 0 |
168 && (info->cap & VEQ_CAP_RGB_INTENSITY)) | |
169 port_value = info->red_intensity; | |
4320
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
170 else |
4396 | 171 if(strcmp(attributes[i].name,"XV_GREEN_INTENSITY") == 0 |
172 && (info->cap & VEQ_CAP_RGB_INTENSITY)) | |
173 port_value = info->green_intensity; | |
4320
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
174 else |
4396 | 175 if(strcmp(attributes[i].name,"XV_BLUE_INTENSITY") == 0 |
176 && (info->cap & VEQ_CAP_RGB_INTENSITY)) | |
177 port_value = info->blue_intensity; | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
178 else continue; |
4320
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
179 /* means that user has untouched this parameter since |
bfcf2517876b
RGB independed correction for GATOS's radeon_video driver!
nick
parents:
4317
diff
changeset
|
180 NVidia driver has default == min for XV_HUE but not mid */ |
4406 | 181 if(!port_value && use_reset) continue; |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
182 port_min = xv_min; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
183 port_max = xv_max; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
184 port_mid = (port_min + port_max) / 2; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
185 port_value = port_mid + (port_value * (port_max - port_min)) / 2000; |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
186 if(verbose > 1) |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
187 printf("vo_xv: set gamma %s to %i (min %i max %i mid %i)\n",attributes[i].name,port_value,port_min,port_max,port_mid); |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
188 XvSetPortAttribute(mDisplay, xv_port, xv_atomka, port_value); |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
189 } |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
190 } |
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
191 } |
4396 | 192 return 0; |
193 } | |
194 | |
195 | |
196 static int xv_set_video_eq( const vidix_video_eq_t *info) | |
197 { | |
198 return __xv_set_video_eq(info,0); | |
199 } | |
200 | |
201 static int xv_get_video_eq( vidix_video_eq_t *info) | |
202 { | |
203 XvAttribute *attributes; | |
204 int howmany, xv_min,xv_max,xv_atomka; | |
205 /* get available attributes */ | |
206 memset(info,0,sizeof(vidix_video_eq_t)); | |
207 attributes = XvQueryPortAttributes(mDisplay, xv_port, &howmany); | |
208 for (i = 0; i < howmany && attributes; i++) | |
209 { | |
210 if (attributes[i].flags & XvGettable) | |
211 { | |
212 xv_min = attributes[i].min_value; | |
213 xv_max = attributes[i].max_value; | |
214 xv_atomka = XInternAtom(mDisplay, attributes[i].name, True); | |
215 /* since we have SET_DEFAULTS first in our list, we can check if it's available | |
216 then trigger it if it's ok so that the other values are at default upon query */ | |
217 if (xv_atomka != None) | |
218 { | |
219 int port_value,port_min,port_max,port_mid; | |
220 XvGetPortAttribute(mDisplay, xv_port, xv_atomka, &port_value); | |
221 if(verbose>1) printf("vo_xv: get: %s = %i\n",attributes[i].name,port_value); | |
222 | |
223 port_min = xv_min; | |
224 port_max = xv_max; | |
225 port_mid = (port_min + port_max) / 2; | |
226 port_value = ((port_value - port_mid)*2000)/(port_max-port_min); | |
227 | |
228 if(verbose>1) printf("vo_xv: assume: %s = %i\n",attributes[i].name,port_value); | |
229 | |
230 if(strcmp(attributes[i].name,"XV_BRIGHTNESS") == 0) | |
231 { | |
232 info->cap |= VEQ_CAP_BRIGHTNESS; | |
233 info->brightness = port_value; | |
234 } | |
235 else | |
236 if(strcmp(attributes[i].name,"XV_SATURATION") == 0) | |
237 { | |
238 info->cap |= VEQ_CAP_SATURATION; | |
239 info->saturation = port_value; | |
240 } | |
241 else | |
242 if(strcmp(attributes[i].name,"XV_CONTRAST") == 0) | |
243 { | |
244 info->cap |= VEQ_CAP_CONTRAST; | |
245 info->contrast = port_value; | |
246 } | |
247 else | |
248 if(strcmp(attributes[i].name,"XV_HUE") == 0) | |
249 { | |
250 info->cap |= VEQ_CAP_HUE; | |
251 info->hue = port_value; | |
252 } | |
253 else | |
254 /* Note: since 22.01.2002 GATOS supports these attrs for radeons (NK) */ | |
255 if(strcmp(attributes[i].name,"XV_RED_INTENSITY") == 0) | |
256 { | |
257 info->cap |= VEQ_CAP_RGB_INTENSITY; | |
258 info->red_intensity = port_value; | |
259 } | |
260 else | |
261 if(strcmp(attributes[i].name,"XV_GREEN_INTENSITY") == 0) | |
262 { | |
263 info->cap |= VEQ_CAP_RGB_INTENSITY; | |
264 info->green_intensity = port_value; | |
265 } | |
266 else | |
267 if(strcmp(attributes[i].name,"XV_BLUE_INTENSITY") == 0) | |
268 { | |
269 info->cap |= VEQ_CAP_RGB_INTENSITY; | |
270 info->blue_intensity = port_value; | |
271 } | |
272 else continue; | |
273 } | |
274 } | |
275 } | |
276 return 0; | |
277 } | |
278 | |
279 extern int vo_gamma_brightness; | |
280 extern int vo_gamma_saturation; | |
281 extern int vo_gamma_contrast; | |
282 extern int vo_gamma_hue; | |
283 extern int vo_gamma_red_intensity; | |
284 extern int vo_gamma_green_intensity; | |
285 extern int vo_gamma_blue_intensity; | |
286 | |
287 static void set_gamma_correction( void ) | |
288 { | |
289 vidix_video_eq_t info; | |
290 /* try all */ | |
291 info.cap = VEQ_CAP_BRIGHTNESS | VEQ_CAP_CONTRAST | VEQ_CAP_SATURATION | | |
292 VEQ_CAP_HUE | VEQ_CAP_RGB_INTENSITY; | |
293 info.flags = 0; /* doesn't matter for xv */ | |
294 info.brightness = vo_gamma_brightness; | |
295 info.contrast = vo_gamma_contrast; | |
296 info.saturation = vo_gamma_saturation; | |
297 info.hue = vo_gamma_hue; | |
298 info.red_intensity = vo_gamma_red_intensity; | |
299 info.green_intensity = vo_gamma_green_intensity; | |
300 info.blue_intensity = vo_gamma_blue_intensity; | |
301 /* reset with XV_SET_DEFAULTS only once */ | |
302 __xv_set_video_eq(&info,1); | |
4296
a20c333d6c09
Gamma correction (based on patch of P«”sztor Szil«”rd <silicon@falcon.sch.bme.hu>)
nick
parents:
3990
diff
changeset
|
303 } |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
304 |
182 | 305 /* |
306 * connect to server, create and map window, | |
1 | 307 * allocate colors and (shared) memory |
308 */ | |
4433 | 309 static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format,const vo_tune_info_t *info) |
1 | 310 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
311 // int screen; |
182 | 312 char *hello = (title == NULL) ? "Xv render" : title; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
313 // char *name = ":0.0"; |
182 | 314 XSizeHints hint; |
315 XVisualInfo vinfo; | |
316 XEvent xev; | |
1 | 317 |
182 | 318 XGCValues xgcv; |
319 XSetWindowAttributes xswa; | |
320 unsigned long xswamask; | |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
321 #ifdef HAVE_XF86VM |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
322 int vm=0; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
323 unsigned int modeline_width, modeline_height; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
324 static uint32_t vm_width; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
325 static uint32_t vm_height; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
326 #endif |
1 | 327 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
328 aspect_save_orig(width,height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
329 aspect_save_prescale(d_width,d_height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
330 |
182 | 331 image_height = height; |
332 image_width = width; | |
333 image_format=format; | |
1 | 334 |
4981 | 335 vo_fs=flags&1; |
336 if ( vo_fs ) | |
337 { vo_old_width=d_width; vo_old_height=d_height; } | |
338 | |
4978 | 339 #ifdef HAVE_XF86VM |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
340 if( flags&0x02 ) vm = 1; |
4978 | 341 #endif |
4629 | 342 flip_flag=flags&8; |
1265 | 343 num_buffers=vo_doublebuffering?NUM_BUFFERS:1; |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
344 |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
345 /* check image formats */ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
346 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
347 xv_format=0; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
348 if(format==IMGFMT_BGR24) format=IMGFMT_YV12; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
349 for(i = 0; i < formats; i++){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
350 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
351 if (fo[i].id == format) xv_format = fo[i].id; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
352 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
353 if (!xv_format) return -1; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
354 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
355 aspect_save_screenres(vo_screenwidth,vo_screenheight); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
356 |
1775 | 357 #ifdef HAVE_NEW_GUI |
723 | 358 if ( vo_window == None ) |
182 | 359 { |
723 | 360 #endif |
361 hint.x = 0; | |
362 hint.y = 0; | |
363 hint.width = d_width; | |
364 hint.height = d_height; | |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
365 aspect(&d_width,&d_height,A_NOZOOM); |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
366 #ifdef HAVE_XF86VM |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
367 if ( vm ) |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
368 { |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
369 if ((d_width==0) && (d_height==0)) |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
370 { vm_width=image_width; vm_height=image_height; } |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
371 else |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
372 { vm_width=d_width; vm_height=d_height; } |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
373 vo_vm_switch(vm_width, vm_height,&modeline_width, &modeline_height); |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
374 hint.x=(vo_screenwidth-modeline_width)/2; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
375 hint.y=(vo_screenheight-modeline_height)/2; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
376 hint.width=modeline_width; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
377 hint.height=modeline_height; |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
378 } |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
379 else |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
380 #endif |
4981 | 381 if ( vo_fs ) |
723 | 382 { |
383 hint.width=vo_screenwidth; | |
384 hint.height=vo_screenheight; | |
2054 | 385 #ifdef X11_FULLSCREEN |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
386 /* this code replaces X11_FULLSCREEN hack in mplayer.c |
2054 | 387 * aspect() is available through aspect.h for all vos. |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
388 * besides zooming should only be done with -zoom, |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
389 * but I leave the old -fs behaviour so users don't get |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
390 * irritated for now (and send lots o' mails ;) ::atmos |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
391 */ |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
392 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
393 aspect(&d_width,&d_height,A_ZOOM); |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
394 #endif |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
395 |
723 | 396 } |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
397 dwidth=d_width; dheight=d_height; //XXX: what are the copy vars used for? |
723 | 398 hint.flags = PPosition | PSize; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
399 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), &attribs); |
723 | 400 depth=attribs.depth; |
401 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) depth = 24; | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
402 XMatchVisualInfo(mDisplay, mScreen, depth, TrueColor, &vinfo); |
723 | 403 |
404 xswa.background_pixel = 0; | |
405 xswa.border_pixel = 0; | |
406 xswamask = CWBackPixel | CWBorderPixel; | |
1 | 407 |
3830 | 408 if ( WinID>=0 ){ |
4795 | 409 vo_window = WinID ? ((Window)WinID) : RootWindow(mDisplay,mScreen); |
410 XUnmapWindow( mDisplay,vo_window ); | |
411 XChangeWindowAttributes( mDisplay,vo_window,xswamask,&xswa ); | |
3830 | 412 } else |
413 | |
4795 | 414 vo_window = XCreateWindow(mDisplay, RootWindow(mDisplay,mScreen), |
3830 | 415 hint.x, hint.y, hint.width, hint.height, |
416 0, depth,CopyFromParent,vinfo.visual,xswamask,&xswa); | |
417 | |
4795 | 418 vo_x11_classhint( mDisplay,vo_window,"xv" ); |
419 vo_hidecursor(mDisplay,vo_window); | |
1 | 420 |
4795 | 421 XSelectInput(mDisplay, vo_window, StructureNotifyMask | KeyPressMask |
4658 | 422 #ifdef HAVE_NEW_INPUT |
423 | ButtonPressMask | ButtonReleaseMask | |
424 #endif | |
425 ); | |
4795 | 426 XSetStandardProperties(mDisplay, vo_window, hello, hello, None, NULL, 0, &hint); |
4981 | 427 if ( vo_fs ) vo_x11_decoration( mDisplay,vo_window,0 ); |
4795 | 428 XMapWindow(mDisplay, vo_window); |
3990 | 429 #ifdef HAVE_XINERAMA |
4795 | 430 vo_x11_xinerama_move(mDisplay,vo_window); |
3990 | 431 #endif |
4795 | 432 vo_gc = XCreateGC(mDisplay, vo_window, 0L, &xgcv); |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
433 XFlush(mDisplay); |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
434 XSync(mDisplay, False); |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
435 #ifdef HAVE_XF86VM |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
436 if ( vm ) |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
437 { |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
438 /* Grab the mouse pointer in our window */ |
4795 | 439 XGrabPointer(mDisplay, vo_window, True, 0, |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
440 GrabModeAsync, GrabModeAsync, |
4795 | 441 vo_window, None, CurrentTime); |
442 XSetInputFocus(mDisplay, vo_window, RevertToNone, CurrentTime); | |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
443 } |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
444 #endif |
1775 | 445 #ifdef HAVE_NEW_GUI |
723 | 446 } |
447 #endif | |
1 | 448 |
614 | 449 printf( "using Xvideo port %d for hw scaling\n",xv_port ); |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
450 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
451 switch (xv_format){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
452 case IMGFMT_YV12: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
453 case IMGFMT_I420: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
454 case IMGFMT_IYUV: draw_alpha_fnc=draw_alpha_yv12; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
455 case IMGFMT_YUY2: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
456 case IMGFMT_YVYU: draw_alpha_fnc=draw_alpha_yuy2; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
457 case IMGFMT_UYVY: draw_alpha_fnc=draw_alpha_uyvy; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
458 default: draw_alpha_fnc=draw_alpha_null; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
459 } |
182 | 460 |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
461 for(current_buf=0;current_buf<num_buffers;++current_buf) |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
462 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
463 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
464 current_buf=0; |
1 | 465 |
4396 | 466 set_gamma_correction(); |
1818 | 467 |
4795 | 468 XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 469 drwX=0; drwY=0; |
4795 | 470 XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 471 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 472 |
3558 | 473 aspect(&dwidth,&dheight,A_NOZOOM); |
4981 | 474 if ( vo_fs ) |
182 | 475 { |
3558 | 476 aspect(&dwidth,&dheight,A_ZOOM); |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
477 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
182 | 478 drwcX+=drwX; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
479 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; |
182 | 480 drwcY+=drwY; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
481 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); |
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
482 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); |
614 | 483 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 484 } |
4316 | 485 saver_off(mDisplay); // turning off screen saver |
182 | 486 return 0; |
1 | 487 } |
488 | |
182 | 489 static const vo_info_t * get_info(void) |
490 { return &vo_info; } | |
1 | 491 |
182 | 492 static void allocate_xvimage(int foo) |
1 | 493 { |
182 | 494 /* |
495 * allocate XvImages. FIXME: no error checking, without | |
496 * mit-shm this will bomb... | |
497 */ | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
498 xvimage[foo] = XvShmCreateImage(mDisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); |
1 | 499 |
182 | 500 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
501 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
502 Shminfo[foo].readOnly = False; | |
1 | 503 |
182 | 504 xvimage[foo]->data = Shminfo[foo].shmaddr; |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
505 XShmAttach(mDisplay, &Shminfo[foo]); |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
506 XSync(mDisplay, False); |
182 | 507 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); |
508 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
509 return; | |
1 | 510 } |
511 | |
1794 | 512 static void deallocate_xvimage(int foo) |
513 { | |
514 XShmDetach( mDisplay,&Shminfo[foo] ); | |
515 shmdt( Shminfo[foo].shmaddr ); | |
516 XFlush( mDisplay ); | |
517 XSync(mDisplay, False); | |
518 return; | |
519 } | |
520 | |
31 | 521 static void check_events(void) |
1 | 522 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
523 int e=vo_x11_check_events(mDisplay); |
182 | 524 if(e&VO_EVENT_RESIZE) |
525 { | |
4795 | 526 XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 527 drwX=0; drwY=0; |
4795 | 528 XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 529 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 530 |
3558 | 531 aspect(&dwidth,&dheight,A_NOZOOM); |
4981 | 532 if ( vo_fs ) |
182 | 533 { |
3558 | 534 aspect(&dwidth,&dheight,A_ZOOM); |
182 | 535 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
536 drwcX+=drwX; | |
537 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
538 drwcY+=drwY; | |
539 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
540 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 541 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 542 } |
543 } | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
544 if ( e & VO_EVENT_EXPOSE ) |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
545 { |
4795 | 546 XvShmPutImage(mDisplay, xv_port, vo_window, vo_gc, xvimage[current_buf], 0, 0, image_width, image_height, drwX, drwY, 1, 1, False); |
4981 | 547 XvShmPutImage(mDisplay, xv_port, vo_window, vo_gc, xvimage[current_buf], 0, 0, image_width, image_height, drwX,drwY,drwWidth,(vo_fs?drwHeight - 1:drwHeight), False); |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
548 } |
1 | 549 } |
550 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
551 static void draw_osd(void) |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
552 { vo_draw_text(image_width,image_height,draw_alpha_fnc);} |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
553 |
182 | 554 static void flip_page(void) |
1 | 555 { |
4795 | 556 XvShmPutImage(mDisplay, xv_port, vo_window, vo_gc, xvimage[current_buf], |
182 | 557 0, 0, image_width, image_height, |
4981 | 558 drwX,drwY,drwWidth,(vo_fs?drwHeight - 1:drwHeight), |
182 | 559 False); |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
560 if (num_buffers>1){ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
561 current_buf=(current_buf+1)%num_buffers; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
562 XFlush(mDisplay); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
563 } else |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
564 XSync(mDisplay, False); |
182 | 565 return; |
1 | 566 } |
567 | |
247 | 568 |
569 | |
182 | 570 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 571 { |
182 | 572 uint8_t *src; |
573 uint8_t *dst; | |
574 int i; | |
575 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
576 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 577 src = image[0]; |
578 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
579 else | |
580 for(i=0;i<h;i++) | |
581 { | |
582 memcpy(dst,src,w); | |
583 src+=stride[0]; | |
584 dst+=image_width; | |
585 } | |
586 | |
587 x/=2;y/=2;w/=2;h/=2; | |
1 | 588 |
5316 | 589 dst = xvimage[current_buf]->data + image_width * image_height + (image_width>>1) * y + x; |
590 if(image_format!=IMGFMT_YV12) dst+=(image_width>>1)*(image_height>>1); | |
182 | 591 src = image[2]; |
592 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
593 else | |
594 for(i=0;i<h;i++) | |
595 { | |
596 memcpy(dst,src,w); | |
597 src+=stride[2]; | |
598 dst+=image_width/2; | |
599 } | |
5316 | 600 |
601 dst = xvimage[current_buf]->data + image_width * image_height + (image_width>>1) * y + x; | |
602 if(image_format==IMGFMT_YV12) dst+=(image_width>>1)*(image_height>>1); | |
182 | 603 src = image[1]; |
604 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
605 else | |
606 for(i=0;i<h;i++) | |
607 { | |
608 memcpy(dst,src,w); | |
609 src+=stride[1]; | |
610 dst+=image_width/2; | |
611 } | |
612 return 0; | |
1 | 613 } |
614 | |
182 | 615 static uint32_t draw_frame(uint8_t *src[]) |
1 | 616 { |
617 | |
4629 | 618 switch (image_format) { |
408 | 619 case IMGFMT_YUY2: |
620 case IMGFMT_UYVY: | |
621 case IMGFMT_YVYU: | |
622 | |
623 // YUY2 packed, flipped | |
1 | 624 #if 0 |
408 | 625 int i; |
626 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
627 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 628 s+=image_width*image_height; |
629 for(i=0;i<image_height;i++) { | |
630 s-=image_width; | |
631 memcpy(d,s,image_width*2); | |
632 d+=image_width; | |
633 } | |
1 | 634 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
635 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 636 #endif |
408 | 637 break; |
638 | |
639 case IMGFMT_YV12: | |
640 case IMGFMT_I420: | |
641 case IMGFMT_IYUV: | |
642 | |
182 | 643 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
644 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height); |
4351 | 645 if (xv_format == IMGFMT_YV12) |
646 { | |
647 memcpy(xvimage[current_buf]->data+image_width*image_height,src[2],image_width*image_height/4); | |
648 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); | |
649 } | |
650 else | |
651 { | |
652 memcpy(xvimage[current_buf]->data+image_width*image_height,src[1],image_width*image_height/4); | |
653 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[2],image_width*image_height/4); | |
654 } | |
408 | 655 break; |
4629 | 656 |
657 case IMGFMT_BGR24: | |
658 | |
659 if(flip_flag) // tricky, using negative src stride: | |
660 rgb24toyv12(src[0]+3*image_width*(image_height-1), | |
661 xvimage[current_buf]->data, | |
662 xvimage[current_buf]->data+image_width*image_height*5/4, | |
663 xvimage[current_buf]->data+image_width*image_height, | |
664 image_width,image_height, | |
665 image_width,image_width/2,-3*image_width); | |
666 else | |
667 rgb24toyv12(src[0], | |
668 xvimage[current_buf]->data, | |
669 xvimage[current_buf]->data+image_width*image_height*5/4, | |
670 xvimage[current_buf]->data+image_width*image_height, | |
671 image_width,image_height, | |
672 image_width,image_width/2,3*image_width); | |
673 break; | |
674 | |
408 | 675 } |
182 | 676 |
677 return 0; | |
1 | 678 } |
679 | |
4980 | 680 static uint32_t get_image(mp_image_t *mpi){ |
681 if(mpi->type==MP_IMGTYPE_STATIC && num_buffers>1) return VO_FALSE; // it is not static | |
5466 | 682 if(mpi->type==MP_IMGTYPE_IPB && num_buffers<3 && mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // not enough |
5006 | 683 if(mpi->imgfmt!=image_format || mpi->imgfmt==IMGFMT_BGR24) return VO_FALSE; // needs conversion :( |
4980 | 684 // if(mpi->flags&MP_IMGFLAG_READABLE) return VO_FALSE; // slow video ram |
685 if(mpi->width==image_width){ | |
686 if(mpi->flags&MP_IMGFLAG_PLANAR){ | |
687 mpi->planes[0]=xvimage[current_buf]->data; | |
5316 | 688 if(mpi->flags&MP_IMGFLAG_SWAPPED){ |
689 // I420 | |
690 mpi->planes[1]=xvimage[current_buf]->data+image_width*image_height; | |
691 mpi->planes[2]=mpi->planes[1]+(image_width>>1)*(image_height>>1); | |
692 } else { | |
693 // YV12 | |
694 mpi->planes[2]=xvimage[current_buf]->data+image_width*image_height; | |
695 mpi->planes[1]=mpi->planes[2]+(image_width>>1)*(image_height>>1); | |
696 } | |
4980 | 697 mpi->stride[0]=image_width; |
698 mpi->stride[1]=mpi->stride[2]=image_width/2; | |
699 } else { | |
700 mpi->planes[0]=xvimage[current_buf]->data; | |
701 mpi->stride[0]=image_width; | |
702 } | |
703 mpi->flags|=MP_IMGFLAG_DIRECT; | |
704 // printf("mga: get_image() SUCCESS -> Direct Rendering ENABLED\n"); | |
705 return VO_TRUE; | |
706 } | |
707 return VO_FALSE; | |
708 } | |
709 | |
182 | 710 static uint32_t query_format(uint32_t format) |
1 | 711 { |
5566 | 712 int flag=3|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN|VFCAP_OSD; // FIXME! check for DOWN |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
713 /* check image formats */ |
5566 | 714 if(format==IMGFMT_BGR24){ format=IMGFMT_YV12;flag&=~2;flag|=VFCAP_FLIP;} // conversion! |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
715 for(i = 0; i < formats; i++){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
716 // printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
717 if (fo[i].id == format) return flag; //xv_format = fo[i].id; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
718 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
719 return 0; |
408 | 720 |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
721 /* |
4629 | 722 switch(format){ |
723 case IMGFMT_YUY2: | |
724 case IMGFMT_UYVY: | |
725 case IMGFMT_YVYU: | |
726 | |
727 case IMGFMT_YV12: | |
728 case IMGFMT_I420: | |
729 case IMGFMT_IYUV: | |
730 | |
731 case IMGFMT_BGR24: | |
732 | |
408 | 733 // umm, this is a kludge, we need to ask the server.. (see init function above) |
734 return 1; | |
4629 | 735 } |
736 return 0; | |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
737 */ |
4629 | 738 |
1 | 739 } |
740 | |
1852 | 741 static void uninit(void) |
742 { | |
743 int i; | |
5203
2f5ff1968d1c
hotfix (i doubt it will really fix this issue) by Fredrik Kuivinen <freku045@student.liu.se>
arpi
parents:
5006
diff
changeset
|
744 if(!mDisplay) return; |
4316 | 745 saver_on(mDisplay); // screen saver back on |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
746 if(vo_config_count) for( i=0;i<num_buffers;i++ ) deallocate_xvimage( i ); |
4426
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
747 #ifdef HAVE_XF86VM |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
748 vo_vm_close(mDisplay); |
1ceadec3ea67
using the common -vm code, patch by Santi B«±jar <tiarda@yahoo.es>
arpi
parents:
4406
diff
changeset
|
749 #endif |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
750 if(vo_config_count) vo_x11_uninit(mDisplay, vo_window); |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
751 } |
1 | 752 |
4352 | 753 static uint32_t preinit(const char *arg) |
754 { | |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
755 XvPortID xv_p; |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
756 if(arg) |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
757 { |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
758 printf("vo_xv: Unknown subdevice: %s\n",arg); |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
759 return ENOSYS; |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
760 } |
5509
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
761 if (!vo_init()) return -1; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
762 |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
763 xv_port = 0; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
764 /* check for Xvideo extension */ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
765 if (Success != XvQueryExtension(mDisplay,&ver,&rel,&req,&ev,&err)){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
766 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
767 printf("******** Try with -vo x11 or -vo sdl *********\n"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
768 return -1; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
769 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
770 |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
771 /* check for Xvideo support */ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
772 if (Success != XvQueryAdaptors(mDisplay,DefaultRootWindow(mDisplay), &adaptors,&ai)){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
773 printf("Xv: XvQueryAdaptors failed"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
774 return -1; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
775 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
776 |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
777 /* check adaptors */ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
778 for (i = 0; i < adaptors && xv_port == 0; i++){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
779 if ((ai[i].type & XvInputMask) && (ai[i].type & XvImageMask)) |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
780 for (xv_p = ai[i].base_id; xv_p < ai[i].base_id+ai[i].num_ports; ++xv_p) |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
781 if (!XvGrabPort(mDisplay, xv_p, CurrentTime)) { |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
782 xv_port = xv_p; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
783 break; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
784 } else { |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
785 printf("Xv: could not grab port %i\n", (int)xv_p); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
786 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
787 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
788 if(!xv_port){ |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
789 printf("Couldn't find free Xvideo port - maybe other applications keep open it\n"); |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
790 return -1; |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
791 } |
1e90dd889c34
initialization moved to preinit(), query_format now really checks for supported formats
arpi
parents:
5466
diff
changeset
|
792 |
5566 | 793 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
794 | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4658
diff
changeset
|
795 return 0; |
4352 | 796 } |
1 | 797 |
4352 | 798 static void query_vaa(vo_vaa_t *vaa) |
799 { | |
800 memset(vaa,0,sizeof(vo_vaa_t)); | |
4396 | 801 vaa->get_video_eq = xv_get_video_eq; |
802 vaa->set_video_eq = xv_set_video_eq; | |
4352 | 803 } |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
804 |
4596 | 805 static uint32_t control(uint32_t request, void *data, ...) |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
806 { |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
807 switch (request) { |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
808 case VOCTRL_QUERY_VAA: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
809 query_vaa((vo_vaa_t*)data); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
810 return VO_TRUE; |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
811 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
812 return query_format(*((uint32_t*)data)); |
4980 | 813 case VOCTRL_GET_IMAGE: |
814 return get_image(data); | |
4981 | 815 case VOCTRL_FULLSCREEN: |
816 vo_x11_fullscreen(); | |
817 return VO_TRUE; | |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
818 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
819 return VO_NOTIMPL; |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
820 } |