Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 732:e14114170e01
applied 'fakemono' patch by Bryan Chan scorpio@acm.org
author | arpi_esp |
---|---|
date | Tue, 08 May 2001 21:49:00 +0000 |
parents | c3e0bdb64027 |
children | 108ea5157cbc |
rev | line source |
---|---|
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
1 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
2 #define NUM_BUFFERS 1 |
1 | 3 |
182 | 4 /* |
5 * vo_xv.c, X11 Xv interface | |
1 | 6 * |
182 | 7 * Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. |
1 | 8 * |
9 * Hacked into mpeg2dec by | |
182 | 10 * |
1 | 11 * Aaron Holtzman <aholtzma@ess.engr.uvic.ca> |
12 * | |
13 * Xv image suuport by Gerd Knorr <kraxel@goldbach.in-berlin.de> | |
14 */ | |
15 | |
16 #include <stdio.h> | |
17 #include <stdlib.h> | |
18 #include <string.h> | |
19 | |
20 #include "config.h" | |
21 #include "video_out.h" | |
22 #include "video_out_internal.h" | |
23 | |
24 LIBVO_EXTERN(xv) | |
25 | |
26 #include <X11/Xlib.h> | |
27 #include <X11/Xutil.h> | |
28 #include <X11/extensions/XShm.h> | |
29 #include <errno.h> | |
30 | |
31 | 31 #include "x11_common.h" |
32 | |
354 | 33 #include "fastmemcpy.h" |
616 | 34 #include "sub.h" |
350 | 35 |
182 | 36 static vo_info_t vo_info = |
1 | 37 { |
182 | 38 "X11/Xv", |
39 "xv", | |
40 "Gerd Knorr <kraxel@goldbach.in-berlin.de>", | |
41 "" | |
1 | 42 }; |
43 | |
44 /* since it doesn't seem to be defined on some platforms */ | |
45 int XShmGetEventBase(Display*); | |
46 | |
47 /* local data */ | |
48 static unsigned char *ImageData; | |
49 | |
50 /* X11 related variables */ | |
51 static Display *mydisplay; | |
52 static Window mywindow; | |
53 static GC mygc; | |
54 static XImage *myximage; | |
55 static int depth, bpp, mode; | |
56 static XWindowAttributes attribs; | |
57 | |
58 #include <X11/extensions/Xv.h> | |
59 #include <X11/extensions/Xvlib.h> | |
60 // FIXME: dynamically allocate this stuff | |
61 static void allocate_xvimage(int); | |
62 static unsigned int ver,rel,req,ev,err; | |
63 static unsigned int formats, adaptors,i,xv_port,xv_format; | |
64 static XvAdaptorInfo *ai; | |
65 static XvImageFormatValues *fo; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
66 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
67 static int current_buf=0; |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
68 static XvImage* xvimage[NUM_BUFFERS]; |
1 | 69 |
70 #include <sys/ipc.h> | |
71 #include <sys/shm.h> | |
72 #include <X11/extensions/XShm.h> | |
73 | |
74 static int Shmem_Flag; | |
75 static int Quiet_Flag; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
76 static XShmSegmentInfo Shminfo[NUM_BUFFERS]; |
1 | 77 static int gXErrorFlag; |
78 static int CompletionType = -1; | |
79 | |
80 static uint32_t image_width; | |
81 static uint32_t image_height; | |
82 static uint32_t image_format; | |
83 | |
182 | 84 static Window mRoot; |
85 static uint32_t drwX,drwY,drwWidth,drwHeight,drwBorderWidth,drwDepth; | |
86 static uint32_t drwcX,drwcY,dwidth,dheight,mFullscreen; | |
1 | 87 |
723 | 88 #ifdef HAVE_GUI |
89 static uint32_t mdwidth,mdheight; | |
90 #endif | |
91 | |
182 | 92 /* |
93 * connect to server, create and map window, | |
1 | 94 * allocate colors and (shared) memory |
95 */ | |
182 | 96 static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format) |
1 | 97 { |
182 | 98 int screen; |
99 char *hello = (title == NULL) ? "Xv render" : title; | |
100 char *name = ":0.0"; | |
101 XSizeHints hint; | |
102 XVisualInfo vinfo; | |
103 XEvent xev; | |
1 | 104 |
182 | 105 XGCValues xgcv; |
106 XSetWindowAttributes xswa; | |
107 unsigned long xswamask; | |
1 | 108 |
182 | 109 image_height = height; |
110 image_width = width; | |
111 image_format=format; | |
1 | 112 |
182 | 113 mFullscreen=fullscreen; |
114 dwidth=d_width; dheight=d_height; | |
1 | 115 |
182 | 116 if(getenv("DISPLAY")) name = getenv("DISPLAY"); |
1 | 117 |
182 | 118 mydisplay = XOpenDisplay(name); |
1 | 119 |
182 | 120 if (mydisplay == NULL) |
121 { | |
614 | 122 printf("Can't open display\n"); |
182 | 123 return -1; |
124 } | |
1 | 125 |
182 | 126 screen = DefaultScreen(mydisplay); |
1 | 127 |
723 | 128 #ifdef HAVE_GUI |
129 if ( vo_window == None ) | |
182 | 130 { |
723 | 131 #endif |
132 hint.x = 0; | |
133 hint.y = 0; | |
134 hint.width = d_width; | |
135 hint.height = d_height; | |
136 if ( fullscreen ) | |
137 { | |
138 hint.width=vo_screenwidth; | |
139 hint.height=vo_screenheight; | |
140 } | |
141 hint.flags = PPosition | PSize; | |
142 XGetWindowAttributes(mydisplay, DefaultRootWindow(mydisplay), &attribs); | |
143 depth=attribs.depth; | |
144 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) depth = 24; | |
145 XMatchVisualInfo(mydisplay, screen, depth, TrueColor, &vinfo); | |
146 | |
147 xswa.background_pixel = 0; | |
148 xswa.border_pixel = 0; | |
149 xswamask = CWBackPixel | CWBorderPixel; | |
1 | 150 |
723 | 151 mywindow = XCreateWindow(mydisplay, RootWindow(mydisplay,screen), |
152 hint.x, hint.y, hint.width, hint.height, | |
153 0, depth,CopyFromParent,vinfo.visual,xswamask,&xswa); | |
154 vo_hidecursor(mydisplay,mywindow); | |
1 | 155 |
723 | 156 XSelectInput(mydisplay, mywindow, StructureNotifyMask | KeyPressMask ); |
157 XSetStandardProperties(mydisplay, mywindow, hello, hello, None, NULL, 0, &hint); | |
158 if ( fullscreen ) vo_x11_decoration( mydisplay,mywindow,0 ); | |
159 XMapWindow(mydisplay, mywindow); | |
160 XFlush(mydisplay); | |
161 XSync(mydisplay, False); | |
162 #ifdef HAVE_GUI | |
163 } | |
164 else | |
165 { | |
166 mywindow=vo_window; | |
167 mygc=vo_gc; | |
168 if ( vo_screenwidth != d_width ) | |
169 { | |
170 XMoveWindow( mydisplay,mywindow,( vo_screenwidth - d_width ) / 2,( vo_screenheight - d_height ) / 2 ); | |
171 XResizeWindow( mydisplay,mywindow,d_width,d_height ); | |
172 } | |
173 else mFullscreen=1; | |
174 } | |
175 #endif | |
1 | 176 |
182 | 177 mygc = XCreateGC(mydisplay, mywindow, 0L, &xgcv); |
1 | 178 |
182 | 179 xv_port = 0; |
180 if (Success == XvQueryExtension(mydisplay,&ver,&rel,&req,&ev,&err)) | |
181 { | |
182 /* check for Xvideo support */ | |
183 if (Success != XvQueryAdaptors(mydisplay,DefaultRootWindow(mydisplay), &adaptors,&ai)) | |
184 { | |
614 | 185 printf("Xv: XvQueryAdaptors failed"); |
182 | 186 return -1; |
187 } | |
188 /* check adaptors */ | |
189 for (i = 0; i < adaptors; i++) | |
190 { | |
191 if ((ai[i].type & XvInputMask) && (ai[i].type & XvImageMask) && (xv_port == 0)) xv_port = ai[i].base_id; | |
192 } | |
193 /* check image formats */ | |
194 if (xv_port != 0) | |
195 { | |
196 fo = XvListImageFormats(mydisplay, xv_port, (int*)&formats); | |
197 xv_format=0; | |
198 for(i = 0; i < formats; i++) | |
199 { | |
614 | 200 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1 | 201 |
182 | 202 if (fo[i].id == format) |
203 { | |
204 xv_format = fo[i].id; | |
205 } | |
206 } | |
207 if (!xv_format) xv_port = 0; | |
208 } | |
209 | |
210 if (xv_port != 0) | |
211 { | |
614 | 212 printf( "using Xvideo port %d for hw scaling\n",xv_port ); |
182 | 213 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
214 for(current_buf=0;current_buf<NUM_BUFFERS;++current_buf) |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
215 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
216 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
217 current_buf=0; |
1 | 218 |
182 | 219 XGetGeometry( mydisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
220 drwX=0; drwY=0; | |
221 XTranslateCoordinates( mydisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); | |
614 | 222 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 223 |
182 | 224 if ( mFullscreen ) |
225 { | |
226 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
227 drwcX+=drwX; | |
228 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
229 drwcY+=drwY; | |
230 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
231 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 232 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 233 } |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
234 |
324 | 235 saver_off(mydisplay); // turning off screen saver |
182 | 236 return 0; |
237 } | |
238 } | |
1 | 239 |
182 | 240 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
241 printf("******** Try with -vo x11 or -vo sdl *********\n"); | |
242 return 1; | |
1 | 243 } |
244 | |
182 | 245 static const vo_info_t * get_info(void) |
246 { return &vo_info; } | |
1 | 247 |
182 | 248 static void allocate_xvimage(int foo) |
1 | 249 { |
182 | 250 /* |
251 * allocate XvImages. FIXME: no error checking, without | |
252 * mit-shm this will bomb... | |
253 */ | |
254 xvimage[foo] = XvShmCreateImage(mydisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); | |
1 | 255 |
182 | 256 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
257 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
258 Shminfo[foo].readOnly = False; | |
1 | 259 |
182 | 260 xvimage[foo]->data = Shminfo[foo].shmaddr; |
261 XShmAttach(mydisplay, &Shminfo[foo]); | |
262 XSync(mydisplay, False); | |
263 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); | |
264 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
265 return; | |
1 | 266 } |
267 | |
31 | 268 static void check_events(void) |
1 | 269 { |
182 | 270 int e=vo_x11_check_events(mydisplay); |
271 if(e&VO_EVENT_RESIZE) | |
272 { | |
273 XGetGeometry( mydisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); | |
274 drwX=0; drwY=0; | |
275 XTranslateCoordinates( mydisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); | |
614 | 276 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 277 |
723 | 278 #ifdef HAVE_GUI |
279 if ( vo_window != None ) | |
280 { | |
281 mFullscreen=0; | |
282 dwidth=mdwidth; dheight=mdheight; | |
283 if ( ( drwWidth == vo_screenwidth )&&( drwHeight == vo_screenheight ) ) | |
284 { | |
285 mFullscreen=1; | |
286 dwidth=vo_screenwidth; | |
287 dheight=vo_screenwidth * mdheight / mdwidth; | |
288 } | |
289 } | |
290 #endif | |
291 | |
182 | 292 if ( mFullscreen ) |
293 { | |
294 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
295 drwcX+=drwX; | |
296 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
297 drwcY+=drwY; | |
298 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
299 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 300 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 301 } |
302 } | |
1 | 303 } |
304 | |
247 | 305 |
306 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ | |
307 int x,y; | |
308 | |
408 | 309 switch (xv_format) { |
310 case IMGFMT_YV12: | |
311 case IMGFMT_I420: | |
312 case IMGFMT_IYUV: | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
313 vo_draw_alpha_yv12(w,h,src,srca,stride,xvimage[current_buf]->data+image_width*y0+x0,image_width); |
408 | 314 break; |
315 case IMGFMT_YUY2: | |
316 case IMGFMT_YVYU: | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
317 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0),2*image_width); |
408 | 318 break; |
450 | 319 case IMGFMT_UYVY: |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
320 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0)+1,2*image_width); |
450 | 321 break; |
408 | 322 } |
247 | 323 |
324 } | |
325 | |
182 | 326 static void flip_page(void) |
1 | 327 { |
247 | 328 vo_draw_text(image_width,image_height,draw_alpha); |
182 | 329 check_events(); |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
330 XvShmPutImage(mydisplay, xv_port, mywindow, mygc, xvimage[current_buf], |
182 | 331 0, 0, image_width, image_height, |
332 drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), | |
333 False); | |
334 XFlush(mydisplay); | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
335 current_buf=(current_buf+1)%NUM_BUFFERS; |
182 | 336 return; |
1 | 337 } |
338 | |
247 | 339 |
340 | |
182 | 341 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 342 { |
182 | 343 uint8_t *src; |
344 uint8_t *dst; | |
345 int i; | |
346 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
347 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 348 src = image[0]; |
349 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
350 else | |
351 for(i=0;i<h;i++) | |
352 { | |
353 memcpy(dst,src,w); | |
354 src+=stride[0]; | |
355 dst+=image_width; | |
356 } | |
357 | |
358 x/=2;y/=2;w/=2;h/=2; | |
1 | 359 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
360 dst = xvimage[current_buf]->data + image_width * image_height + image_width/2 * y + x; |
182 | 361 src = image[2]; |
362 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
363 else | |
364 for(i=0;i<h;i++) | |
365 { | |
366 memcpy(dst,src,w); | |
367 src+=stride[2]; | |
368 dst+=image_width/2; | |
369 } | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
370 dst = xvimage[current_buf]->data + image_width * image_height * 5 / 4 + image_width/2 * y + x; |
182 | 371 src = image[1]; |
372 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
373 else | |
374 for(i=0;i<h;i++) | |
375 { | |
376 memcpy(dst,src,w); | |
377 src+=stride[1]; | |
378 dst+=image_width/2; | |
379 } | |
380 return 0; | |
1 | 381 } |
382 | |
182 | 383 static uint32_t draw_frame(uint8_t *src[]) |
1 | 384 { |
182 | 385 int foo; |
1 | 386 |
408 | 387 switch (xv_format) { |
388 case IMGFMT_YUY2: | |
389 case IMGFMT_UYVY: | |
390 case IMGFMT_YVYU: | |
391 | |
392 // YUY2 packed, flipped | |
1 | 393 #if 0 |
408 | 394 int i; |
395 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
396 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 397 s+=image_width*image_height; |
398 for(i=0;i<image_height;i++) { | |
399 s-=image_width; | |
400 memcpy(d,s,image_width*2); | |
401 d+=image_width; | |
402 } | |
1 | 403 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
404 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 405 #endif |
408 | 406 break; |
407 | |
408 case IMGFMT_YV12: | |
409 case IMGFMT_I420: | |
410 case IMGFMT_IYUV: | |
411 | |
182 | 412 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
413 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
414 memcpy(xvimage[current_buf]->data+image_width*image_height,src[2],image_width*image_height/4); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
415 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); |
408 | 416 break; |
417 } | |
182 | 418 |
419 return 0; | |
1 | 420 } |
421 | |
182 | 422 static uint32_t query_format(uint32_t format) |
1 | 423 { |
408 | 424 |
425 // umm, this is a kludge, we need to ask the server.. (see init function above) | |
426 return 1; | |
427 /* | |
182 | 428 switch(format) |
429 { | |
430 case IMGFMT_YV12: | |
408 | 431 case IMGFMT_YUY2: |
432 return 1; | |
182 | 433 } |
434 return 0; | |
408 | 435 */ |
1 | 436 } |
437 | |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
438 static void uninit(void) { |
324 | 439 saver_on(mydisplay); // screen saver back on |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
440 } |
1 | 441 |
442 | |
443 |