Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 1698:7f8579211924
fixed ugly gtkChildPID=getppid(); bug
author | arpi |
---|---|
date | Sat, 25 Aug 2001 23:17:13 +0000 |
parents | 22480104ddfd |
children | e8a6425a1cde |
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 | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
97 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
98 static void (*draw_alpha_fnc)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
99 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
100 static void draw_alpha_yv12(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
101 vo_draw_alpha_yv12(w,h,src,srca,stride,xvimage[current_buf]->data+image_width*y0+x0,image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
102 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
103 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
104 static void draw_alpha_yuy2(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
105 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0),2*image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
106 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
107 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
108 static void draw_alpha_uyvy(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
109 vo_draw_alpha_yuy2(w,h,src,srca,stride,xvimage[current_buf]->data+2*(image_width*y0+x0)+1,2*image_width); |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
110 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
111 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
112 static void draw_alpha_null(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
113 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
114 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
115 |
182 | 116 /* |
117 * connect to server, create and map window, | |
1 | 118 * allocate colors and (shared) memory |
119 */ | |
844 | 120 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 | 121 { |
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 // int screen; |
182 | 123 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
|
124 // char *name = ":0.0"; |
182 | 125 XSizeHints hint; |
126 XVisualInfo vinfo; | |
127 XEvent xev; | |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
128 XvPortID xv_p; |
1 | 129 |
182 | 130 XGCValues xgcv; |
131 XSetWindowAttributes xswa; | |
132 unsigned long xswamask; | |
1 | 133 |
182 | 134 image_height = height; |
135 image_width = width; | |
136 image_format=format; | |
1 | 137 |
844 | 138 mFullscreen=flags&1; |
182 | 139 dwidth=d_width; dheight=d_height; |
1265 | 140 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
|
141 |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
142 if (!vo_init()) return -1; |
1 | 143 |
723 | 144 #ifdef HAVE_GUI |
145 if ( vo_window == None ) | |
182 | 146 { |
723 | 147 #endif |
148 hint.x = 0; | |
149 hint.y = 0; | |
150 hint.width = d_width; | |
151 hint.height = d_height; | |
844 | 152 if ( mFullscreen ) |
723 | 153 { |
154 hint.width=vo_screenwidth; | |
155 hint.height=vo_screenheight; | |
156 } | |
157 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
|
158 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), &attribs); |
723 | 159 depth=attribs.depth; |
160 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
|
161 XMatchVisualInfo(mDisplay, mScreen, depth, TrueColor, &vinfo); |
723 | 162 |
163 xswa.background_pixel = 0; | |
164 xswa.border_pixel = 0; | |
165 xswamask = CWBackPixel | CWBorderPixel; | |
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 mywindow = XCreateWindow(mDisplay, RootWindow(mDisplay,mScreen), |
723 | 168 hint.x, hint.y, hint.width, hint.height, |
169 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
|
170 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
|
171 vo_hidecursor(mDisplay,mywindow); |
1 | 172 |
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 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
|
174 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
|
175 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
|
176 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
|
177 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
|
178 XSync(mDisplay, False); |
723 | 179 #ifdef HAVE_GUI |
180 } | |
181 else | |
182 { | |
183 mywindow=vo_window; | |
184 mygc=vo_gc; | |
185 if ( vo_screenwidth != d_width ) | |
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 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
|
188 XResizeWindow( mDisplay,mywindow,d_width,d_height ); |
723 | 189 } |
190 else mFullscreen=1; | |
191 } | |
192 #endif | |
1 | 193 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
194 mygc = XCreateGC(mDisplay, mywindow, 0L, &xgcv); |
1 | 195 |
182 | 196 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
|
197 if (Success == XvQueryExtension(mDisplay,&ver,&rel,&req,&ev,&err)) |
182 | 198 { |
199 /* 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
|
200 if (Success != XvQueryAdaptors(mDisplay,DefaultRootWindow(mDisplay), &adaptors,&ai)) |
182 | 201 { |
614 | 202 printf("Xv: XvQueryAdaptors failed"); |
182 | 203 return -1; |
204 } | |
205 /* check adaptors */ | |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
206 for (i = 0; i < adaptors && xv_port == 0; i++) |
182 | 207 { |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
208 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
|
209 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
|
210 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
|
211 xv_port = xv_p; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
212 break; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
213 } else { |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
214 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
|
215 } |
182 | 216 } |
217 /* check image formats */ | |
218 if (xv_port != 0) | |
219 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
220 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
182 | 221 xv_format=0; |
222 for(i = 0; i < formats; i++) | |
223 { | |
614 | 224 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1 | 225 |
182 | 226 if (fo[i].id == format) |
227 { | |
228 xv_format = fo[i].id; | |
229 } | |
230 } | |
231 if (!xv_format) xv_port = 0; | |
232 } | |
233 | |
234 if (xv_port != 0) | |
235 { | |
614 | 236 printf( "using Xvideo port %d for hw scaling\n",xv_port ); |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
237 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
238 switch (xv_format){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
239 case IMGFMT_YV12: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
240 case IMGFMT_I420: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
241 case IMGFMT_IYUV: draw_alpha_fnc=draw_alpha_yv12; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
242 case IMGFMT_YUY2: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
243 case IMGFMT_YVYU: draw_alpha_fnc=draw_alpha_yuy2; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
244 case IMGFMT_UYVY: draw_alpha_fnc=draw_alpha_uyvy; break; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
245 default: draw_alpha_fnc=draw_alpha_null; |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
246 } |
182 | 247 |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
248 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
|
249 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
250 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
251 current_buf=0; |
1 | 252 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
253 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 254 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
|
255 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 256 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 257 |
182 | 258 if ( mFullscreen ) |
259 { | |
260 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
261 drwcX+=drwX; | |
262 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
263 drwcY+=drwY; | |
264 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
265 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 266 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 267 } |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
268 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
269 saver_off(mDisplay); // turning off screen saver |
182 | 270 return 0; |
271 } | |
272 } | |
1 | 273 |
182 | 274 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
275 printf("******** Try with -vo x11 or -vo sdl *********\n"); | |
276 return 1; | |
1 | 277 } |
278 | |
182 | 279 static const vo_info_t * get_info(void) |
280 { return &vo_info; } | |
1 | 281 |
182 | 282 static void allocate_xvimage(int foo) |
1 | 283 { |
182 | 284 /* |
285 * allocate XvImages. FIXME: no error checking, without | |
286 * mit-shm this will bomb... | |
287 */ | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
288 xvimage[foo] = XvShmCreateImage(mDisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); |
1 | 289 |
182 | 290 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
291 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
292 Shminfo[foo].readOnly = False; | |
1 | 293 |
182 | 294 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
|
295 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
|
296 XSync(mDisplay, False); |
182 | 297 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); |
298 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
299 return; | |
1 | 300 } |
301 | |
31 | 302 static void check_events(void) |
1 | 303 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
304 int e=vo_x11_check_events(mDisplay); |
182 | 305 if(e&VO_EVENT_RESIZE) |
306 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
307 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 308 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
|
309 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 310 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 311 |
723 | 312 #ifdef HAVE_GUI |
313 if ( vo_window != None ) | |
314 { | |
315 mFullscreen=0; | |
316 dwidth=mdwidth; dheight=mdheight; | |
317 if ( ( drwWidth == vo_screenwidth )&&( drwHeight == vo_screenheight ) ) | |
318 { | |
319 mFullscreen=1; | |
320 dwidth=vo_screenwidth; | |
321 dheight=vo_screenwidth * mdheight / mdwidth; | |
322 } | |
323 } | |
324 #endif | |
325 | |
182 | 326 if ( mFullscreen ) |
327 { | |
328 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
329 drwcX+=drwX; | |
330 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
331 drwcY+=drwY; | |
332 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
333 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 334 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 335 } |
336 } | |
1 | 337 } |
338 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
339 static void draw_osd(void) |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
340 { vo_draw_text(image_width,image_height,draw_alpha_fnc);} |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
341 |
182 | 342 static void flip_page(void) |
1 | 343 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
344 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], |
182 | 345 0, 0, image_width, image_height, |
346 drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), | |
347 False); | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
348 if (num_buffers>1){ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
349 current_buf=(current_buf+1)%num_buffers; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
350 XFlush(mDisplay); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
351 } else |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
352 XSync(mDisplay, False); |
182 | 353 return; |
1 | 354 } |
355 | |
247 | 356 |
357 | |
182 | 358 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 359 { |
182 | 360 uint8_t *src; |
361 uint8_t *dst; | |
362 int i; | |
363 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
364 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 365 src = image[0]; |
366 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
367 else | |
368 for(i=0;i<h;i++) | |
369 { | |
370 memcpy(dst,src,w); | |
371 src+=stride[0]; | |
372 dst+=image_width; | |
373 } | |
374 | |
375 x/=2;y/=2;w/=2;h/=2; | |
1 | 376 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
377 dst = xvimage[current_buf]->data + image_width * image_height + image_width/2 * y + x; |
182 | 378 src = image[2]; |
379 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
380 else | |
381 for(i=0;i<h;i++) | |
382 { | |
383 memcpy(dst,src,w); | |
384 src+=stride[2]; | |
385 dst+=image_width/2; | |
386 } | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
387 dst = xvimage[current_buf]->data + image_width * image_height * 5 / 4 + image_width/2 * y + x; |
182 | 388 src = image[1]; |
389 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
390 else | |
391 for(i=0;i<h;i++) | |
392 { | |
393 memcpy(dst,src,w); | |
394 src+=stride[1]; | |
395 dst+=image_width/2; | |
396 } | |
397 return 0; | |
1 | 398 } |
399 | |
182 | 400 static uint32_t draw_frame(uint8_t *src[]) |
1 | 401 { |
182 | 402 int foo; |
1 | 403 |
408 | 404 switch (xv_format) { |
405 case IMGFMT_YUY2: | |
406 case IMGFMT_UYVY: | |
407 case IMGFMT_YVYU: | |
408 | |
409 // YUY2 packed, flipped | |
1 | 410 #if 0 |
408 | 411 int i; |
412 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
413 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 414 s+=image_width*image_height; |
415 for(i=0;i<image_height;i++) { | |
416 s-=image_width; | |
417 memcpy(d,s,image_width*2); | |
418 d+=image_width; | |
419 } | |
1 | 420 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
421 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 422 #endif |
408 | 423 break; |
424 | |
425 case IMGFMT_YV12: | |
426 case IMGFMT_I420: | |
427 case IMGFMT_IYUV: | |
428 | |
182 | 429 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
430 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
|
431 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
|
432 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); |
408 | 433 break; |
434 } | |
182 | 435 |
436 return 0; | |
1 | 437 } |
438 | |
182 | 439 static uint32_t query_format(uint32_t format) |
1 | 440 { |
408 | 441 |
442 // umm, this is a kludge, we need to ask the server.. (see init function above) | |
443 return 1; | |
444 /* | |
182 | 445 switch(format) |
446 { | |
447 case IMGFMT_YV12: | |
408 | 448 case IMGFMT_YUY2: |
449 return 1; | |
182 | 450 } |
451 return 0; | |
408 | 452 */ |
1 | 453 } |
454 | |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
455 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
|
456 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
|
457 } |
1 | 458 |
459 | |
460 |