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