Mercurial > mplayer.hg
annotate libvo/vo_x11.c @ 23251:2310160995f4
r23240: document lavc's 'level' option, patch by Carl Eugen Hoyos
r23261: description for -menu-keepdir option
author | voroshil |
---|---|
date | Tue, 08 May 2007 15:02:26 +0000 |
parents | 17bf4f4b0715 |
children | 4e416a0d7665 |
rev | line source |
---|---|
1 | 1 |
2 #include <stdio.h> | |
3 #include <stdlib.h> | |
4 #include <string.h> | |
5 #include <signal.h> | |
6 | |
7 #include "config.h" | |
8 #include "video_out.h" | |
9 #include "video_out_internal.h" | |
10 | |
11 | |
12 #include <X11/Xlib.h> | |
13 #include <X11/Xutil.h> | |
4036 | 14 |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
15 #ifdef HAVE_XF86VM |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
16 #include <X11/extensions/xf86vmode.h> |
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
17 #endif |
1 | 18 #include <errno.h> |
19 | |
31 | 20 #include "x11_common.h" |
21 | |
11690
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
22 #ifdef HAVE_SHM |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
23 #include <sys/ipc.h> |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
24 #include <sys/shm.h> |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
25 #include <X11/extensions/XShm.h> |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
26 |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
27 static int Shmem_Flag; |
12582 | 28 |
11690
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
29 //static int Quiet_Flag; Here also what is this for. It's used but isn't inited ? |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
30 static XShmSegmentInfo Shminfo[1]; |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
31 static int gXErrorFlag; |
12582 | 32 static int CompletionType = -1; |
11690
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
33 |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
34 /* since it doesn't seem to be defined on some platforms */ |
12582 | 35 int XShmGetEventBase(Display *); |
11690
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
36 #endif |
860bc06f32ca
just the same include reordering as in vo_xv (codemetics :)
alex
parents:
11542
diff
changeset
|
37 |
354 | 38 #include "fastmemcpy.h" |
616 | 39 #include "sub.h" |
350 | 40 |
18861 | 41 #include "libswscale/swscale.h" |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
13056
diff
changeset
|
42 #include "libmpcodecs/vf_scale.h" |
18746 | 43 #define MODE_RGB 0x1 |
44 #define MODE_BGR 0x2 | |
2218 | 45 |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
13056
diff
changeset
|
46 #include "mp_msg.h" |
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
18116
diff
changeset
|
47 #include "help_mp.h" |
4734 | 48 |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
5999
diff
changeset
|
49 #ifdef HAVE_NEW_GUI |
23077 | 50 #include "gui/interface.h" |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
13056
diff
changeset
|
51 #include "mplayer.h" |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
5999
diff
changeset
|
52 #endif |
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
5999
diff
changeset
|
53 |
12582 | 54 static vo_info_t info = { |
55 "X11 ( XImage/Shm )", | |
56 "x11", | |
57 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>", | |
58 "" | |
1 | 59 }; |
60 | |
12582 | 61 LIBVO_EXTERN(x11) |
1 | 62 /* private prototypes */ |
12582 | 63 static void Display_Image(XImage * myximage, unsigned char *ImageData); |
64 static void (*draw_alpha_fnc) (int x0, int y0, int w, int h, | |
65 unsigned char *src, unsigned char *srca, | |
66 int stride); | |
1 | 67 |
68 /* local data */ | |
69 static unsigned char *ImageData; | |
21585
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
70 //! original unaligned pointer for free |
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
71 static unsigned char *ImageDataOrig; |
1 | 72 |
73 /* X11 related variables */ | |
7764 | 74 static XImage *myximage = NULL; |
12582 | 75 static int depth, bpp, mode; |
1 | 76 static XWindowAttributes attribs; |
77 | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10728
diff
changeset
|
78 static int int_pause; |
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10728
diff
changeset
|
79 |
2969 | 80 static int Flip_Flag; |
4661
4df2400b0527
-fs and or -vm default is nozoom, -zoom does the expected thing
michael
parents:
4658
diff
changeset
|
81 static int zoomFlag; |
2969 | 82 |
1 | 83 |
84 static uint32_t image_width; | |
85 static uint32_t image_height; | |
4641 | 86 static uint32_t in_format; |
12582 | 87 static uint32_t out_format = 0; |
21586
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
88 static int out_offset; |
12582 | 89 static int srcW = -1; |
90 static int srcH = -1; | |
91 static int aspect; // 1<<16 based fixed point aspect, so that the aspect stays correct during resizing | |
1 | 92 |
12582 | 93 static int old_vo_dwidth = -1; |
94 static int old_vo_dheight = -1; | |
95 | |
22886 | 96 static void check_events(void) |
12582 | 97 { |
98 int ret = vo_x11_check_events(mDisplay); | |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
5999
diff
changeset
|
99 |
12582 | 100 /* clear left over borders and redraw frame if we are paused */ |
101 if (ret & VO_EVENT_EXPOSE && int_pause) | |
102 { | |
103 vo_x11_clearwindow_part(mDisplay, vo_window, myximage->width, | |
104 myximage->height, 0); | |
105 flip_page(); | |
106 } else if ((ret & VO_EVENT_RESIZE) || (ret & VO_EVENT_EXPOSE)) | |
107 vo_x11_clearwindow_part(mDisplay, vo_window, myximage->width, | |
108 myximage->height, 0); | |
109 | |
110 } | |
111 | |
112 static void draw_alpha_32(int x0, int y0, int w, int h, unsigned char *src, | |
113 unsigned char *srca, int stride) | |
114 { | |
115 vo_draw_alpha_rgb32(w, h, src, srca, stride, | |
116 ImageData + 4 * (y0 * image_width + x0), | |
117 4 * image_width); | |
1 | 118 } |
119 | |
12582 | 120 static void draw_alpha_24(int x0, int y0, int w, int h, unsigned char *src, |
121 unsigned char *srca, int stride) | |
122 { | |
123 vo_draw_alpha_rgb24(w, h, src, srca, stride, | |
124 ImageData + 3 * (y0 * image_width + x0), | |
125 3 * image_width); | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
126 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
127 |
12582 | 128 static void draw_alpha_16(int x0, int y0, int w, int h, unsigned char *src, |
129 unsigned char *srca, int stride) | |
130 { | |
131 vo_draw_alpha_rgb16(w, h, src, srca, stride, | |
132 ImageData + 2 * (y0 * image_width + x0), | |
133 2 * image_width); | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
134 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
135 |
12582 | 136 static void draw_alpha_15(int x0, int y0, int w, int h, unsigned char *src, |
137 unsigned char *srca, int stride) | |
138 { | |
139 vo_draw_alpha_rgb15(w, h, src, srca, stride, | |
140 ImageData + 2 * (y0 * image_width + x0), | |
141 2 * image_width); | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
142 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
143 |
12582 | 144 static void draw_alpha_null(int x0, int y0, int w, int h, |
145 unsigned char *src, unsigned char *srca, | |
146 int stride) | |
147 { | |
1647
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
148 } |
22480104ddfd
added draw_alpha_XXXX functions, draw_alpha_func<=correct one in init
atlka
parents:
1501
diff
changeset
|
149 |
18746 | 150 static struct SwsContext *swsContext = NULL; |
151 static int dst_width; | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
152 extern int sws_flags; |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
153 |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
154 static XVisualInfo vinfo; |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
155 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
16171
diff
changeset
|
156 static void getMyXImage(void) |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
157 { |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
158 #ifdef HAVE_SHM |
12582 | 159 if (mLocalDisplay && XShmQueryExtension(mDisplay)) |
160 Shmem_Flag = 1; | |
161 else | |
162 { | |
163 Shmem_Flag = 0; | |
164 mp_msg(MSGT_VO, MSGL_WARN, | |
165 "Shared memory not supported\nReverting to normal Xlib\n"); | |
166 } | |
167 if (Shmem_Flag) | |
168 CompletionType = XShmGetEventBase(mDisplay) + ShmCompletion; | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
169 |
12582 | 170 if (Shmem_Flag) |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
171 { |
12582 | 172 myximage = |
173 XShmCreateImage(mDisplay, vinfo.visual, depth, ZPixmap, NULL, | |
174 &Shminfo[0], image_width, image_height); | |
175 if (myximage == NULL) | |
176 { | |
177 mp_msg(MSGT_VO, MSGL_WARN, | |
178 "Shared memory error,disabling ( Ximage error )\n"); | |
179 goto shmemerror; | |
180 } | |
181 Shminfo[0].shmid = shmget(IPC_PRIVATE, | |
182 myximage->bytes_per_line * | |
183 myximage->height, IPC_CREAT | 0777); | |
184 if (Shminfo[0].shmid < 0) | |
185 { | |
186 XDestroyImage(myximage); | |
187 mp_msg(MSGT_VO, MSGL_V, "%s\n", strerror(errno)); | |
188 //perror( strerror( errno ) ); | |
189 mp_msg(MSGT_VO, MSGL_WARN, | |
190 "Shared memory error,disabling ( seg id error )\n"); | |
191 goto shmemerror; | |
192 } | |
193 Shminfo[0].shmaddr = (char *) shmat(Shminfo[0].shmid, 0, 0); | |
3209 | 194 |
12582 | 195 if (Shminfo[0].shmaddr == ((char *) -1)) |
196 { | |
197 XDestroyImage(myximage); | |
198 if (Shminfo[0].shmaddr != ((char *) -1)) | |
199 shmdt(Shminfo[0].shmaddr); | |
200 mp_msg(MSGT_VO, MSGL_WARN, | |
201 "Shared memory error,disabling ( address error )\n"); | |
202 goto shmemerror; | |
203 } | |
204 myximage->data = Shminfo[0].shmaddr; | |
205 ImageData = (unsigned char *) myximage->data; | |
206 Shminfo[0].readOnly = False; | |
207 XShmAttach(mDisplay, &Shminfo[0]); | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
208 |
12582 | 209 XSync(mDisplay, False); |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
210 |
12582 | 211 if (gXErrorFlag) |
212 { | |
213 XDestroyImage(myximage); | |
214 shmdt(Shminfo[0].shmaddr); | |
215 mp_msg(MSGT_VO, MSGL_WARN, "Shared memory error,disabling.\n"); | |
216 gXErrorFlag = 0; | |
217 goto shmemerror; | |
218 } else | |
219 shmctl(Shminfo[0].shmid, IPC_RMID, 0); | |
220 | |
221 { | |
222 static int firstTime = 1; | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
223 |
12582 | 224 if (firstTime) |
225 { | |
226 mp_msg(MSGT_VO, MSGL_V, "Sharing memory.\n"); | |
227 firstTime = 0; | |
228 } | |
229 } | |
230 } else | |
231 { | |
232 shmemerror: | |
233 Shmem_Flag = 0; | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
234 #endif |
21584
3ddf91e141a3
Use XCreateImage instead of XGetImage, this is not only more correct and
reimar
parents:
20399
diff
changeset
|
235 myximage = XCreateImage(mDisplay, vinfo.visual, depth, ZPixmap, |
3ddf91e141a3
Use XCreateImage instead of XGetImage, this is not only more correct and
reimar
parents:
20399
diff
changeset
|
236 0, NULL, image_width, image_height, 8, 0); |
21585
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
237 ImageDataOrig = malloc(myximage->bytes_per_line * image_height + 32); |
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
238 myximage->data = ImageDataOrig + 16 - ((long)ImageDataOrig & 15); |
21584
3ddf91e141a3
Use XCreateImage instead of XGetImage, this is not only more correct and
reimar
parents:
20399
diff
changeset
|
239 memset(myximage->data, 0, myximage->bytes_per_line * image_height); |
12582 | 240 ImageData = myximage->data; |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
241 #ifdef HAVE_SHM |
12582 | 242 } |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
243 #endif |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
244 } |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
245 |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
16171
diff
changeset
|
246 static void freeMyXImage(void) |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
247 { |
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
248 #ifdef HAVE_SHM |
12582 | 249 if (Shmem_Flag) |
250 { | |
251 XShmDetach(mDisplay, &Shminfo[0]); | |
252 XDestroyImage(myximage); | |
253 shmdt(Shminfo[0].shmaddr); | |
254 } else | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
255 #endif |
12582 | 256 { |
21585
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
257 myximage->data = ImageDataOrig; |
12582 | 258 XDestroyImage(myximage); |
21585
e54f539c9b5d
Align image data pointer, this is also in preparation of an upcoming patch
reimar
parents:
21584
diff
changeset
|
259 ImageDataOrig = NULL; |
12582 | 260 } |
261 myximage = NULL; | |
21584
3ddf91e141a3
Use XCreateImage instead of XGetImage, this is not only more correct and
reimar
parents:
20399
diff
changeset
|
262 ImageData = NULL; |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
263 } |
2218 | 264 |
20399
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
265 #ifdef WORDS_BIGENDIAN |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
266 #define BO_NATIVE MSBFirst |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
267 #define BO_NONNATIVE LSBFirst |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
268 #else |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
269 #define BO_NATIVE LSBFirst |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
270 #define BO_NONNATIVE MSBFirst |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
271 #endif |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
272 struct fmt2Xfmtentry_s { |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
273 uint32_t mpfmt; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
274 int byte_order; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
275 unsigned red_mask; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
276 unsigned green_mask; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
277 unsigned blue_mask; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
278 } fmt2Xfmt[] = { |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
279 {IMGFMT_RGB8, BO_NATIVE, 0x00000007, 0x00000038, 0x000000C0}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
280 {IMGFMT_RGB8, BO_NONNATIVE, 0x00000007, 0x00000038, 0x000000C0}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
281 {IMGFMT_BGR8, BO_NATIVE, 0x000000E0, 0x0000001C, 0x00000003}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
282 {IMGFMT_BGR8, BO_NONNATIVE, 0x000000E0, 0x0000001C, 0x00000003}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
283 {IMGFMT_RGB15, BO_NATIVE, 0x0000001F, 0x000003E0, 0x00007C00}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
284 {IMGFMT_BGR15, BO_NATIVE, 0x00007C00, 0x000003E0, 0x0000001F}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
285 {IMGFMT_RGB16, BO_NATIVE, 0x0000001F, 0x000007E0, 0x0000F800}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
286 {IMGFMT_BGR16, BO_NATIVE, 0x0000F800, 0x000007E0, 0x0000001F}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
287 {IMGFMT_RGB24, MSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
288 {IMGFMT_RGB24, LSBFirst, 0x000000FF, 0x0000FF00, 0x00FF0000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
289 {IMGFMT_BGR24, MSBFirst, 0x000000FF, 0x0000FF00, 0x00FF0000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
290 {IMGFMT_BGR24, LSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
291 {IMGFMT_RGB32, BO_NATIVE, 0x000000FF, 0x0000FF00, 0x00FF0000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
292 {IMGFMT_RGB32, BO_NONNATIVE, 0xFF000000, 0x00FF0000, 0x0000FF00}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
293 {IMGFMT_BGR32, BO_NATIVE, 0x00FF0000, 0x0000FF00, 0x000000FF}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
294 {IMGFMT_BGR32, BO_NONNATIVE, 0x0000FF00, 0x00FF0000, 0xFF000000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
295 {IMGFMT_ARGB, MSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
296 {IMGFMT_ARGB, LSBFirst, 0x0000FF00, 0x00FF0000, 0xFF000000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
297 {IMGFMT_ABGR, MSBFirst, 0x000000FF, 0x0000FF00, 0x00FF0000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
298 {IMGFMT_ABGR, LSBFirst, 0xFF000000, 0x00FF0000, 0x0000FF00}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
299 {IMGFMT_RGBA, MSBFirst, 0xFF000000, 0x00FF0000, 0x0000FF00}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
300 {IMGFMT_RGBA, LSBFirst, 0x000000FF, 0x0000FF00, 0x00FF0000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
301 {IMGFMT_BGRA, MSBFirst, 0x0000FF00, 0x00FF0000, 0xFF000000}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
302 {IMGFMT_BGRA, LSBFirst, 0x00FF0000, 0x0000FF00, 0x000000FF}, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
303 {0, 0, 0, 0, 0} |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
304 }; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
305 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
306 static int config(uint32_t width, uint32_t height, uint32_t d_width, |
12582 | 307 uint32_t d_height, uint32_t flags, char *title, |
308 uint32_t format) | |
1 | 309 { |
1110 | 310 // int screen; |
12582 | 311 int fullscreen = 0; |
312 int vm = 0; | |
313 | |
1110 | 314 // int interval, prefer_blank, allow_exp, nothing; |
12582 | 315 unsigned int fg, bg; |
316 XEvent xev; | |
317 XGCValues xgcv; | |
318 Colormap theCmap; | |
319 XSetWindowAttributes xswa; | |
320 unsigned long xswamask; | |
20399
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
321 struct fmt2Xfmtentry_s *fmte = fmt2Xfmt; |
12582 | 322 |
4426
1ceadec3ea67
using the common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4420
diff
changeset
|
323 #ifdef HAVE_XF86VM |
12582 | 324 unsigned int modeline_width, modeline_height; |
325 static uint32_t vm_width; | |
326 static uint32_t vm_height; | |
4426
1ceadec3ea67
using the common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4420
diff
changeset
|
327 #endif |
1 | 328 |
12582 | 329 vo_mouse_autohide = 1; |
330 old_vo_dwidth = -1; | |
331 old_vo_dheight = -1; | |
6013
7f6e02a16ac4
some bugfix, x[11|mga|v] ( fullscreen with more files )
pontscho
parents:
5999
diff
changeset
|
332 |
12582 | 333 if (!title) |
17787 | 334 title = "MPlayer X11 (XImage/Shm) render"; |
4813 | 335 |
12582 | 336 in_format = format; |
337 srcW = width; | |
338 srcH = height; | |
10757
3aea64e0d6d9
Avoid flickering during resizes. Keep video contents even when paused. Fix by Tomas Simonaitis <haden@homelan.lt>
mosu
parents:
10728
diff
changeset
|
339 |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
340 if (flags & (VOFLAG_FULLSCREEN|VOFLAG_MODESWITCHING)) |
12582 | 341 fullscreen = 1; |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
342 if (flags & VOFLAG_MODESWITCHING) |
12582 | 343 vm = 1; |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
344 if (flags & VOFLAG_FLIPPING) |
12582 | 345 Flip_Flag = 1; |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
346 zoomFlag = flags & VOFLAG_SWSCALE; |
12582 | 347 |
348 int_pause = 0; | |
4677
305a0c20bde4
default is allways nozoom again (specify -zoom if u want the sane behavior)
michael
parents:
4662
diff
changeset
|
349 // if(!fullscreen) zoomFlag=1; //it makes no sense to avoid zooming on windowd mode |
12582 | 350 |
2218 | 351 //printf( "w: %d h: %d\n\n",vo_dwidth,vo_dheight ); |
1746 | 352 |
12582 | 353 XGetWindowAttributes(mDisplay, mRootWin, &attribs); |
354 depth = attribs.depth; | |
355 | |
356 if (depth != 15 && depth != 16 && depth != 24 && depth != 32) | |
357 { | |
358 Visual *visual; | |
1746 | 359 |
12582 | 360 depth = vo_find_depth_from_visuals(mDisplay, mScreen, &visual); |
361 } | |
362 if (!XMatchVisualInfo(mDisplay, mScreen, depth, DirectColor, &vinfo) || | |
363 (WinID > 0 | |
364 && vinfo.visualid != XVisualIDFromVisual(attribs.visual))) | |
365 XMatchVisualInfo(mDisplay, mScreen, depth, TrueColor, &vinfo); | |
1746 | 366 |
12582 | 367 /* set image size (which is indeed neither the input nor output size), |
368 if zoom is on it will be changed during draw_slice anyway so we don't duplicate the aspect code here | |
369 */ | |
370 image_width = (width + 7) & (~7); | |
371 image_height = height; | |
4661
4df2400b0527
-fs and or -vm default is nozoom, -zoom does the expected thing
michael
parents:
4658
diff
changeset
|
372 |
12582 | 373 aspect = ((1 << 16) * d_width + d_height / 2) / d_height; |
2218 | 374 |
1752 | 375 #ifdef HAVE_NEW_GUI |
12582 | 376 if (use_gui) |
377 guiGetEvent(guiSetShVideo, 0); // the GUI will set up / resize the window | |
378 else | |
379 #endif | |
380 { | |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
381 #ifdef HAVE_XF86VM |
12582 | 382 if (vm) |
383 { | |
384 if ((d_width == 0) && (d_height == 0)) | |
385 { | |
386 vm_width = image_width; | |
387 vm_height = image_height; | |
388 } else | |
389 { | |
390 vm_width = d_width; | |
391 vm_height = d_height; | |
392 } | |
393 vo_vm_switch(vm_width, vm_height, &modeline_width, | |
394 &modeline_height); | |
395 vo_dx = (vo_screenwidth - modeline_width) / 2; | |
396 vo_dy = (vo_screenheight - modeline_height) / 2; | |
397 vo_dwidth = modeline_width; | |
398 vo_dheight = modeline_height; | |
399 } | |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
400 #endif |
12582 | 401 bg = WhitePixel(mDisplay, mScreen); |
402 fg = BlackPixel(mDisplay, mScreen); | |
1 | 403 |
12582 | 404 theCmap = vo_x11_create_colormap(&vinfo); |
1 | 405 |
12582 | 406 xswa.background_pixel = 0; |
407 xswa.border_pixel = 0; | |
408 xswa.colormap = theCmap; | |
409 xswamask = CWBackPixel | CWBorderPixel | CWColormap; | |
1 | 410 |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
411 #ifdef HAVE_XF86VM |
12582 | 412 if (vm) |
413 { | |
414 xswa.override_redirect = True; | |
415 xswamask |= CWOverrideRedirect; | |
416 } | |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
417 #endif |
12582 | 418 |
419 if (WinID >= 0) | |
420 { | |
421 vo_window = WinID ? ((Window) WinID) : mRootWin; | |
422 if (WinID) | |
423 { | |
15540 | 424 int border; |
12582 | 425 XUnmapWindow(mDisplay, vo_window); |
426 XChangeWindowAttributes(mDisplay, vo_window, xswamask, | |
427 &xswa); | |
428 vo_x11_selectinput_witherr(mDisplay, vo_window, | |
429 StructureNotifyMask | | |
430 KeyPressMask | | |
431 PropertyChangeMask | | |
432 PointerMotionMask | | |
433 ButtonPressMask | | |
434 ButtonReleaseMask | | |
435 ExposureMask); | |
436 XMapWindow(mDisplay, vo_window); | |
15540 | 437 XGetGeometry(mDisplay, vo_window, &mRootWin, |
438 &vo_dx, &vo_dy, &vo_dwidth, &vo_dheight, | |
439 &border, &depth); | |
12582 | 440 } else |
441 XSelectInput(mDisplay, vo_window, ExposureMask); | |
442 } else | |
443 { | |
444 if (vo_window == None) | |
445 { | |
446 vo_window = | |
447 vo_x11_create_smooth_window(mDisplay, mRootWin, | |
448 vinfo.visual, vo_dx, vo_dy, | |
449 vo_dwidth, vo_dheight, | |
450 depth, theCmap); | |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
451 |
12582 | 452 vo_x11_classhint(mDisplay, vo_window, "x11"); |
453 vo_hidecursor(mDisplay, vo_window); | |
454 vo_x11_sizehint(vo_dx, vo_dy, vo_dwidth, vo_dheight, 0); | |
455 XSelectInput(mDisplay, vo_window, StructureNotifyMask); | |
456 XStoreName(mDisplay, vo_window, title); | |
457 XMapWindow(mDisplay, vo_window); | |
7764 | 458 // if(WinID!=0) |
12582 | 459 do |
460 { | |
461 XNextEvent(mDisplay, &xev); | |
462 } | |
463 while (xev.type != MapNotify | |
464 || xev.xmap.event != vo_window); | |
465 | |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18234
diff
changeset
|
466 vo_x11_nofs_sizepos(vo_dx, vo_dy, vo_dwidth, vo_dheight); |
12582 | 467 if (fullscreen) |
468 vo_x11_fullscreen(); | |
18715
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18234
diff
changeset
|
469 } else |
30d7ddf08889
Fix window position when changing videos while in fullscreen and for
reimar
parents:
18234
diff
changeset
|
470 vo_x11_nofs_sizepos(vo_dx, vo_dy, vo_dwidth, vo_dheight); |
12582 | 471 } |
6043 | 472 |
12582 | 473 XSync(mDisplay, False); |
1 | 474 |
12582 | 475 // we cannot grab mouse events on root window :( |
476 vo_x11_selectinput_witherr(mDisplay, vo_window, | |
477 StructureNotifyMask | KeyPressMask | | |
478 PropertyChangeMask | ExposureMask | | |
479 ((WinID == | |
480 0) ? 0 : (ButtonPressMask | | |
481 ButtonReleaseMask | | |
482 PointerMotionMask))); | |
4805 | 483 |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
484 #ifdef HAVE_XF86VM |
12582 | 485 if (vm) |
486 { | |
487 /* Grab the mouse pointer in our window */ | |
488 if (vo_grabpointer) | |
489 XGrabPointer(mDisplay, vo_window, True, 0, | |
490 GrabModeAsync, GrabModeAsync, | |
491 vo_window, None, CurrentTime); | |
492 XSetInputFocus(mDisplay, vo_window, RevertToNone, CurrentTime); | |
493 } | |
2094
dc11de07b5e7
grabs mouse with -vm - patch by Uwe Reder <Uwe.Reder@3SOFT.de>
arpi
parents:
1924
diff
changeset
|
494 #endif |
12582 | 495 } |
1 | 496 |
12582 | 497 if (vo_gc != None) |
498 XFreeGC(mDisplay, vo_gc); | |
499 vo_gc = XCreateGC(mDisplay, vo_window, 0L, &xgcv); | |
500 | |
501 if (myximage) | |
502 { | |
503 freeMyXImage(); | |
504 sws_freeContext(swsContext); | |
505 } | |
506 getMyXImage(); | |
507 | |
508 if (!WinID) | |
509 { | |
510 vo_dwidth = vo_screenwidth; | |
511 vo_dheight = vo_screenheight; | |
512 } | |
1 | 513 |
20399
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
514 while (fmte->mpfmt) { |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
515 if (IMGFMT_RGB_DEPTH(fmte->mpfmt) == myximage->bits_per_pixel && |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
516 fmte->byte_order == myximage->byte_order && |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
517 fmte->red_mask == myximage->red_mask && |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
518 fmte->green_mask == myximage->green_mask && |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
519 fmte->blue_mask == myximage->blue_mask) |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
520 break; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
521 fmte++; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
522 } |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
523 if (!fmte->mpfmt) { |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
524 mp_msg(MSGT_VO, MSGL_ERR, |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
525 "X server image format not supported, please contact the developers\n"); |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
526 return -1; |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
527 } |
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
528 out_format = fmte->mpfmt; |
12582 | 529 switch ((bpp = myximage->bits_per_pixel)) |
530 { | |
531 case 24: | |
532 draw_alpha_fnc = draw_alpha_24; | |
533 break; | |
534 case 32: | |
535 draw_alpha_fnc = draw_alpha_32; | |
536 break; | |
537 case 15: | |
538 case 16: | |
539 if (depth == 15) | |
540 draw_alpha_fnc = draw_alpha_15; | |
20399
27aa9329d4f7
Proper detection of corresponding MPlayer image format for X server format for vo_x11.
reimar
parents:
20196
diff
changeset
|
541 else |
12582 | 542 draw_alpha_fnc = draw_alpha_16; |
543 break; | |
544 default: | |
545 draw_alpha_fnc = draw_alpha_null; | |
546 } | |
21586
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
547 out_offset = 0; |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
548 // for these formats conversion is currently not support and |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
549 // we can easily "emulate" them. |
21599
fe48c337a269
10l, missing () in check for 32bit endian-conversion hack
reimar
parents:
21586
diff
changeset
|
550 if (out_format & 64 && (IMGFMT_IS_RGB(out_format) || IMGFMT_IS_BGR(out_format))) { |
21586
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
551 out_format &= ~64; |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
552 #ifdef WORDS_BIGENDIAN |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
553 out_offset = 1; |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
554 #else |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
555 out_offset = -1; |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
556 #endif |
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
557 } |
1 | 558 |
12582 | 559 /* always allocate swsContext as size could change between frames */ |
560 swsContext = | |
561 sws_getContextFromCmdLine(width, height, in_format, width, height, | |
562 out_format); | |
563 if (!swsContext) | |
564 return -1; | |
1 | 565 |
18746 | 566 dst_width = width; |
12582 | 567 //printf( "X11 bpp: %d color mask: R:%lX G:%lX B:%lX\n",bpp,myximage->red_mask,myximage->green_mask,myximage->blue_mask ); |
1 | 568 |
12582 | 569 if (vo_ontop) |
570 vo_x11_setlayer(mDisplay, vo_window, vo_ontop); | |
11542 | 571 |
12582 | 572 return 0; |
1 | 573 } |
574 | |
12582 | 575 static void Display_Image(XImage * myximage, uint8_t * ImageData) |
1 | 576 { |
21586
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
577 myximage->data += out_offset; |
3003 | 578 #ifdef HAVE_SHM |
12582 | 579 if (Shmem_Flag) |
580 { | |
581 XShmPutImage(mDisplay, vo_window, vo_gc, myximage, | |
582 0, 0, | |
18746 | 583 (vo_dwidth - dst_width) / 2, |
584 (vo_dheight - myximage->height) / 2, dst_width, | |
12582 | 585 myximage->height, True); |
586 } else | |
1 | 587 #endif |
12582 | 588 { |
589 XPutImage(mDisplay, vo_window, vo_gc, myximage, | |
590 0, 0, | |
18746 | 591 (vo_dwidth - dst_width) / 2, |
592 (vo_dheight - myximage->height) / 2, dst_width, | |
12582 | 593 myximage->height); |
594 } | |
21586
5a1e078720e7
Support for different endianness on client and server with -vo x11
reimar
parents:
21585
diff
changeset
|
595 myximage->data -= out_offset; |
1 | 596 } |
597 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1137
diff
changeset
|
598 static void draw_osd(void) |
12582 | 599 { |
600 vo_draw_text(image_width, image_height, draw_alpha_fnc); | |
601 } | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1137
diff
changeset
|
602 |
12582 | 603 static void flip_page(void) |
604 { | |
605 Display_Image(myximage, ImageData); | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
1137
diff
changeset
|
606 XSync(mDisplay, False); |
31 | 607 } |
1 | 608 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
609 static int draw_slice(uint8_t * src[], int stride[], int w, int h, |
12582 | 610 int x, int y) |
1 | 611 { |
12582 | 612 uint8_t *dst[3]; |
613 int dstStride[3]; | |
6059 | 614 |
12582 | 615 if ((old_vo_dwidth != vo_dwidth |
616 || old_vo_dheight != vo_dheight) /*&& y==0 */ && zoomFlag) | |
617 { | |
618 int newW = vo_dwidth; | |
619 int newH = vo_dheight; | |
620 int newAspect = (newW * (1 << 16) + (newH >> 1)) / newH; | |
18746 | 621 struct SwsContext *oldContext = swsContext; |
4641 | 622 |
12582 | 623 if (newAspect > aspect) |
624 newW = (newH * aspect + (1 << 15)) >> 16; | |
625 else | |
626 newH = ((newW << 16) + (aspect >> 1)) / aspect; | |
4641 | 627 |
12582 | 628 old_vo_dwidth = vo_dwidth; |
629 old_vo_dheight = vo_dheight; | |
630 | |
631 if (sws_flags == 0) | |
632 newW &= (~31); // not needed but, if the user wants the FAST_BILINEAR SCALER, then its needed | |
4627 | 633 |
12582 | 634 swsContext = sws_getContextFromCmdLine(srcW, srcH, in_format, |
635 newW, newH, out_format); | |
636 if (swsContext) | |
637 { | |
638 image_width = (newW + 7) & (~7); | |
639 image_height = newH; | |
4420
a7bac05524a1
real window resizeing support (i know nearly nothing about x11 so feel free to fix / reverse it, if its broken)
michael
parents:
4382
diff
changeset
|
640 |
12582 | 641 freeMyXImage(); |
642 getMyXImage(); | |
643 sws_freeContext(oldContext); | |
644 } else | |
645 { | |
646 swsContext = oldContext; | |
647 } | |
18746 | 648 dst_width = newW; |
12582 | 649 } |
650 dstStride[1] = dstStride[2] = 0; | |
651 dst[1] = dst[2] = NULL; | |
652 | |
653 if (Flip_Flag) | |
654 { | |
655 dstStride[0] = -image_width * ((bpp + 7) / 8); | |
656 dst[0] = ImageData - dstStride[0] * (image_height - 1); | |
657 sws_scale_ordered(swsContext, src, stride, y, h, dst, dstStride); | |
658 } else | |
659 { | |
660 dstStride[0] = image_width * ((bpp + 7) / 8); | |
661 dst[0] = ImageData; | |
662 sws_scale_ordered(swsContext, src, stride, y, h, dst, dstStride); | |
663 } | |
664 return 0; | |
1 | 665 } |
666 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
667 static int draw_frame(uint8_t * src[]) |
12582 | 668 { |
7683 | 669 #if 0 |
12582 | 670 int stride[3] = { 0, 0, 0 }; |
671 | |
672 if (in_format == IMGFMT_YUY2) | |
673 stride[0] = srcW * 2; | |
674 else if (in_format == IMGFMT_BGR8) | |
675 stride[0] = srcW; | |
676 else if (in_format == IMGFMT_BGR15) | |
677 stride[0] = srcW * 2; | |
678 else if (in_format == IMGFMT_BGR16) | |
679 stride[0] = srcW * 2; | |
680 else if (in_format == IMGFMT_BGR24) | |
681 stride[0] = srcW * 3; | |
682 else if (in_format == IMGFMT_BGR32) | |
683 stride[0] = srcW * 4; | |
684 | |
685 return draw_slice(src, stride, srcW, srcH, 0, 0); | |
7683 | 686 #else |
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
parents:
18116
diff
changeset
|
687 mp_msg(MSGT_VO,MSGL_INFO, MSGTR_LIBVO_X11_DrawFrameCalled); |
7683 | 688 return -1; |
689 #endif | |
690 } | |
691 | |
12582 | 692 static uint32_t get_image(mp_image_t * mpi) |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
693 { |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
694 if (zoomFlag || |
12582 | 695 !IMGFMT_IS_BGR(mpi->imgfmt) || |
696 (IMGFMT_BGR_DEPTH(mpi->imgfmt) != vo_depthonscreen) || | |
697 ((mpi->type != MP_IMGTYPE_STATIC) | |
698 && (mpi->type != MP_IMGTYPE_TEMP)) | |
699 || (mpi->flags & MP_IMGFLAG_PLANAR) | |
700 || (mpi->flags & MP_IMGFLAG_YUV) || (mpi->width != image_width) | |
701 || (mpi->height != image_height)) | |
702 return (VO_FALSE); | |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
703 |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
704 if (Flip_Flag) |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
705 { |
12582 | 706 mpi->stride[0] = -image_width * ((bpp + 7) / 8); |
707 mpi->planes[0] = ImageData - mpi->stride[0] * (image_height - 1); | |
708 } else | |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
709 { |
12582 | 710 mpi->stride[0] = image_width * ((bpp + 7) / 8); |
711 mpi->planes[0] = ImageData; | |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
712 } |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
713 mpi->flags |= MP_IMGFLAG_DIRECT; |
12582 | 714 |
715 return (VO_TRUE); | |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
716 } |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
717 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
718 static int query_format(uint32_t format) |
1 | 719 { |
12582 | 720 mp_msg(MSGT_VO, MSGL_DBG2, |
721 "vo_x11: query_format was called: %x (%s)\n", format, | |
722 vo_format_name(format)); | |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
723 if (IMGFMT_IS_BGR(format)) |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
724 { |
12582 | 725 if (IMGFMT_BGR_DEPTH(format) <= 8) |
726 return 0; // TODO 8bpp not yet fully implemented | |
727 if (IMGFMT_BGR_DEPTH(format) == vo_depthonscreen) | |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
728 return VFCAP_CSP_SUPPORTED | VFCAP_CSP_SUPPORTED_BY_HW | VFCAP_OSD | VFCAP_SWSCALE | VFCAP_FLIP | |
12582 | 729 VFCAP_ACCEPT_STRIDE; |
730 else | |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
731 return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_SWSCALE | VFCAP_FLIP | |
12582 | 732 VFCAP_ACCEPT_STRIDE; |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
733 } |
325 | 734 |
12582 | 735 switch (format) |
736 { | |
6692
ad521fb49a5e
-vm -fs -zoom fix, set correct vm screenres in aspect code (similar to xv fix).
atmos4
parents:
6180
diff
changeset
|
737 // case IMGFMT_BGR8: |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
738 // case IMGFMT_BGR15: |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
739 // case IMGFMT_BGR16: |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
740 // case IMGFMT_BGR24: |
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
741 // case IMGFMT_BGR32: |
6694
9291268a3603
1000l, back out hack-n-slay 8bpp code from my local tree.
atmos4
parents:
6693
diff
changeset
|
742 // return 0x2; |
4905
eb1a28f1236a
yuy2 support disabled to workaround stupid colorspace selection
michael
parents:
4889
diff
changeset
|
743 // case IMGFMT_YUY2: |
12582 | 744 case IMGFMT_I420: |
745 case IMGFMT_IYUV: | |
746 case IMGFMT_YV12: | |
15212
05aa13cdf92f
replace VO and VF numeric flags with #defined identifiers
henry
parents:
13787
diff
changeset
|
747 return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_SWSCALE | VFCAP_ACCEPT_STRIDE; |
12582 | 748 } |
749 return 0; | |
1 | 750 } |
751 | |
752 | |
7683 | 753 static void uninit(void) |
1 | 754 { |
12582 | 755 if (!myximage) |
756 return; | |
757 | |
758 freeMyXImage(); | |
4426
1ceadec3ea67
using the common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4420
diff
changeset
|
759 |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
760 #ifdef HAVE_XF86VM |
12582 | 761 vo_vm_close(mDisplay); |
206
82b5ae8ceaf4
adds XF86VidMode support to vo_x11.c to do "pseudo-scaling"
mgraffam
parents:
202
diff
changeset
|
762 #endif |
4426
1ceadec3ea67
using the common -vm code, patch by Santi Bjar <tiarda@yahoo.es>
arpi
parents:
4420
diff
changeset
|
763 |
12582 | 764 zoomFlag = 0; |
765 vo_x11_uninit(); | |
4677
305a0c20bde4
default is allways nozoom again (specify -zoom if u want the sane behavior)
michael
parents:
4662
diff
changeset
|
766 |
12582 | 767 sws_freeContext(swsContext); |
1 | 768 } |
769 | |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
770 static int preinit(const char *arg) |
4352 | 771 { |
12582 | 772 if (arg) |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4734
diff
changeset
|
773 { |
12582 | 774 mp_msg(MSGT_VO, MSGL_ERR, "vo_x11: Unknown subdevice: %s\n", arg); |
775 return ENOSYS; | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4734
diff
changeset
|
776 } |
5130
305b1fbde890
added directrendering support and better query_format
alex
parents:
4993
diff
changeset
|
777 |
12582 | 778 if (!vo_init()) |
779 return -1; // Can't open X11 | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4734
diff
changeset
|
780 return 0; |
4352 | 781 } |
1 | 782 |
16171
fd51fd1ff231
Fix the return types of all (six) libvo API functions. Used to be uint32_t, but
ivo
parents:
15540
diff
changeset
|
783 static int control(uint32_t request, void *data, ...) |
4352 | 784 { |
12582 | 785 switch (request) |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7765
diff
changeset
|
786 { |
12582 | 787 case VOCTRL_PAUSE: |
788 return (int_pause = 1); | |
789 case VOCTRL_RESUME: | |
790 return (int_pause = 0); | |
791 case VOCTRL_QUERY_FORMAT: | |
792 return query_format(*((uint32_t *) data)); | |
793 case VOCTRL_GUISUPPORT: | |
794 return VO_TRUE; | |
795 case VOCTRL_GET_IMAGE: | |
796 return get_image(data); | |
797 case VOCTRL_SET_EQUALIZER: | |
798 { | |
799 va_list ap; | |
800 int value; | |
801 | |
802 va_start(ap, data); | |
803 value = va_arg(ap, int); | |
804 | |
805 va_end(ap); | |
806 return vo_x11_set_equalizer(data, value); | |
807 } | |
808 case VOCTRL_GET_EQUALIZER: | |
809 { | |
810 va_list ap; | |
811 int *value; | |
812 | |
813 va_start(ap, data); | |
814 value = va_arg(ap, int *); | |
815 | |
816 va_end(ap); | |
817 return vo_x11_get_equalizer(data, value); | |
818 } | |
819 case VOCTRL_ONTOP: | |
820 vo_x11_ontop(); | |
821 return VO_TRUE; | |
822 case VOCTRL_FULLSCREEN: | |
823 { | |
824 vo_x11_fullscreen(); | |
825 vo_x11_clearwindow(mDisplay, vo_window); | |
826 } | |
827 return VO_TRUE; | |
22232 | 828 case VOCTRL_UPDATE_SCREENINFO: |
829 update_xinerama_info(); | |
830 return VO_TRUE; | |
7964
143d730908ae
here is a somewhat generic equalizer implementation for the X11 vo drivers
arpi
parents:
7765
diff
changeset
|
831 } |
12582 | 832 return VO_NOTIMPL; |
4352 | 833 } |