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