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