Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 973:c08282a937d3
Changed to only uninit SDL Video Subsystem.
author | atmosfear |
---|---|
date | Sun, 03 Jun 2001 21:02:46 +0000 |
parents | db06ae8967eb |
children | 4c7b219e126c |
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); | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
144 vo_hidecursor(mDisplay,mywindow); |
1 | 145 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
146 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
|
147 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
|
148 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
|
149 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
|
150 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
|
151 XSync(mDisplay, False); |
723 | 152 #ifdef HAVE_GUI |
153 } | |
154 else | |
155 { | |
156 mywindow=vo_window; | |
157 mygc=vo_gc; | |
158 if ( vo_screenwidth != d_width ) | |
159 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
160 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
|
161 XResizeWindow( mDisplay,mywindow,d_width,d_height ); |
723 | 162 } |
163 else mFullscreen=1; | |
164 } | |
165 #endif | |
1 | 166 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
167 mygc = XCreateGC(mDisplay, mywindow, 0L, &xgcv); |
1 | 168 |
182 | 169 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
|
170 if (Success == XvQueryExtension(mDisplay,&ver,&rel,&req,&ev,&err)) |
182 | 171 { |
172 /* 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
|
173 if (Success != XvQueryAdaptors(mDisplay,DefaultRootWindow(mDisplay), &adaptors,&ai)) |
182 | 174 { |
614 | 175 printf("Xv: XvQueryAdaptors failed"); |
182 | 176 return -1; |
177 } | |
178 /* check adaptors */ | |
179 for (i = 0; i < adaptors; i++) | |
180 { | |
181 if ((ai[i].type & XvInputMask) && (ai[i].type & XvImageMask) && (xv_port == 0)) xv_port = ai[i].base_id; | |
182 } | |
183 /* check image formats */ | |
184 if (xv_port != 0) | |
185 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
186 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
182 | 187 xv_format=0; |
188 for(i = 0; i < formats; i++) | |
189 { | |
614 | 190 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1 | 191 |
182 | 192 if (fo[i].id == format) |
193 { | |
194 xv_format = fo[i].id; | |
195 } | |
196 } | |
197 if (!xv_format) xv_port = 0; | |
198 } | |
199 | |
200 if (xv_port != 0) | |
201 { | |
614 | 202 printf( "using Xvideo port %d for hw scaling\n",xv_port ); |
182 | 203 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
204 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
|
205 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
206 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
207 current_buf=0; |
1 | 208 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
209 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 210 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
|
211 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 212 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 213 |
182 | 214 if ( mFullscreen ) |
215 { | |
216 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
217 drwcX+=drwX; | |
218 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
219 drwcY+=drwY; | |
220 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
221 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 222 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 223 } |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
224 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
225 saver_off(mDisplay); // turning off screen saver |
182 | 226 return 0; |
227 } | |
228 } | |
1 | 229 |
182 | 230 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
231 printf("******** Try with -vo x11 or -vo sdl *********\n"); | |
232 return 1; | |
1 | 233 } |
234 | |
182 | 235 static const vo_info_t * get_info(void) |
236 { return &vo_info; } | |
1 | 237 |
182 | 238 static void allocate_xvimage(int foo) |
1 | 239 { |
182 | 240 /* |
241 * allocate XvImages. FIXME: no error checking, without | |
242 * mit-shm this will bomb... | |
243 */ | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
244 xvimage[foo] = XvShmCreateImage(mDisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); |
1 | 245 |
182 | 246 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
247 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
248 Shminfo[foo].readOnly = False; | |
1 | 249 |
182 | 250 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
|
251 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
|
252 XSync(mDisplay, False); |
182 | 253 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); |
254 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
255 return; | |
1 | 256 } |
257 | |
31 | 258 static void check_events(void) |
1 | 259 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
260 int e=vo_x11_check_events(mDisplay); |
182 | 261 if(e&VO_EVENT_RESIZE) |
262 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
263 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 264 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
|
265 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 266 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 267 |
723 | 268 #ifdef HAVE_GUI |
269 if ( vo_window != None ) | |
270 { | |
271 mFullscreen=0; | |
272 dwidth=mdwidth; dheight=mdheight; | |
273 if ( ( drwWidth == vo_screenwidth )&&( drwHeight == vo_screenheight ) ) | |
274 { | |
275 mFullscreen=1; | |
276 dwidth=vo_screenwidth; | |
277 dheight=vo_screenwidth * mdheight / mdwidth; | |
278 } | |
279 } | |
280 #endif | |
281 | |
182 | 282 if ( mFullscreen ) |
283 { | |
284 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
285 drwcX+=drwX; | |
286 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
287 drwcY+=drwY; | |
288 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
289 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 290 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 291 } |
292 } | |
1 | 293 } |
294 | |
247 | 295 |
296 static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ | |
297 int x,y; | |
298 | |
408 | 299 switch (xv_format) { |
300 case IMGFMT_YV12: | |
301 case IMGFMT_I420: | |
302 case IMGFMT_IYUV: | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
303 vo_draw_alpha_yv12(w,h,src,srca,stride,xvimage[current_buf]->data+image_width*y0+x0,image_width); |
408 | 304 break; |
305 case IMGFMT_YUY2: | |
306 case IMGFMT_YVYU: | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
307 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0),2*image_width); |
408 | 308 break; |
450 | 309 case IMGFMT_UYVY: |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
310 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0)+1,2*image_width); |
450 | 311 break; |
408 | 312 } |
247 | 313 |
314 } | |
315 | |
182 | 316 static void flip_page(void) |
1 | 317 { |
247 | 318 vo_draw_text(image_width,image_height,draw_alpha); |
182 | 319 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
|
320 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], |
182 | 321 0, 0, image_width, image_height, |
322 drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), | |
323 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
|
324 XFlush(mDisplay); |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
325 current_buf=(current_buf+1)%NUM_BUFFERS; |
182 | 326 return; |
1 | 327 } |
328 | |
247 | 329 |
330 | |
182 | 331 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 332 { |
182 | 333 uint8_t *src; |
334 uint8_t *dst; | |
335 int i; | |
336 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
337 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 338 src = image[0]; |
339 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
340 else | |
341 for(i=0;i<h;i++) | |
342 { | |
343 memcpy(dst,src,w); | |
344 src+=stride[0]; | |
345 dst+=image_width; | |
346 } | |
347 | |
348 x/=2;y/=2;w/=2;h/=2; | |
1 | 349 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
350 dst = xvimage[current_buf]->data + image_width * image_height + image_width/2 * y + x; |
182 | 351 src = image[2]; |
352 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
353 else | |
354 for(i=0;i<h;i++) | |
355 { | |
356 memcpy(dst,src,w); | |
357 src+=stride[2]; | |
358 dst+=image_width/2; | |
359 } | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
360 dst = xvimage[current_buf]->data + image_width * image_height * 5 / 4 + image_width/2 * y + x; |
182 | 361 src = image[1]; |
362 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
363 else | |
364 for(i=0;i<h;i++) | |
365 { | |
366 memcpy(dst,src,w); | |
367 src+=stride[1]; | |
368 dst+=image_width/2; | |
369 } | |
370 return 0; | |
1 | 371 } |
372 | |
182 | 373 static uint32_t draw_frame(uint8_t *src[]) |
1 | 374 { |
182 | 375 int foo; |
1 | 376 |
408 | 377 switch (xv_format) { |
378 case IMGFMT_YUY2: | |
379 case IMGFMT_UYVY: | |
380 case IMGFMT_YVYU: | |
381 | |
382 // YUY2 packed, flipped | |
1 | 383 #if 0 |
408 | 384 int i; |
385 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
386 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 387 s+=image_width*image_height; |
388 for(i=0;i<image_height;i++) { | |
389 s-=image_width; | |
390 memcpy(d,s,image_width*2); | |
391 d+=image_width; | |
392 } | |
1 | 393 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
394 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 395 #endif |
408 | 396 break; |
397 | |
398 case IMGFMT_YV12: | |
399 case IMGFMT_I420: | |
400 case IMGFMT_IYUV: | |
401 | |
182 | 402 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
403 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
|
404 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
|
405 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); |
408 | 406 break; |
407 } | |
182 | 408 |
409 return 0; | |
1 | 410 } |
411 | |
182 | 412 static uint32_t query_format(uint32_t format) |
1 | 413 { |
408 | 414 |
415 // umm, this is a kludge, we need to ask the server.. (see init function above) | |
416 return 1; | |
417 /* | |
182 | 418 switch(format) |
419 { | |
420 case IMGFMT_YV12: | |
408 | 421 case IMGFMT_YUY2: |
422 return 1; | |
182 | 423 } |
424 return 0; | |
408 | 425 */ |
1 | 426 } |
427 | |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
428 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
|
429 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
|
430 } |
1 | 431 |
432 | |
433 |