Mercurial > mplayer.hg
annotate libvo/vo_xv.c @ 3938:745c37031e1e
some links placed (nvidia fuckoz.)
author | gabucino |
---|---|
date | Wed, 02 Jan 2002 00:16:56 +0000 |
parents | fc1db33734e7 |
children | 87538547c8f4 |
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 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
135 aspect_save_orig(width,height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
136 aspect_save_prescale(d_width,d_height); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
137 |
182 | 138 image_height = height; |
139 image_width = width; | |
140 image_format=format; | |
1 | 141 |
1775 | 142 #ifdef HAVE_NEW_GUI |
143 mdwidth=width; | |
144 mdheight=height; | |
145 #endif | |
146 | |
844 | 147 mFullscreen=flags&1; |
1265 | 148 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
|
149 |
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
150 if (!vo_init()) return -1; |
1 | 151 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
152 aspect_save_screenres(vo_screenwidth,vo_screenheight); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
153 |
1775 | 154 #ifdef HAVE_NEW_GUI |
723 | 155 if ( vo_window == None ) |
182 | 156 { |
723 | 157 #endif |
158 hint.x = 0; | |
159 hint.y = 0; | |
160 hint.width = d_width; | |
161 hint.height = d_height; | |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
162 aspect(&d_width,&d_height,A_NOZOOM); |
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
163 |
844 | 164 if ( mFullscreen ) |
723 | 165 { |
166 hint.width=vo_screenwidth; | |
167 hint.height=vo_screenheight; | |
2054 | 168 #ifdef X11_FULLSCREEN |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
169 /* this code replaces X11_FULLSCREEN hack in mplayer.c |
2054 | 170 * 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
|
171 * 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
|
172 * 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
|
173 * 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
|
174 */ |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
175 |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
176 aspect(&d_width,&d_height,A_ZOOM); |
2031
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
177 #endif |
624df8ea0e0e
New aspect prescale code, parses aspect value from mpeg sequence header or commandline.
atmos4
parents:
1924
diff
changeset
|
178 |
723 | 179 } |
2249
48f0ac1e9d13
Update to new (cleaner, more bugfree, better) aspect api. vo_gl vo_gl2 and vo_xmga are untested!
atmos4
parents:
2055
diff
changeset
|
180 dwidth=d_width; dheight=d_height; //XXX: what are the copy vars used for? |
723 | 181 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
|
182 XGetWindowAttributes(mDisplay, DefaultRootWindow(mDisplay), &attribs); |
723 | 183 depth=attribs.depth; |
184 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
|
185 XMatchVisualInfo(mDisplay, mScreen, depth, TrueColor, &vinfo); |
723 | 186 |
187 xswa.background_pixel = 0; | |
188 xswa.border_pixel = 0; | |
189 xswamask = CWBackPixel | CWBorderPixel; | |
1 | 190 |
3830 | 191 if ( WinID>=0 ){ |
192 mywindow = WinID ? ((Window)WinID) : RootWindow(mDisplay,mScreen); | |
193 XUnmapWindow( mDisplay,mywindow ); | |
194 XChangeWindowAttributes( mDisplay,mywindow,xswamask,&xswa ); | |
195 } else | |
196 | |
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 mywindow = XCreateWindow(mDisplay, RootWindow(mDisplay,mScreen), |
3830 | 198 hint.x, hint.y, hint.width, hint.height, |
199 0, depth,CopyFromParent,vinfo.visual,xswamask,&xswa); | |
200 | |
1137
4c7b219e126c
patch: some X11 compliance fixed: set ClassHint and better fullscreen mode
arpi_esp
parents:
922
diff
changeset
|
201 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
|
202 vo_hidecursor(mDisplay,mywindow); |
1 | 203 |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
204 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
|
205 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
|
206 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
|
207 XMapWindow(mDisplay, mywindow); |
1775 | 208 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
|
209 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
|
210 XSync(mDisplay, False); |
1775 | 211 #ifdef HAVE_NEW_GUI |
723 | 212 } |
213 else | |
214 { | |
215 mywindow=vo_window; | |
216 mygc=vo_gc; | |
217 } | |
218 #endif | |
1 | 219 |
182 | 220 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
|
221 if (Success == XvQueryExtension(mDisplay,&ver,&rel,&req,&ev,&err)) |
182 | 222 { |
223 /* 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
|
224 if (Success != XvQueryAdaptors(mDisplay,DefaultRootWindow(mDisplay), &adaptors,&ai)) |
182 | 225 { |
614 | 226 printf("Xv: XvQueryAdaptors failed"); |
182 | 227 return -1; |
228 } | |
229 /* check adaptors */ | |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
230 for (i = 0; i < adaptors && xv_port == 0; i++) |
182 | 231 { |
1186
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
232 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
|
233 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
|
234 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
|
235 xv_port = xv_p; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
236 break; |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
237 } else { |
beb0ee0f3a25
Xv port locking patch by Artur Zaprzala <artur.zaprzala@talex.com.pl>
arpi_esp
parents:
1137
diff
changeset
|
238 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
|
239 } |
182 | 240 } |
241 /* check image formats */ | |
242 if (xv_port != 0) | |
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 fo = XvListImageFormats(mDisplay, xv_port, (int*)&formats); |
182 | 245 xv_format=0; |
246 for(i = 0; i < formats; i++) | |
247 { | |
614 | 248 printf("Xvideo image format: 0x%x (%4.4s) %s\n", fo[i].id,(char*)&fo[i].id, (fo[i].format == XvPacked) ? "packed" : "planar"); |
1 | 249 |
182 | 250 if (fo[i].id == format) |
251 { | |
252 xv_format = fo[i].id; | |
253 } | |
254 } | |
255 if (!xv_format) xv_port = 0; | |
256 } | |
257 | |
258 if (xv_port != 0) | |
259 { | |
614 | 260 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
|
261 |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
262 switch (xv_format){ |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
263 case IMGFMT_YV12: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
264 case IMGFMT_I420: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
265 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
|
266 case IMGFMT_YUY2: |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
267 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
|
268 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
|
269 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
|
270 } |
182 | 271 |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
272 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
|
273 allocate_xvimage(current_buf); |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
274 |
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
275 current_buf=0; |
1 | 276 |
1818 | 277 #ifdef HAVE_NEW_GUI |
278 if ( vo_window != None ) | |
279 { | |
280 mFullscreen=0; | |
281 dwidth=mdwidth; dheight=mdheight; | |
282 if ( ( vo_dwidth == vo_screenwidth )&&( vo_dheight == vo_screenheight ) ) | |
283 { | |
284 mFullscreen=1; | |
285 dwidth=vo_screenwidth; | |
286 dheight=vo_screenwidth * mdheight / mdwidth; | |
287 } | |
288 } | |
289 #endif | |
290 | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
291 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 292 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
|
293 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 294 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 295 |
3558 | 296 aspect(&dwidth,&dheight,A_NOZOOM); |
182 | 297 if ( mFullscreen ) |
298 { | |
3558 | 299 aspect(&dwidth,&dheight,A_ZOOM); |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
300 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
182 | 301 drwcX+=drwX; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
302 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; |
182 | 303 drwcY+=drwY; |
2055
f5146118777e
Simplified aspect() for the loss of some functionality to get ansi compatibility.
atmos4
parents:
2054
diff
changeset
|
304 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
|
305 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); |
614 | 306 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 307 } |
1794 | 308 #ifdef HAVE_NEW_GUI |
309 if ( vo_window == None ) | |
310 #endif | |
1818 | 311 saver_off(mDisplay); // turning off screen saver |
182 | 312 return 0; |
313 } | |
314 } | |
1 | 315 |
182 | 316 printf("Sorry, Xv not supported by this X11 version/driver\n"); |
317 printf("******** Try with -vo x11 or -vo sdl *********\n"); | |
318 return 1; | |
1 | 319 } |
320 | |
182 | 321 static const vo_info_t * get_info(void) |
322 { return &vo_info; } | |
1 | 323 |
182 | 324 static void allocate_xvimage(int foo) |
1 | 325 { |
182 | 326 /* |
327 * allocate XvImages. FIXME: no error checking, without | |
328 * mit-shm this will bomb... | |
329 */ | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
330 xvimage[foo] = XvShmCreateImage(mDisplay, xv_port, xv_format, 0, image_width, image_height, &Shminfo[foo]); |
1 | 331 |
182 | 332 Shminfo[foo].shmid = shmget(IPC_PRIVATE, xvimage[foo]->data_size, IPC_CREAT | 0777); |
333 Shminfo[foo].shmaddr = (char *) shmat(Shminfo[foo].shmid, 0, 0); | |
334 Shminfo[foo].readOnly = False; | |
1 | 335 |
182 | 336 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
|
337 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
|
338 XSync(mDisplay, False); |
182 | 339 shmctl(Shminfo[foo].shmid, IPC_RMID, 0); |
340 memset(xvimage[foo]->data,128,xvimage[foo]->data_size); | |
341 return; | |
1 | 342 } |
343 | |
1794 | 344 static void deallocate_xvimage(int foo) |
345 { | |
346 XShmDetach( mDisplay,&Shminfo[foo] ); | |
347 shmdt( Shminfo[foo].shmaddr ); | |
348 XFlush( mDisplay ); | |
349 XSync(mDisplay, False); | |
350 return; | |
351 } | |
352 | |
31 | 353 static void check_events(void) |
1 | 354 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
355 int e=vo_x11_check_events(mDisplay); |
182 | 356 if(e&VO_EVENT_RESIZE) |
357 { | |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
358 XGetGeometry( mDisplay,mywindow,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth ); |
182 | 359 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
|
360 XTranslateCoordinates( mDisplay,mywindow,mRoot,0,0,&drwcX,&drwcY,&mRoot ); |
614 | 361 printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
1 | 362 |
1775 | 363 #ifdef HAVE_NEW_GUI |
723 | 364 if ( vo_window != None ) |
365 { | |
366 mFullscreen=0; | |
367 dwidth=mdwidth; dheight=mdheight; | |
1818 | 368 if ( ( vo_dwidth == vo_screenwidth )&&( vo_dheight == vo_screenheight ) ) |
723 | 369 { |
370 mFullscreen=1; | |
371 dwidth=vo_screenwidth; | |
372 dheight=vo_screenwidth * mdheight / mdwidth; | |
373 } | |
374 } | |
375 #endif | |
376 | |
3558 | 377 aspect(&dwidth,&dheight,A_NOZOOM); |
182 | 378 if ( mFullscreen ) |
379 { | |
3558 | 380 aspect(&dwidth,&dheight,A_ZOOM); |
182 | 381 drwX=( vo_screenwidth - (dwidth > vo_screenwidth?vo_screenwidth:dwidth) ) / 2; |
382 drwcX+=drwX; | |
383 drwY=( vo_screenheight - (dheight > vo_screenheight?vo_screenheight:dheight) ) / 2; | |
384 drwcY+=drwY; | |
385 drwWidth=(dwidth > vo_screenwidth?vo_screenwidth:dwidth); | |
386 drwHeight=(dheight > vo_screenheight?vo_screenheight:dheight); | |
614 | 387 printf( "[xv-fs] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight ); |
182 | 388 } |
389 } | |
1858
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
390 if ( e & VO_EVENT_EXPOSE ) |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
391 { |
88a88d0a3f94
fix skin changing, xv fullscreen redraw bug, etc.
pontscho
parents:
1852
diff
changeset
|
392 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
|
393 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
|
394 } |
1 | 395 } |
396 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
397 static void draw_osd(void) |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
398 { 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
|
399 |
182 | 400 static void flip_page(void) |
1 | 401 { |
922
db06ae8967eb
Centralized and cleaned up X11 connecting, fixed remote X11 playing, -display option for mplayer. SHOULD BE TESTED.
lgb
parents:
844
diff
changeset
|
402 XvShmPutImage(mDisplay, xv_port, mywindow, mygc, xvimage[current_buf], |
182 | 403 0, 0, image_width, image_height, |
404 drwX,drwY,drwWidth,(mFullscreen?drwHeight - 1:drwHeight), | |
405 False); | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
406 if (num_buffers>1){ |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
407 current_buf=(current_buf+1)%num_buffers; |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
408 XFlush(mDisplay); |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
409 } else |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1265
diff
changeset
|
410 XSync(mDisplay, False); |
182 | 411 return; |
1 | 412 } |
413 | |
247 | 414 |
415 | |
182 | 416 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) |
1 | 417 { |
182 | 418 uint8_t *src; |
419 uint8_t *dst; | |
420 int i; | |
421 | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
422 dst = xvimage[current_buf]->data + image_width * y + x; |
182 | 423 src = image[0]; |
424 if(w==stride[0] && w==image_width) memcpy(dst,src,w*h); | |
425 else | |
426 for(i=0;i<h;i++) | |
427 { | |
428 memcpy(dst,src,w); | |
429 src+=stride[0]; | |
430 dst+=image_width; | |
431 } | |
432 | |
433 x/=2;y/=2;w/=2;h/=2; | |
1 | 434 |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
435 dst = xvimage[current_buf]->data + image_width * image_height + image_width/2 * y + x; |
182 | 436 src = image[2]; |
437 if(w==stride[2] && w==image_width/2) memcpy(dst,src,w*h); | |
438 else | |
439 for(i=0;i<h;i++) | |
440 { | |
441 memcpy(dst,src,w); | |
442 src+=stride[2]; | |
443 dst+=image_width/2; | |
444 } | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
445 dst = xvimage[current_buf]->data + image_width * image_height * 5 / 4 + image_width/2 * y + x; |
182 | 446 src = image[1]; |
447 if(w==stride[1] && w==image_width/2) memcpy(dst,src,w*h); | |
448 else | |
449 for(i=0;i<h;i++) | |
450 { | |
451 memcpy(dst,src,w); | |
452 src+=stride[1]; | |
453 dst+=image_width/2; | |
454 } | |
455 return 0; | |
1 | 456 } |
457 | |
182 | 458 static uint32_t draw_frame(uint8_t *src[]) |
1 | 459 { |
182 | 460 int foo; |
1 | 461 |
408 | 462 switch (xv_format) { |
463 case IMGFMT_YUY2: | |
464 case IMGFMT_UYVY: | |
465 case IMGFMT_YVYU: | |
466 | |
467 // YUY2 packed, flipped | |
1 | 468 #if 0 |
408 | 469 int i; |
470 unsigned short *s=(unsigned short *)src[0]; | |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
471 unsigned short *d=(unsigned short *)xvimage[current_buf]->data; |
408 | 472 s+=image_width*image_height; |
473 for(i=0;i<image_height;i++) { | |
474 s-=image_width; | |
475 memcpy(d,s,image_width*2); | |
476 d+=image_width; | |
477 } | |
1 | 478 #else |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
479 memcpy(xvimage[current_buf]->data,src[0],image_width*image_height*2); |
1 | 480 #endif |
408 | 481 break; |
482 | |
483 case IMGFMT_YV12: | |
484 case IMGFMT_I420: | |
485 case IMGFMT_IYUV: | |
486 | |
182 | 487 // YV12 planar |
676
428755f858f7
multi buffering added (modify NUM_BUFFERS in the source)
arpi_esp
parents:
616
diff
changeset
|
488 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
|
489 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
|
490 memcpy(xvimage[current_buf]->data+image_width*image_height*5/4,src[1],image_width*image_height/4); |
408 | 491 break; |
492 } | |
182 | 493 |
494 return 0; | |
1 | 495 } |
496 | |
182 | 497 static uint32_t query_format(uint32_t format) |
1 | 498 { |
408 | 499 |
500 // umm, this is a kludge, we need to ask the server.. (see init function above) | |
501 return 1; | |
502 /* | |
182 | 503 switch(format) |
504 { | |
505 case IMGFMT_YV12: | |
408 | 506 case IMGFMT_YUY2: |
507 return 1; | |
182 | 508 } |
509 return 0; | |
408 | 510 */ |
1 | 511 } |
512 | |
1852 | 513 static void uninit(void) |
514 { | |
515 int i; | |
1794 | 516 #ifdef HAVE_NEW_GUI |
1852 | 517 if ( vo_window == None ) |
1794 | 518 #endif |
1924 | 519 { |
1852 | 520 saver_on(mDisplay); // screen saver back on |
1924 | 521 XDestroyWindow( mDisplay,mywindow ); |
522 } | |
1852 | 523 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
|
524 } |
1 | 525 |
526 | |
527 |