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