8 #include "video_out_internal.h"
13 #include <X11/Xutil.h>
17 #include "x11_common.h"
22 #include <X11/extensions/XShm.h>
24 static int Shmem_Flag
;
26 //static int Quiet_Flag; Here also what is this for. It's used but isn't initialized?
27 static XShmSegmentInfo Shminfo
[1];
28 static int gXErrorFlag
;
29 static int CompletionType
= -1;
34 #include "libswscale/swscale.h"
35 #include "libmpcodecs/vf_scale.h"
43 #include "gui/interface.h"
47 static const vo_info_t info
= {
50 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>",
54 const LIBVO_EXTERN(x11
)
55 /* private prototypes */
56 static void (*draw_alpha_fnc
) (int x0
, int y0
, int w
, int h
,
57 unsigned char *src
, unsigned char *srca
,
61 static unsigned char *ImageData
;
62 //! original unaligned pointer for free
63 static unsigned char *ImageDataOrig
;
65 /* X11 related variables */
66 static XImage
*myximage
= NULL
;
67 static int depth
, bpp
;
68 static XWindowAttributes attribs
;
76 static uint32_t image_width
;
77 static uint32_t image_height
;
78 static uint32_t in_format
;
79 static uint32_t out_format
= 0;
80 static int out_offset
;
84 static int old_vo_dwidth
= -1;
85 static int old_vo_dheight
= -1;
87 static void check_events(void)
89 int ret
= vo_x11_check_events(mDisplay
);
91 if (ret
& VO_EVENT_RESIZE
)
92 vo_x11_clearwindow(mDisplay
, vo_window
);
93 else if (ret
& VO_EVENT_EXPOSE
)
94 vo_x11_clearwindow_part(mDisplay
, vo_window
, myximage
->width
,
96 if (ret
& VO_EVENT_EXPOSE
&& int_pause
)
100 static void draw_alpha_32(int x0
, int y0
, int w
, int h
, unsigned char *src
,
101 unsigned char *srca
, int stride
)
103 vo_draw_alpha_rgb32(w
, h
, src
, srca
, stride
,
104 ImageData
+ 4 * (y0
* image_width
+ x0
),
108 static void draw_alpha_24(int x0
, int y0
, int w
, int h
, unsigned char *src
,
109 unsigned char *srca
, int stride
)
111 vo_draw_alpha_rgb24(w
, h
, src
, srca
, stride
,
112 ImageData
+ 3 * (y0
* image_width
+ x0
),
116 static void draw_alpha_16(int x0
, int y0
, int w
, int h
, unsigned char *src
,
117 unsigned char *srca
, int stride
)
119 vo_draw_alpha_rgb16(w
, h
, src
, srca
, stride
,
120 ImageData
+ 2 * (y0
* image_width
+ x0
),
124 static void draw_alpha_15(int x0
, int y0
, int w
, int h
, unsigned char *src
,
125 unsigned char *srca
, int stride
)
127 vo_draw_alpha_rgb15(w
, h
, src
, srca
, stride
,
128 ImageData
+ 2 * (y0
* image_width
+ x0
),
132 static void draw_alpha_null(int x0
, int y0
, int w
, int h
,
133 unsigned char *src
, unsigned char *srca
,
138 static struct SwsContext
*swsContext
= NULL
;
139 static int dst_width
;
140 extern int sws_flags
;
142 static XVisualInfo vinfo
;
144 static void getMyXImage(void)
147 if (mLocalDisplay
&& XShmQueryExtension(mDisplay
))
152 mp_msg(MSGT_VO
, MSGL_WARN
,
153 "Shared memory not supported\nReverting to normal Xlib\n");
156 CompletionType
= XShmGetEventBase(mDisplay
) + ShmCompletion
;
161 XShmCreateImage(mDisplay
, vinfo
.visual
, depth
, ZPixmap
, NULL
,
162 &Shminfo
[0], image_width
, image_height
);
163 if (myximage
== NULL
)
165 mp_msg(MSGT_VO
, MSGL_WARN
,
166 "Shared memory error,disabling ( Ximage error )\n");
169 Shminfo
[0].shmid
= shmget(IPC_PRIVATE
,
170 myximage
->bytes_per_line
*
171 myximage
->height
, IPC_CREAT
| 0777);
172 if (Shminfo
[0].shmid
< 0)
174 XDestroyImage(myximage
);
175 mp_msg(MSGT_VO
, MSGL_V
, "%s\n", strerror(errno
));
176 //perror( strerror( errno ) );
177 mp_msg(MSGT_VO
, MSGL_WARN
,
178 "Shared memory error,disabling ( seg id error )\n");
181 Shminfo
[0].shmaddr
= (char *) shmat(Shminfo
[0].shmid
, 0, 0);
183 if (Shminfo
[0].shmaddr
== ((char *) -1))
185 XDestroyImage(myximage
);
186 if (Shminfo
[0].shmaddr
!= ((char *) -1))
187 shmdt(Shminfo
[0].shmaddr
);
188 mp_msg(MSGT_VO
, MSGL_WARN
,
189 "Shared memory error,disabling ( address error )\n");
192 myximage
->data
= Shminfo
[0].shmaddr
;
193 ImageData
= (unsigned char *) myximage
->data
;
194 Shminfo
[0].readOnly
= False
;
195 XShmAttach(mDisplay
, &Shminfo
[0]);
197 XSync(mDisplay
, False
);
201 XDestroyImage(myximage
);
202 shmdt(Shminfo
[0].shmaddr
);
203 mp_msg(MSGT_VO
, MSGL_WARN
, "Shared memory error,disabling.\n");
207 shmctl(Shminfo
[0].shmid
, IPC_RMID
, 0);
210 static int firstTime
= 1;
214 mp_msg(MSGT_VO
, MSGL_V
, "Sharing memory.\n");
223 myximage
= XCreateImage(mDisplay
, vinfo
.visual
, depth
, ZPixmap
,
224 0, NULL
, image_width
, image_height
, 8, 0);
225 ImageDataOrig
= malloc(myximage
->bytes_per_line
* image_height
+ 32);
226 myximage
->data
= ImageDataOrig
+ 16 - ((long)ImageDataOrig
& 15);
227 memset(myximage
->data
, 0, myximage
->bytes_per_line
* image_height
);
228 ImageData
= myximage
->data
;
234 static void freeMyXImage(void)
239 XShmDetach(mDisplay
, &Shminfo
[0]);
240 XDestroyImage(myximage
);
241 shmdt(Shminfo
[0].shmaddr
);
245 myximage
->data
= ImageDataOrig
;
246 XDestroyImage(myximage
);
247 ImageDataOrig
= NULL
;
253 #ifdef WORDS_BIGENDIAN
254 #define BO_NATIVE MSBFirst
255 #define BO_NONNATIVE LSBFirst
257 #define BO_NATIVE LSBFirst
258 #define BO_NONNATIVE MSBFirst
260 const struct fmt2Xfmtentry_s
{
267 {IMGFMT_RGB8
, BO_NATIVE
, 0x00000007, 0x00000038, 0x000000C0},
268 {IMGFMT_RGB8
, BO_NONNATIVE
, 0x00000007, 0x00000038, 0x000000C0},
269 {IMGFMT_BGR8
, BO_NATIVE
, 0x000000E0, 0x0000001C, 0x00000003},
270 {IMGFMT_BGR8
, BO_NONNATIVE
, 0x000000E0, 0x0000001C, 0x00000003},
271 {IMGFMT_RGB15
, BO_NATIVE
, 0x0000001F, 0x000003E0, 0x00007C00},
272 {IMGFMT_BGR15
, BO_NATIVE
, 0x00007C00, 0x000003E0, 0x0000001F},
273 {IMGFMT_RGB16
, BO_NATIVE
, 0x0000001F, 0x000007E0, 0x0000F800},
274 {IMGFMT_BGR16
, BO_NATIVE
, 0x0000F800, 0x000007E0, 0x0000001F},
275 {IMGFMT_RGB24
, MSBFirst
, 0x00FF0000, 0x0000FF00, 0x000000FF},
276 {IMGFMT_RGB24
, LSBFirst
, 0x000000FF, 0x0000FF00, 0x00FF0000},
277 {IMGFMT_BGR24
, MSBFirst
, 0x000000FF, 0x0000FF00, 0x00FF0000},
278 {IMGFMT_BGR24
, LSBFirst
, 0x00FF0000, 0x0000FF00, 0x000000FF},
279 {IMGFMT_RGB32
, BO_NATIVE
, 0x000000FF, 0x0000FF00, 0x00FF0000},
280 {IMGFMT_RGB32
, BO_NONNATIVE
, 0xFF000000, 0x00FF0000, 0x0000FF00},
281 {IMGFMT_BGR32
, BO_NATIVE
, 0x00FF0000, 0x0000FF00, 0x000000FF},
282 {IMGFMT_BGR32
, BO_NONNATIVE
, 0x0000FF00, 0x00FF0000, 0xFF000000},
283 {IMGFMT_ARGB
, MSBFirst
, 0x00FF0000, 0x0000FF00, 0x000000FF},
284 {IMGFMT_ARGB
, LSBFirst
, 0x0000FF00, 0x00FF0000, 0xFF000000},
285 {IMGFMT_ABGR
, MSBFirst
, 0x000000FF, 0x0000FF00, 0x00FF0000},
286 {IMGFMT_ABGR
, LSBFirst
, 0xFF000000, 0x00FF0000, 0x0000FF00},
287 {IMGFMT_RGBA
, MSBFirst
, 0xFF000000, 0x00FF0000, 0x0000FF00},
288 {IMGFMT_RGBA
, LSBFirst
, 0x000000FF, 0x0000FF00, 0x00FF0000},
289 {IMGFMT_BGRA
, MSBFirst
, 0x0000FF00, 0x00FF0000, 0xFF000000},
290 {IMGFMT_BGRA
, LSBFirst
, 0x00FF0000, 0x0000FF00, 0x000000FF},
294 static int config(uint32_t width
, uint32_t height
, uint32_t d_width
,
295 uint32_t d_height
, uint32_t flags
, char *title
,
300 // int interval, prefer_blank, allow_exp, nothing;
303 XSetWindowAttributes xswa
;
304 unsigned long xswamask
;
305 const struct fmt2Xfmtentry_s
*fmte
= fmt2Xfmt
;
308 int vm
= flags
& VOFLAG_MODESWITCHING
;
310 Flip_Flag
= flags
& VOFLAG_FLIPPING
;
311 zoomFlag
= flags
& VOFLAG_SWSCALE
;
318 title
= "MPlayer X11 (XImage/Shm) render";
324 XGetWindowAttributes(mDisplay
, mRootWin
, &attribs
);
325 depth
= attribs
.depth
;
327 if (depth
!= 15 && depth
!= 16 && depth
!= 24 && depth
!= 32)
331 depth
= vo_find_depth_from_visuals(mDisplay
, mScreen
, &visual
);
333 if (!XMatchVisualInfo(mDisplay
, mScreen
, depth
, DirectColor
, &vinfo
) ||
335 && vinfo
.visualid
!= XVisualIDFromVisual(attribs
.visual
)))
336 XMatchVisualInfo(mDisplay
, mScreen
, depth
, TrueColor
, &vinfo
);
338 /* set image size (which is indeed neither the input nor output size),
339 if zoom is on it will be changed during draw_slice anyway so we don't duplicate the aspect code here
341 image_width
= (width
+ 7) & (~7);
342 image_height
= height
;
346 guiGetEvent(guiSetShVideo
, 0); // the GUI will set up / resize the window
356 bg
= WhitePixel(mDisplay
, mScreen
);
357 fg
= BlackPixel(mDisplay
, mScreen
);
359 theCmap
= vo_x11_create_colormap(&vinfo
);
361 xswa
.background_pixel
= 0;
362 xswa
.border_pixel
= 0;
363 xswa
.colormap
= theCmap
;
364 xswamask
= CWBackPixel
| CWBorderPixel
| CWColormap
;
369 xswa
.override_redirect
= True
;
370 xswamask
|= CWOverrideRedirect
;
374 vo_x11_create_vo_window(&vinfo
, vo_dx
, vo_dy
, vo_dwidth
, vo_dheight
,
375 flags
, theCmap
, "x11", title
);
377 depth
= vo_x11_update_geometry();
382 /* Grab the mouse pointer in our window */
384 XGrabPointer(mDisplay
, vo_window
, True
, 0,
385 GrabModeAsync
, GrabModeAsync
,
386 vo_window
, None
, CurrentTime
);
387 XSetInputFocus(mDisplay
, vo_window
, RevertToNone
, CurrentTime
);
395 sws_freeContext(swsContext
);
399 while (fmte
->mpfmt
) {
400 int depth
= IMGFMT_RGB_DEPTH(fmte
->mpfmt
);
401 /* bits_per_pixel in X seems to be set to 16 for 15 bit formats
402 => force depth to 16 so that only the color masks are used for the format check */
406 if (depth
== myximage
->bits_per_pixel
&&
407 fmte
->byte_order
== myximage
->byte_order
&&
408 fmte
->red_mask
== myximage
->red_mask
&&
409 fmte
->green_mask
== myximage
->green_mask
&&
410 fmte
->blue_mask
== myximage
->blue_mask
)
415 mp_msg(MSGT_VO
, MSGL_ERR
,
416 "X server image format not supported, please contact the developers\n");
419 out_format
= fmte
->mpfmt
;
420 switch ((bpp
= myximage
->bits_per_pixel
))
423 draw_alpha_fnc
= draw_alpha_24
;
426 draw_alpha_fnc
= draw_alpha_32
;
431 draw_alpha_fnc
= draw_alpha_15
;
433 draw_alpha_fnc
= draw_alpha_16
;
436 draw_alpha_fnc
= draw_alpha_null
;
439 // for these formats conversion is currently not support and
440 // we can easily "emulate" them.
441 if (out_format
& 64 && (IMGFMT_IS_RGB(out_format
) || IMGFMT_IS_BGR(out_format
))) {
443 #ifdef WORDS_BIGENDIAN
450 /* always allocate swsContext as size could change between frames */
452 sws_getContextFromCmdLine(width
, height
, in_format
, width
, height
,
458 //printf( "X11 bpp: %d color mask: R:%lX G:%lX B:%lX\n",bpp,myximage->red_mask,myximage->green_mask,myximage->blue_mask );
463 static void Display_Image(XImage
* myximage
, uint8_t * ImageData
)
465 int x
= (vo_dwidth
- dst_width
) / 2;
466 int y
= (vo_dheight
- myximage
->height
) / 2;
468 // do not draw if the image needs rescaling
469 if ((old_vo_dwidth
!= vo_dwidth
|| old_vo_dheight
!= vo_dheight
) && zoomFlag
)
476 myximage
->data
+= out_offset
;
480 XShmPutImage(mDisplay
, vo_window
, vo_gc
, myximage
,
483 myximage
->height
, True
);
487 XPutImage(mDisplay
, vo_window
, vo_gc
, myximage
,
492 myximage
->data
-= out_offset
;
495 static void draw_osd(void)
497 vo_draw_text(image_width
, image_height
, draw_alpha_fnc
);
500 static void flip_page(void)
502 Display_Image(myximage
, ImageData
);
503 XSync(mDisplay
, False
);
506 static int draw_slice(uint8_t * src
[], int stride
[], int w
, int h
,
512 if ((old_vo_dwidth
!= vo_dwidth
513 || old_vo_dheight
!= vo_dheight
) /*&& y==0 */ && zoomFlag
)
515 int newW
= vo_dwidth
;
516 int newH
= vo_dheight
;
517 struct SwsContext
*oldContext
= swsContext
;
519 old_vo_dwidth
= vo_dwidth
;
520 old_vo_dheight
= vo_dheight
;
523 aspect(&newW
, &newH
, A_ZOOM
);
525 newW
&= (~31); // not needed but, if the user wants the FAST_BILINEAR SCALER, then its needed
527 swsContext
= sws_getContextFromCmdLine(srcW
, srcH
, in_format
,
528 newW
, newH
, out_format
);
531 image_width
= (newW
+ 7) & (~7);
536 sws_freeContext(oldContext
);
539 swsContext
= oldContext
;
543 dstStride
[1] = dstStride
[2] = 0;
544 dst
[1] = dst
[2] = NULL
;
546 dstStride
[0] = image_width
* ((bpp
+ 7) / 8);
550 dst
[0] += dstStride
[0] * (image_height
- 1);
551 dstStride
[0] = -dstStride
[0];
553 sws_scale_ordered(swsContext
, src
, stride
, y
, h
, dst
, dstStride
);
557 static int draw_frame(uint8_t * src
[])
562 static uint32_t get_image(mp_image_t
* mpi
)
565 !IMGFMT_IS_BGR(mpi
->imgfmt
) ||
566 (IMGFMT_BGR_DEPTH(mpi
->imgfmt
) != vo_depthonscreen
) ||
567 ((mpi
->type
!= MP_IMGTYPE_STATIC
)
568 && (mpi
->type
!= MP_IMGTYPE_TEMP
))
569 || (mpi
->flags
& MP_IMGFLAG_PLANAR
)
570 || (mpi
->flags
& MP_IMGFLAG_YUV
) || (mpi
->width
!= image_width
)
571 || (mpi
->height
!= image_height
))
576 mpi
->stride
[0] = -image_width
* ((bpp
+ 7) / 8);
577 mpi
->planes
[0] = ImageData
- mpi
->stride
[0] * (image_height
- 1);
580 mpi
->stride
[0] = image_width
* ((bpp
+ 7) / 8);
581 mpi
->planes
[0] = ImageData
;
583 mpi
->flags
|= MP_IMGFLAG_DIRECT
;
588 static int query_format(uint32_t format
)
590 mp_msg(MSGT_VO
, MSGL_DBG2
,
591 "vo_x11: query_format was called: %x (%s)\n", format
,
592 vo_format_name(format
));
593 if (IMGFMT_IS_BGR(format
))
595 if (IMGFMT_BGR_DEPTH(format
) <= 8)
596 return 0; // TODO 8bpp not yet fully implemented
597 if (IMGFMT_BGR_DEPTH(format
) == vo_depthonscreen
)
598 return VFCAP_CSP_SUPPORTED
| VFCAP_CSP_SUPPORTED_BY_HW
| VFCAP_OSD
| VFCAP_SWSCALE
| VFCAP_FLIP
|
601 return VFCAP_CSP_SUPPORTED
| VFCAP_OSD
| VFCAP_SWSCALE
| VFCAP_FLIP
|
608 // case IMGFMT_BGR15:
609 // case IMGFMT_BGR16:
610 // case IMGFMT_BGR24:
611 // case IMGFMT_BGR32:
617 return VFCAP_CSP_SUPPORTED
| VFCAP_OSD
| VFCAP_SWSCALE
| VFCAP_ACCEPT_STRIDE
;
623 static void uninit(void)
637 sws_freeContext(swsContext
);
640 static int preinit(const char *arg
)
644 mp_msg(MSGT_VO
, MSGL_ERR
, "vo_x11: Unknown subdevice: %s\n", arg
);
649 return -1; // Can't open X11
653 static int control(uint32_t request
, void *data
, ...)
658 return int_pause
= 1;
660 return int_pause
= 0;
661 case VOCTRL_QUERY_FORMAT
:
662 return query_format(*((uint32_t *) data
));
663 case VOCTRL_GET_IMAGE
:
664 return get_image(data
);
665 case VOCTRL_GUISUPPORT
:
667 case VOCTRL_FULLSCREEN
:
669 vo_x11_clearwindow(mDisplay
, vo_window
);
671 case VOCTRL_SET_EQUALIZER
:
677 value
= va_arg(ap
, int);
680 return vo_x11_set_equalizer(data
, value
);
682 case VOCTRL_GET_EQUALIZER
:
688 value
= va_arg(ap
, int *);
691 return vo_x11_get_equalizer(data
, value
);
696 case VOCTRL_UPDATE_SCREENINFO
:
697 update_xinerama_info();