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