Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 2221:9fd911c931cd
minor cleanups
median deinterlace in MMX
fixed typos
author | michael |
---|---|
date | Tue, 16 Oct 2001 02:31:14 +0000 |
parents | f5146118777e |
children | 48f0ac1e9d13 |
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" |
2054 | 39 #include "aspect.h" |
350 | 40 |
182 | 41 static vo_info_t vo_info = |
1 | 42 { |
182 | 43 "X11/Xv", |
44 "xv", | |
45 "Gerd Knorr <kraxel@goldbach.in-berlin.de>", | |
46 "" | |
1 | 47 }; |
48 | |
49 /* since it doesn't seem to be defined on some platforms */ | |
50 int XShmGetEventBase(Display*); | |
51 | |
52 /* local data */ | |
53 static unsigned char *ImageData; | |
54 | |
55 /* 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
|
56 //static Display *mydisplay; |
1 | 57 static Window mywindow; |
58 static GC mygc; | |
59 static XImage *myximage; | |
60 static int depth, bpp, mode; | |
61 static XWindowAttributes attribs; | |
62 | |
63 #include <X11/extensions/Xv.h> | |
64 #include <X11/extensions/Xvlib.h> | |
65 // FIXME: dynamically allocate this stuff | |
66 static void allocate_xvimage(int); | |
67 static unsigned int ver,rel,req,ev,err; | |
68 static unsigned int formats, adaptors,i,xv_port,xv_format; | |
69 static XvAdaptorInfo *ai; | |
70 static XvImageFormatValues *fo; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
71 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
72 static int current_buf=0; |
1265 | 73 static int num_buffers=1; // default |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
74 static XvImage* xvimage[NUM_BUFFERS]; |
1 | 75 |
76 #include <sys/ipc.h> | |
77 #include <sys/shm.h> | |
78 #include <X11/extensions/XShm.h> | |
79 | |
80 static int Shmem_Flag; | |
81 static int Quiet_Flag; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
82 static XShmSegmentInfo Shminfo[NUM_BUFFERS]; |
1 | 83 static int gXErrorFlag; |
84 static int CompletionType = -1; | |
85 | |
86 static uint32_t image_width; | |
87 static uint32_t image_height; | |
88 static uint32_t image_format; | |
89 | |
182 | 90 static Window mRoot; |
91 static uint32_t drwX,drwY,drwWidth,drwHeight,drwBorderWidth,drwDepth; | |
92 static uint32_t drwcX,drwcY,dwidth,dheight,mFullscreen; | |
1 | 93 |
1775 | 94 #ifdef HAVE_NEW_GUI |
723 | 95 static uint32_t mdwidth,mdheight; |
96 #endif | |
97 | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
98 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
99 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
|
100 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
101 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
|
102 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
|
103 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
104 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
105 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
|
106 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
|
107 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
108 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
109 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
|
110 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
|
111 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
112 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
113 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
|
114 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
115 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
116 |
182 | 117 /* |
118 * connect to server, create and map window, | |
1 | 119 * allocate colors and (shared) memory |
120 */ | |
844 | 121 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 | 122 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
123 // int screen; |
182 | 124 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
|
125 // char *name = ":0.0"; |
182 | 126 XSizeHints hint; |
127 XVisualInfo vinfo; | |
128 XEvent xev; | |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
129 XvPortID xv_p; |
1 | 130 |
182 | 131 XGCValues xgcv; |
132 XSetWindowAttributes xswa; | |
133 unsigned long xswamask; | |
1 | 134 |
182 | 135 image_height = height; |
136 image_width = width; | |
137 image_format=format; | |
1 | 138 |
1775 | 139 #ifdef HAVE_NEW_GUI |
140 mdwidth=width; | |
141 mdheight=height; | |
142 #endif | |
143 | |
844 | 144 mFullscreen=flags&1; |
182 | 145 dwidth=d_width; dheight=d_height; |
1265 | 146 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
|
147 |
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 (!vo_init()) return -1; |
1 | 149 |
1775 | 150 #ifdef HAVE_NEW_GUI |
723 | 151 if ( vo_window == None ) |
182 | 152 { |
723 | 153 #endif |
154 hint.x = 0; | |
155 hint.y = 0; | |
156 hint.width = d_width; | |
157 hint.height = d_height; | |
844 | 158 if ( mFullscreen ) |
723 | 159 { |
160 hint.width=vo_screenwidth; | |
161 hint.height=vo_screenheight; | |
2054 | 162 #ifdef X11_FULLSCREEN |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
163 /* this code replaces X11_FULLSCREEN hack in mplayer.c |
2054 | 164 * aspect() is available through aspect.h for all vos. |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
165 * besides zooming should only be done with -zoom, |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
166 * but I leave the old -fs behaviour so users don't get |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
167 * irritated for now (and send lots o' mails ;) ::atmos |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
168 */ |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
169 |
2054 | 170 { |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
171 aspect(&d_width,&d_height,vo_screenwidth,vo_screenheight); |
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
172 dwidth=d_width; dheight=d_height; |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
173 } |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
174 #endif |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
175 |
723 | 176 } |
177 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
|
178 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), &attribs); |
723 | 179 depth=attribs.depth; |
180 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
|
181 XMatchVisualInfo(mDisplay, mScreen, depth, TrueColor, &vinfo); |
723 | 182 |
183 xswa.background_pixel = 0; | |
184 xswa.border_pixel = 0; | |
185 xswamask = CWBackPixel | CWBorderPixel; | |
1 | 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 mywindow = XCreateWindow(mDisplay, RootWindow(mDisplay,mScreen), |
723 | 188 hint.x, hint.y, hint.width, hint.height, |
189 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
|
190 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
|
191 vo_hidecursor(mDisplay,mywindow); |
1 | 192 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
193 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
|
194 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
|
195 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
|
196 XMapWindow(mDisplay, mywindow); |
1775 | 197 mygc = XCreateGC(mDisplay, mywindow, 0L, &xgcv); |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
198 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
|
199 XSync(mDisplay, False); |
1775 | 200 #ifdef HAVE_NEW_GUI |
723 | 201 } |
202 else | |
203 { | |
204 mywindow=vo_window; | |
205 mygc=vo_gc; | |
206 } | |
207 #endif | |
1 | 208 |
182 | 209 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
|
210 if (Success == XvQueryExtension(mDisplay,&ver,&rel,&req,&ev,&err)) |
182 | 211 { |
212 /* 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
|
213 if (Success != XvQueryAdaptors(mDisplay,DefaultRootWindow(mDisplay), &adaptors,&ai)) |
182 | 214 { |
614 | 215 printf("Xv: XvQueryAdaptors failed"); |
182 | 216 return -1; |
217 } | |
218 /* check adaptors */ | |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
219 for (i = 0; i < adaptors && xv_port == 0; i++) |
182 | 220 { |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
221 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
|
222 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
|
223 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
|
224 xv_port = xv_p; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
225 break; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
226 } else { |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
227 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
|
228 } |
182 | 229 } |
230 /* check image formats */ | |
231 if (xv_port != 0) | |
232 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
233 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
182 | 234 xv_format=0; |
235 for(i = 0; i < formats; i++) | |
236 { | |
614 | 237 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1 | 238 |
182 | 239 if (fo[i].id == format) |
240 { | |
241 xv_format = fo[i].id; | |
242 } | |
243 } | |
244 if (!xv_format) xv_port = 0; | |
245 } | |
246 | |
247 if (xv_port != 0) | |
248 { | |
614 | 249 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
|
250 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
251 switch (xv_format){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
252 case IMGFMT_YV12: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
253 case IMGFMT_I420: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
254 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
|
255 case IMGFMT_YUY2: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
256 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
|
257 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
|
258 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
|
259 } |
182 | 260 |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
261 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
|
262 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
263 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
264 current_buf=0; |
1 | 265 |
1818 | 266 #ifdef HAVE_NEW_GUI |
267 if ( vo_window != None ) | |
268 { | |
269 mFullscreen=0; | |
270 dwidth=mdwidth; dheight=mdheight; | |
271 if ( ( vo_dwidth == vo_screenwidth )&&( vo_dheight == vo_screenheight ) ) | |
272 { | |
273 mFullscreen=1; | |
274 dwidth=vo_screenwidth; | |
275 dheight=vo_screenwidth * mdheight / mdwidth; | |
276 } | |
277 } | |
278 #endif | |
279 | |
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 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 281 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
|
282 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 283 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 284 |
182 | 285 if ( mFullscreen ) |
286 { | |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
287 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
182 | 288 drwcX+=drwX; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
289 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; |
182 | 290 drwcY+=drwY; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
291 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); |
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
292 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); |
614 | 293 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 294 } |
1794 | 295 #ifdef HAVE_NEW_GUI |
296 if ( vo_window == None ) | |
297 #endif | |
1818 | 298 saver_off(mDisplay); // turning off screen saver |
182 | 299 return 0; |
300 } | |
301 } | |
1 | 302 |
182 | 303 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
304 printf("******** Try with -vo x11 or -vo sdl *********\n"); | |
305 return 1; | |
1 | 306 } |
307 | |
182 | 308 static const vo_info_t * get_info(void) |
309 { return &vo_info; } | |
1 | 310 |
182 | 311 static void allocate_xvimage(int foo) |
1 | 312 { |
182 | 313 /* |
314 * allocate XvImages. FIXME: no error checking, without | |
315 * mit-shm this will bomb... | |
316 */ | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
317 xvimage[foo] = XvShmCreateImage(mDisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); |
1 | 318 |
182 | 319 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
320 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
321 Shminfo[foo].readOnly = False; | |
1 | 322 |
182 | 323 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
|
324 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
|
325 XSync(mDisplay, False); |
182 | 326 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); |
327 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
328 return; | |
1 | 329 } |
330 | |
1794 | 331 static void deallocate_xvimage(int foo) |
332 { | |
333 XShmDetach( mDisplay,&Shminfo[foo] ); | |
334 shmdt( Shminfo[foo].shmaddr ); | |
335 XFlush( mDisplay ); | |
336 XSync(mDisplay, False); | |
337 return; | |
338 } | |
339 | |
31 | 340 static void check_events(void) |
1 | 341 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
342 int e=vo_x11_check_events(mDisplay); |
182 | 343 if(e&VO_EVENT_RESIZE) |
344 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
345 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 346 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
|
347 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 348 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 349 |
1775 | 350 #ifdef HAVE_NEW_GUI |
723 | 351 if ( vo_window != None ) |
352 { | |
353 mFullscreen=0; | |
354 dwidth=mdwidth; dheight=mdheight; | |
1818 | 355 if ( ( vo_dwidth == vo_screenwidth )&&( vo_dheight == vo_screenheight ) ) |
723 | 356 { |
357 mFullscreen=1; | |
358 dwidth=vo_screenwidth; | |
359 dheight=vo_screenwidth * mdheight / mdwidth; | |
360 } | |
361 } | |
362 #endif | |
363 | |
182 | 364 if ( mFullscreen ) |
365 { | |
366 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; | |
367 drwcX+=drwX; | |
368 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
369 drwcY+=drwY; | |
370 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
371 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 372 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 373 } |
374 } | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
375 if ( e & VO_EVENT_EXPOSE ) |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
376 { |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
377 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], 0, 0, image_width, image_height, drwX, drwY, 1, 1, False); |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
378 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], 0, 0, image_width, image_height, drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), False); |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
379 } |
1 | 380 } |
381 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
382 static void draw_osd(void) |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
383 { 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
|
384 |
182 | 385 static void flip_page(void) |
1 | 386 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
387 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], |
182 | 388 0, 0, image_width, image_height, |
389 drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), | |
390 False); | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
391 if (num_buffers>1){ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
392 current_buf=(current_buf+1)%num_buffers; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
393 XFlush(mDisplay); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
394 } else |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
395 XSync(mDisplay, False); |
182 | 396 return; |
1 | 397 } |
398 | |
247 | 399 |
400 | |
182 | 401 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 402 { |
182 | 403 uint8_t *src; |
404 uint8_t *dst; | |
405 int i; | |
406 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
407 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 408 src = image[0]; |
409 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
410 else | |
411 for(i=0;i<h;i++) | |
412 { | |
413 memcpy(dst,src,w); | |
414 src+=stride[0]; | |
415 dst+=image_width; | |
416 } | |
417 | |
418 x/=2;y/=2;w/=2;h/=2; | |
1 | 419 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
420 dst = xvimage[current_buf]->data + image_width * image_height + image_width/2 * y + x; |
182 | 421 src = image[2]; |
422 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
423 else | |
424 for(i=0;i<h;i++) | |
425 { | |
426 memcpy(dst,src,w); | |
427 src+=stride[2]; | |
428 dst+=image_width/2; | |
429 } | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
430 dst = xvimage[current_buf]->data + image_width * image_height * 5 / 4 + image_width/2 * y + x; |
182 | 431 src = image[1]; |
432 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
433 else | |
434 for(i=0;i<h;i++) | |
435 { | |
436 memcpy(dst,src,w); | |
437 src+=stride[1]; | |
438 dst+=image_width/2; | |
439 } | |
440 return 0; | |
1 | 441 } |
442 | |
182 | 443 static uint32_t draw_frame(uint8_t *src[]) |
1 | 444 { |
182 | 445 int foo; |
1 | 446 |
408 | 447 switch (xv_format) { |
448 case IMGFMT_YUY2: | |
449 case IMGFMT_UYVY: | |
450 case IMGFMT_YVYU: | |
451 | |
452 // YUY2 packed, flipped | |
1 | 453 #if 0 |
408 | 454 int i; |
455 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
456 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 457 s+=image_width*image_height; |
458 for(i=0;i<image_height;i++) { | |
459 s-=image_width; | |
460 memcpy(d,s,image_width*2); | |
461 d+=image_width; | |
462 } | |
1 | 463 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
464 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 465 #endif |
408 | 466 break; |
467 | |
468 case IMGFMT_YV12: | |
469 case IMGFMT_I420: | |
470 case IMGFMT_IYUV: | |
471 | |
182 | 472 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
473 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
|
474 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
|
475 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); |
408 | 476 break; |
477 } | |
182 | 478 |
479 return 0; | |
1 | 480 } |
481 | |
182 | 482 static uint32_t query_format(uint32_t format) |
1 | 483 { |
408 | 484 |
485 // umm, this is a kludge, we need to ask the server.. (see init function above) | |
486 return 1; | |
487 /* | |
182 | 488 switch(format) |
489 { | |
490 case IMGFMT_YV12: | |
408 | 491 case IMGFMT_YUY2: |
492 return 1; | |
182 | 493 } |
494 return 0; | |
408 | 495 */ |
1 | 496 } |
497 | |
1852 | 498 static void uninit(void) |
499 { | |
500 int i; | |
1794 | 501 #ifdef HAVE_NEW_GUI |
1852 | 502 if ( vo_window == None ) |
1794 | 503 #endif |
1924 | 504 { |
1852 | 505 saver_on(mDisplay); // screen saver back on |
1924 | 506 XDestroyWindow( mDisplay,mywindow ); |
507 } | |
1852 | 508 for( i=0;i<num_buffers;i++ ) deallocate_xvimage( i ); |
322
4e69a8e2700a
Screensaver and monitor powersafe function is switched off when playing a
laaz
parents:
249
diff
changeset
|
509 } |
1 | 510 |
511 | |
512 |