mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
x11grab: Check for XFixes availability at runtime
This commit is contained in:
parent
68211c70af
commit
89fa2b5616
@ -168,6 +168,19 @@ static int setup_shm(AVFormatContext *s, Display *dpy, XImage **image)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int setup_mouse(Display *dpy, int screen)
|
||||
{
|
||||
int ev_ret, ev_err;
|
||||
|
||||
if (XFixesQueryExtension(dpy, &ev_ret, &ev_err)) {
|
||||
Window root = RootWindow(dpy, screen);
|
||||
XFixesSelectCursorInput(dpy, root, XFixesDisplayCursorNotifyMask);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return AVERROR(ENOSYS);
|
||||
}
|
||||
|
||||
static int pixfmt_from_image(AVFormatContext *s, XImage *image, int *pix_fmt)
|
||||
{
|
||||
av_log(s, AV_LOG_DEBUG,
|
||||
@ -318,6 +331,12 @@ static int x11grab_read_header(AVFormatContext *s1)
|
||||
AllPlanes, ZPixmap);
|
||||
}
|
||||
|
||||
if (x11grab->draw_mouse && setup_mouse(dpy, screen) < 0) {
|
||||
av_log(s1, AV_LOG_WARNING,
|
||||
"XFixes not available, cannot draw the mouse cursor\n");
|
||||
x11grab->draw_mouse = 0;
|
||||
}
|
||||
|
||||
x11grab->frame_size = x11grab->width * x11grab->height * image->bits_per_pixel / 8;
|
||||
x11grab->dpy = dpy;
|
||||
x11grab->time_base = (AVRational) { framerate.den, framerate.num };
|
||||
|
Loading…
Reference in New Issue
Block a user