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