Mercurial > mplayer.hg
annotate libvo/vo_x11.c @ 703:fcc01494c0fe
Fixed keyboard input handling and slowed down keyrepeat interval.
author | atmosfear |
---|---|
date | Sat, 05 May 2001 20:13:37 +0000 |
parents | 41d6eec69b60 |
children | 372042df5c77 |
rev | line source |
---|---|
1 | 1 #define DISP |
2 | |
3 /* | |
4 * video_out_x11.c,X11 interface | |
5 * | |
6 * | |
7 * Copyright ( C ) 1996,MPEG Software Simulation Group. All Rights Reserved. | |
8 * | |
9 * Hacked into mpeg2dec by | |
10 * | |
11 * Aaron Holtzman <aholtzma@ess.engr.uvic.ca> | |
12 * | |
13 * 15 & 16 bpp support added by Franck Sicard <Franck.Sicard@solsoft.fr> | |
14 * | |
15 */ | |
16 | |
17 #include <stdio.h> | |
18 #include <stdlib.h> | |
19 #include <string.h> | |
20 #include <signal.h> | |
21 | |
22 #include "config.h" | |
23 #include "video_out.h" | |
24 #include "video_out_internal.h" | |
25 | |
26 LIBVO_EXTERN( x11 ) | |
27 | |
28 #include <X11/Xlib.h> | |
29 #include <X11/Xutil.h> | |
30 #include <X11/extensions/XShm.h> | |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
31 #ifdef HAVE_XF86VM |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
32 #include <X11/extensions/xf86vmode.h> |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
33 #endif |
1 | 34 #include <errno.h> |
35 #include "yuv2rgb.h" | |
36 | |
31 | 37 #include "x11_common.h" |
38 | |
354 | 39 #include "fastmemcpy.h" |
616 | 40 #include "sub.h" |
350 | 41 |
1 | 42 static vo_info_t vo_info = |
43 { | |
44 "X11 ( XImage/Shm )", | |
45 "x11", | |
46 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>", | |
47 "" | |
48 }; | |
49 | |
50 /* private prototypes */ | |
51 static void Display_Image ( XImage * myximage,unsigned char *ImageData ); | |
52 | |
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 | |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
59 #ifdef HAVE_XF86VM |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
60 XF86VidModeModeInfo **vidmodes=NULL; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
61 #endif |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
62 |
1 | 63 /* X11 related variables */ |
64 static Display *mDisplay; | |
65 static Window mywindow; | |
66 static GC mygc; | |
67 static XImage *myximage; | |
68 static int depth,bpp,mode; | |
69 static XWindowAttributes attribs; | |
70 static int X_already_started=0; | |
71 | |
31 | 72 //static int vo_dwidth,vo_dheight; |
1 | 73 |
74 #define SH_MEM | |
75 | |
76 #ifdef SH_MEM | |
77 | |
78 #include <sys/ipc.h> | |
79 #include <sys/shm.h> | |
80 #include <X11/extensions/XShm.h> | |
81 | |
82 //static int HandleXError _ANSI_ARGS_( ( Display * dpy,XErrorEvent * event ) ); | |
83 static void InstallXErrorHandler ( void ); | |
84 static void DeInstallXErrorHandler ( void ); | |
85 | |
86 static int Shmem_Flag; | |
87 static int Quiet_Flag; | |
88 static XShmSegmentInfo Shminfo[1]; | |
89 static int gXErrorFlag; | |
90 static int CompletionType=-1; | |
91 | |
92 static void InstallXErrorHandler() | |
93 { | |
94 //XSetErrorHandler( HandleXError ); | |
95 XFlush( mDisplay ); | |
96 } | |
97 | |
98 static void DeInstallXErrorHandler() | |
99 { | |
100 XSetErrorHandler( NULL ); | |
101 XFlush( mDisplay ); | |
102 } | |
103 | |
104 #endif | |
105 | |
106 static uint32_t image_width; | |
107 static uint32_t image_height; | |
108 static uint32_t image_format; | |
109 | |
31 | 110 static void check_events(){ |
111 int e=vo_x11_check_events(mDisplay); | |
1 | 112 } |
113 | |
114 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 ) | |
115 { | |
116 int screen; | |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
303
diff
changeset
|
117 int interval, prefer_blank, allow_exp, nothing; |
1 | 118 unsigned int fg,bg; |
119 char *hello=( title == NULL ) ? "X11 render" : title; | |
120 char *name=":0.0"; | |
121 XSizeHints hint; | |
122 XVisualInfo vinfo; | |
123 XEvent xev; | |
124 XGCValues xgcv; | |
125 Colormap theCmap; | |
126 XSetWindowAttributes xswa; | |
127 unsigned long xswamask; | |
128 | |
129 image_height=height; | |
130 image_width=width; | |
131 image_format=format; | |
132 | |
133 if ( X_already_started ) return -1; | |
134 if( !vo_init() ) return 0; // Can't open X11 | |
135 | |
136 if( getenv( "DISPLAY" ) ) name=getenv( "DISPLAY" ); | |
137 | |
138 mDisplay=XOpenDisplay( name ); | |
139 | |
140 if ( mDisplay == NULL ) | |
141 { | |
614 | 142 printf( "Can not open display\n" ); |
1 | 143 return -1; |
144 } | |
145 screen=DefaultScreen( mDisplay ); | |
146 | |
147 hint.x=0; | |
148 hint.y=0; | |
149 hint.width=image_width; | |
150 hint.height=image_height; | |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
151 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
152 #ifdef HAVE_XF86VM |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
153 if (fullscreen) { |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
154 unsigned int modeline_width, modeline_height, vm_event, vm_error; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
155 unsigned int vm_ver, vm_rev; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
156 int i,j,k,have_vm=0,X,Y; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
157 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
158 int modecount; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
159 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
160 if (XF86VidModeQueryExtension(mDisplay, &vm_event, &vm_error)) { |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
161 XF86VidModeQueryVersion(mDisplay, &vm_ver, &vm_rev); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
162 printf("XF86VidMode Extension v%i.%i\n", vm_ver, vm_rev); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
163 have_vm=1; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
164 } else |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
165 printf("XF86VidMode Extenstion not available.\n"); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
166 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
167 if (have_vm) { |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
168 if (vidmodes==NULL) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
169 XF86VidModeGetAllModeLines(mDisplay,screen,&modecount,&vidmodes); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
170 j=0; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
171 modeline_width=vidmodes[0]->hdisplay; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
172 modeline_height=vidmodes[0]->vdisplay; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
173 if ((d_width==0) && (d_height==0)) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
174 { X=image_width; Y=image_height; } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
175 else |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
176 { X=d_width; Y=d_height; } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
177 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
178 for (i=1; i<modecount; i++) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
179 if ((vidmodes[i]->hdisplay >= X) && (vidmodes[i]->vdisplay >= Y)) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
180 if ( (vidmodes[i]->hdisplay < modeline_width ) && (vidmodes[i]->vdisplay < modeline_height) ) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
181 { |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
182 modeline_width=vidmodes[i]->hdisplay; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
183 modeline_height=vidmodes[i]->vdisplay; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
184 j=i; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
185 } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
186 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
187 printf("XF86VM: Selected video mode %dx%d for image size %dx%d.\n",modeline_width, modeline_height, image_width, image_height); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
188 XF86VidModeLockModeSwitch(mDisplay,screen,0); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
189 XF86VidModeSwitchToMode(mDisplay,screen,vidmodes[j]); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
190 XF86VidModeSwitchToMode(mDisplay,screen,vidmodes[j]); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
191 X=(vo_screenwidth-modeline_width)/2; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
192 Y=(vo_screenheight-modeline_height)/2; |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
193 XF86VidModeSetViewPort(mDisplay,screen,X,Y); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
194 } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
195 } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
196 #endif |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
197 |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
198 |
1 | 199 if ( fullscreen ) |
200 { | |
201 hint.width=vo_screenwidth; | |
202 hint.height=vo_screenheight; | |
203 } | |
31 | 204 vo_dwidth=hint.width; |
205 vo_dheight=hint.height; | |
1 | 206 hint.flags=PPosition | PSize; |
207 | |
208 bg=WhitePixel( mDisplay,screen ); | |
209 fg=BlackPixel( mDisplay,screen ); | |
210 | |
211 XGetWindowAttributes( mDisplay,DefaultRootWindow( mDisplay ),&attribs ); | |
212 depth=attribs.depth; | |
213 | |
214 if ( depth != 15 && depth != 16 && depth != 24 && depth != 32 ) depth=24; | |
215 XMatchVisualInfo( mDisplay,screen,depth,TrueColor,&vinfo ); | |
216 | |
217 theCmap =XCreateColormap( mDisplay,RootWindow( mDisplay,screen ), | |
218 vinfo.visual,AllocNone ); | |
219 | |
220 xswa.background_pixel=0; | |
221 xswa.border_pixel=1; | |
222 xswa.colormap=theCmap; | |
223 xswamask=CWBackPixel | CWBorderPixel |CWColormap; | |
224 | |
225 mywindow=XCreateWindow( mDisplay,RootWindow( mDisplay,screen ), | |
226 hint.x,hint.y, | |
227 hint.width,hint.height, | |
228 xswa.border_pixel,depth,CopyFromParent,vinfo.visual,xswamask,&xswa ); | |
384 | 229 vo_hidecursor(mDisplay,mywindow); |
1 | 230 |
31 | 231 if ( fullscreen ) vo_x11_decoration( mDisplay,mywindow,0 ); |
1 | 232 XSelectInput( mDisplay,mywindow,StructureNotifyMask ); |
233 XSetStandardProperties( mDisplay,mywindow,hello,hello,None,NULL,0,&hint ); | |
234 XMapWindow( mDisplay,mywindow ); | |
235 do { XNextEvent( mDisplay,&xev ); } while ( xev.type != MapNotify || xev.xmap.event != mywindow ); | |
236 | |
237 XSelectInput( mDisplay,mywindow,NoEventMask ); | |
238 | |
239 XFlush( mDisplay ); | |
240 XSync( mDisplay,False ); | |
241 | |
242 mygc=XCreateGC( mDisplay,mywindow,0L,&xgcv ); | |
243 | |
244 #ifdef SH_MEM | |
245 if ( XShmQueryExtension( mDisplay ) ) Shmem_Flag=1; | |
246 else | |
247 { | |
248 Shmem_Flag=0; | |
614 | 249 if ( !Quiet_Flag ) printf( "Shared memory not supported\nReverting to normal Xlib\n" ); |
1 | 250 } |
251 if ( Shmem_Flag ) CompletionType=XShmGetEventBase( mDisplay ) + ShmCompletion; | |
252 | |
253 InstallXErrorHandler(); | |
254 | |
255 if ( Shmem_Flag ) | |
256 { | |
257 myximage=XShmCreateImage( mDisplay,vinfo.visual,depth,ZPixmap,NULL,&Shminfo[0],width,image_height ); | |
258 if ( myximage == NULL ) | |
259 { | |
260 if ( myximage != NULL ) XDestroyImage( myximage ); | |
614 | 261 if ( !Quiet_Flag ) printf( "Shared memory error,disabling ( Ximage error )\n" ); |
1 | 262 goto shmemerror; |
263 } | |
264 Shminfo[0].shmid=shmget( IPC_PRIVATE, | |
265 myximage->bytes_per_line * myximage->height , | |
266 IPC_CREAT | 0777 ); | |
267 if ( Shminfo[0].shmid < 0 ) | |
268 { | |
269 XDestroyImage( myximage ); | |
270 if ( !Quiet_Flag ) | |
271 { | |
272 printf( "%s\n",strerror( errno ) ); | |
273 perror( strerror( errno ) ); | |
614 | 274 printf( "Shared memory error,disabling ( seg id error )\n" ); |
1 | 275 } |
276 goto shmemerror; | |
277 } | |
278 Shminfo[0].shmaddr=( char * ) shmat( Shminfo[0].shmid,0,0 ); | |
279 | |
280 if ( Shminfo[0].shmaddr == ( ( char * ) -1 ) ) | |
281 { | |
282 XDestroyImage( myximage ); | |
283 if ( Shminfo[0].shmaddr != ( ( char * ) -1 ) ) shmdt( Shminfo[0].shmaddr ); | |
614 | 284 if ( !Quiet_Flag ) printf( "Shared memory error,disabling ( address error )\n" ); |
1 | 285 goto shmemerror; |
286 } | |
287 myximage->data=Shminfo[0].shmaddr; | |
288 ImageData=( unsigned char * ) myximage->data; | |
289 Shminfo[0].readOnly=False; | |
290 XShmAttach( mDisplay,&Shminfo[0] ); | |
291 | |
292 XSync( mDisplay,False ); | |
293 | |
294 if ( gXErrorFlag ) | |
295 { | |
296 XDestroyImage( myximage ); | |
297 shmdt( Shminfo[0].shmaddr ); | |
614 | 298 if ( !Quiet_Flag ) printf( "Shared memory error,disabling.\n" ); |
1 | 299 gXErrorFlag=0; |
300 goto shmemerror; | |
301 } | |
302 else | |
303 shmctl( Shminfo[0].shmid,IPC_RMID,0 ); | |
304 | |
614 | 305 if ( !Quiet_Flag ) printf( "Sharing memory.\n" ); |
1 | 306 } |
307 else | |
308 { | |
309 shmemerror: | |
310 Shmem_Flag=0; | |
311 #endif | |
312 myximage=XGetImage( mDisplay,mywindow,0,0, | |
313 width,image_height,AllPlanes,ZPixmap ); | |
314 ImageData=myximage->data; | |
315 #ifdef SH_MEM | |
316 } | |
317 | |
318 DeInstallXErrorHandler(); | |
319 #endif | |
320 | |
321 bpp=myximage->bits_per_pixel; | |
322 | |
614 | 323 printf( "X11 color mask: R:%lX G:%lX B:%lX\n",myximage->red_mask,myximage->green_mask,myximage->blue_mask ); |
1 | 324 |
325 // If we have blue in the lowest bit then obviously RGB | |
326 mode=( ( myximage->blue_mask & 0x01 ) != 0 ) ? MODE_RGB : MODE_BGR; | |
327 #ifdef WORDS_BIGENDIAN | |
328 if ( myximage->byte_order != MSBFirst ) | |
329 #else | |
330 if ( myximage->byte_order != LSBFirst ) | |
331 #endif | |
332 { | |
614 | 333 printf( "No support fon non-native XImage byte order!\n" ); |
1 | 334 return -1; |
335 } | |
336 | |
337 if( format==IMGFMT_YV12 ) yuv2rgb_init( ( depth == 24 ) ? bpp : depth,mode ); | |
338 | |
339 XSelectInput( mDisplay,mywindow,StructureNotifyMask | KeyPressMask ); | |
340 X_already_started++; | |
341 | |
342 // vo_initthread( mThread ); | |
343 | |
324 | 344 saver_off(mDisplay); |
1 | 345 return 0; |
346 } | |
347 | |
348 static const vo_info_t* get_info( void ) | |
349 { return &vo_info; } | |
350 | |
351 static void Terminate_Display_Process( void ) | |
352 { | |
353 getchar(); /* wait for enter to remove window */ | |
354 #ifdef SH_MEM | |
355 if ( Shmem_Flag ) | |
356 { | |
357 XShmDetach( mDisplay,&Shminfo[0] ); | |
358 XDestroyImage( myximage ); | |
359 shmdt( Shminfo[0].shmaddr ); | |
360 } | |
361 #endif | |
362 XDestroyWindow( mDisplay,mywindow ); | |
363 XCloseDisplay( mDisplay ); | |
364 X_already_started=0; | |
365 } | |
366 | |
367 static void Display_Image( XImage *myximage,uint8_t *ImageData ) | |
368 { | |
369 #ifdef DISP | |
370 #ifdef SH_MEM | |
371 if ( Shmem_Flag ) | |
372 { | |
373 XShmPutImage( mDisplay,mywindow,mygc,myximage, | |
374 0,0, | |
31 | 375 ( vo_dwidth - myximage->width ) / 2,( vo_dheight - myximage->height ) / 2, |
1 | 376 myximage->width,myximage->height,True ); |
377 XFlush( mDisplay ); | |
378 } | |
379 else | |
380 #endif | |
381 { | |
382 XPutImage( mDisplay,mywindow,mygc,myximage, | |
383 0,0, | |
31 | 384 ( vo_dwidth - myximage->width ) / 2,( vo_dheight - myximage->height ) / 2, |
1 | 385 myximage->width,myximage->height ); |
386 XFlush( mDisplay ); | |
387 } | |
388 #endif | |
389 } | |
390 | |
616 | 391 #include "osd.h" |
612 | 392 |
202 | 393 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
326 | 394 switch(bpp){ |
395 case 24: | |
396 vo_draw_alpha_rgb24(w,h,src,srca,stride,ImageData+3*(y0*image_width+x0),3*image_width); | |
397 break; | |
398 case 32: | |
399 vo_draw_alpha_rgb32(w,h,src,srca,stride,ImageData+4*(y0*image_width+x0),4*image_width); | |
400 break; | |
401 case 15: | |
402 case 16: | |
403 if(depth==15) | |
404 vo_draw_alpha_rgb15(w,h,src,srca,stride,ImageData+2*(y0*image_width+x0),2*image_width); | |
405 else | |
406 vo_draw_alpha_rgb16(w,h,src,srca,stride,ImageData+2*(y0*image_width+x0),2*image_width); | |
407 break; | |
202 | 408 } |
409 } | |
410 | |
31 | 411 static void flip_page( void ){ |
213 | 412 vo_draw_text(image_width,image_height,draw_alpha); |
31 | 413 check_events(); |
414 Display_Image( myximage,ImageData ); | |
415 } | |
1 | 416 |
417 static uint32_t draw_slice( uint8_t *src[],int stride[],int w,int h,int x,int y ) | |
418 { | |
419 uint8_t *dst; | |
420 | |
421 dst=ImageData + ( image_width * y + x ) * ( bpp/8 ); | |
422 yuv2rgb( dst,src[0],src[1],src[2],w,h,image_width*( bpp/8 ),stride[0],stride[1] ); | |
423 return 0; | |
424 } | |
425 | |
426 void rgb15to16_mmx( char* s0,char* d0,int count ); | |
427 | |
428 #if 1 | |
429 static uint32_t draw_frame( uint8_t *src[] ) | |
430 { | |
431 if( image_format==IMGFMT_YV12 ) | |
432 { | |
433 yuv2rgb( ImageData,src[0],src[1],src[2],image_width,image_height,image_width*( bpp/8 ),image_width,image_width/2 ); | |
434 } | |
435 else | |
436 { | |
437 int sbpp=( ( image_format&0xFF )+7 )/8; | |
438 int dbpp=( bpp+7 )/8; | |
439 char *d=ImageData; | |
440 char *s=src[0]; | |
441 //printf( "sbpp=%d dbpp=%d depth=%d bpp=%d\n",sbpp,dbpp,depth,bpp ); | |
442 #if 0 | |
443 // flipped BGR | |
444 int i; | |
445 //printf( "Rendering flipped BGR frame bpp=%d src=%d dst=%d\n",bpp,sbpp,dbpp ); | |
446 s+=sbpp*image_width*image_height; | |
447 for( i=0;i<image_height;i++ ) | |
448 { | |
449 s-=sbpp*image_width; | |
450 if( sbpp==dbpp ) memcpy( d,s,sbpp*image_width ); | |
451 else | |
452 { | |
453 char *s2=s; | |
454 char *d2=d; | |
455 char *e=s2+sbpp*image_width; | |
456 while( s2<e ) | |
457 { | |
458 d2[0]=s2[0]; | |
459 d2[1]=s2[1]; | |
460 d2[2]=s2[2]; | |
461 s2+=sbpp;d2+=dbpp; | |
462 } | |
463 } | |
464 d+=dbpp*image_width; | |
465 } | |
466 #else | |
467 // memcpy( ImageData,src[0],image_width*image_height*bpp ); | |
468 if( sbpp==dbpp ) | |
469 { | |
470 //Display_Image( myximage,s );return 0; | |
471 #if 1 | |
472 if( depth==16 && image_format==( IMGFMT_BGR|15 ) ){ | |
473 // do 15bpp->16bpp | |
474 #ifdef HAVE_MMX | |
475 rgb15to16_mmx( s,d,2*image_width*image_height ); | |
476 #else | |
477 unsigned short *s1=( unsigned short * )s; | |
478 unsigned short *d1=( unsigned short * )d; | |
479 unsigned short *e=s1+image_width*image_height; | |
480 while( s1<e ) | |
481 { | |
482 register int x=*( s1++ ); | |
483 // rrrrrggggggbbbbb | |
484 // 0rrrrrgggggbbbbb | |
485 // 0111 1111 1110 0000=0x7FE0 | |
486 // 00000000000001 1111=0x001F | |
487 *( d1++ )=( x&0x001F )|( ( x&0x7FE0 )<<1 ); | |
488 } | |
489 #endif | |
490 } | |
491 else | |
492 #endif | |
493 { memcpy( d,s,sbpp*image_width*image_height ); } | |
494 } | |
495 else | |
496 { | |
497 char *e=s+sbpp*image_width*image_height; | |
498 //printf( "libvo: using C 24->32bpp conversion\n" ); | |
499 while( s<e ) | |
500 { | |
501 d[0]=s[0]; | |
502 d[1]=s[1]; | |
503 d[2]=s[2]; | |
504 s+=sbpp;d+=dbpp; | |
505 } | |
506 } | |
507 #endif | |
508 } | |
509 //Display_Image( myximage,ImageData ); | |
510 return 0; | |
511 } | |
512 #endif | |
513 | |
514 static uint32_t query_format( uint32_t format ) | |
515 { | |
516 if( !vo_init() ) return 0; // Can't open X11 | |
325 | 517 |
518 if( ( format&IMGFMT_BGR_MASK )==IMGFMT_BGR ){ | |
519 int bpp=format&0xFF; | |
520 if( bpp==vo_depthonscreen ) return 1; | |
521 if( bpp==15 && vo_depthonscreen==16) return 1; // built-in conversion | |
522 if( bpp==24 && vo_depthonscreen==32) return 1; // built-in conversion | |
523 } | |
524 | |
1 | 525 switch( format ) |
324 | 526 { |
1 | 527 case IMGFMT_YV12: return 1; |
324 | 528 } |
1 | 529 return 0; |
530 } | |
531 | |
532 | |
533 static void | |
534 uninit(void) | |
535 { | |
324 | 536 saver_on(mDisplay); // screen saver back on |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
537 #ifdef HAVE_XF86VM |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
538 if (vidmodes!=NULL) |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
539 { |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
540 int screen; screen=DefaultScreen( mDisplay ); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
541 XF86VidModeSwitchToMode(mDisplay,screen,vidmodes[0]); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
542 XF86VidModeSwitchToMode(mDisplay,screen,vidmodes[0]); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
543 free(vidmodes); |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
544 } |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
545 #endif |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
546 |
1 | 547 printf("vo: uninit!\n"); |
548 } | |
549 | |
550 | |
551 |