x11grab.c 22.9 KB
Newer Older
1 2
/*
 * X11 video grab interface
3
 *
4
 * This file is part of FFmpeg.
5
 *
6 7 8
 * FFmpeg integration:
 * Copyright (C) 2006 Clemens Fruhwirth <clemens@endorphin.org>
 *                    Edouard Gomez <ed.gomez@free.fr>
9
 *
10
 * This file contains code from grab.c:
11
 * Copyright (c) 2000-2001 Fabrice Bellard
12 13
 *
 * This file contains code from the xvidcap project:
14 15
 * Copyright (C) 1997-1998 Rasca, Berlin
 *               2003-2004 Karl H. Beckers, Frankfurt
16
 *
17
 * FFmpeg is free software; you can redistribute it and/or modify
18 19 20 21
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
22
 * FFmpeg is distributed in the hope that it will be useful,
23 24 25 26
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
27 28 29
 * You should have received a copy of the GNU General Public License
 * along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30
 */
31

E
Edouard Gomez 已提交
32
/**
33
 * @file
D
Diego Biurrun 已提交
34 35 36
 * X11 frame device demuxer
 * @author Clemens Fruhwirth <clemens@endorphin.org>
 * @author Edouard Gomez <ed.gomez@free.fr>
E
Edouard Gomez 已提交
37 38
 */

39
#include "config.h"
L
Luca Barbato 已提交
40

41
#include <time.h>
L
Luca Barbato 已提交
42 43
#include <sys/shm.h>

I
Isaac Dooley 已提交
44
#include <X11/cursorfont.h>
45 46 47 48
#include <X11/X.h>
#include <X11/Xlib.h>
#include <X11/Xlibint.h>
#include <X11/Xproto.h>
49
#include <X11/Xutil.h>
L
Luca Barbato 已提交
50

Y
Yu-Jie Lin 已提交
51
#include <X11/extensions/shape.h>
R
Roxis 已提交
52
#include <X11/extensions/Xfixes.h>
L
Luca Barbato 已提交
53
#include <X11/extensions/XShm.h>
54

55
#include "avdevice.h"
56

L
Luca Barbato 已提交
57 58 59 60 61 62 63 64
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/time.h"

#include "libavformat/internal.h"

/** X11 device demuxer context */
65
struct x11grab {
66
    const AVClass *class;    /**< Class for private options. */
E
Edouard Gomez 已提交
67 68 69 70 71
    int frame_size;          /**< Size in bytes of a grabbed frame */
    AVRational time_base;    /**< Time base */
    int64_t time_frame;      /**< Current time */

    int width;               /**< Width of the grab frame */
72
    int height;              /**< Height of the grab frame */
E
Edouard Gomez 已提交
73 74 75 76 77 78 79
    int x_off;               /**< Horizontal top-left corner coordinate */
    int y_off;               /**< Vertical top-left corner coordinate */

    Display *dpy;            /**< X11 display from which x11grab grabs frames */
    XImage *image;           /**< X11 image holding the grab */
    int use_shm;             /**< !0 when using XShm extension */
    XShmSegmentInfo shminfo; /**< When using XShm, keeps track of XShm infos */
L
Luca Barbato 已提交
80 81 82
    int draw_mouse;          /**< Set by a private option. */
    int follow_mouse;        /**< Set by a private option. */
    int show_region;         /**< set by a private option. */
83
    AVRational framerate;    /**< Set by a private option. */
84 85
    int palette_changed;
    uint32_t palette[256];
Y
Yu-Jie Lin 已提交
86

87
    Cursor c;
Y
Yu-Jie Lin 已提交
88
    Window region_win;       /**< This is used by show_region option. */
D
Diego Biurrun 已提交
89
};
E
Edouard Gomez 已提交
90

Y
Yu-Jie Lin 已提交
91
#define REGION_WIN_BORDER 3
L
Luca Barbato 已提交
92

Y
Yu-Jie Lin 已提交
93 94 95
/**
 * Draw grabbing region window
 *
96
 * @param s x11grab context
Y
Yu-Jie Lin 已提交
97
 */
L
Luca Barbato 已提交
98
static void x11grab_draw_region_win(struct x11grab *s)
Y
Yu-Jie Lin 已提交
99 100
{
    Display *dpy = s->dpy;
L
Luca Barbato 已提交
101
    Window win   = s->region_win;
102 103
    int screen = DefaultScreen(dpy);
    GC gc = XCreateGC(dpy, win, 0, 0);
Y
Yu-Jie Lin 已提交
104 105 106 107

    XSetForeground(dpy, gc, WhitePixel(dpy, screen));
    XSetBackground(dpy, gc, BlackPixel(dpy, screen));
    XSetLineAttributes(dpy, gc, REGION_WIN_BORDER, LineDoubleDash, 0, 0);
L
Luca Barbato 已提交
108
    XDrawRectangle(dpy, win, gc, 1, 1,
Y
Yu-Jie Lin 已提交
109 110 111 112 113 114 115 116
                   (s->width  + REGION_WIN_BORDER * 2) - 1 * 2 - 1,
                   (s->height + REGION_WIN_BORDER * 2) - 1 * 2 - 1);
    XFreeGC(dpy, gc);
}

/**
 * Initialize grabbing region window
 *
117
 * @param s x11grab context
Y
Yu-Jie Lin 已提交
118
 */
L
Luca Barbato 已提交
119
static void x11grab_region_win_init(struct x11grab *s)
Y
Yu-Jie Lin 已提交
120 121 122
{
    Display *dpy = s->dpy;
    XRectangle rect;
123 124
    XSetWindowAttributes attribs = { .override_redirect = True };
    int screen = DefaultScreen(dpy);
Y
Yu-Jie Lin 已提交
125 126 127 128 129 130 131 132 133

    s->region_win = XCreateWindow(dpy, RootWindow(dpy, screen),
                                  s->x_off  - REGION_WIN_BORDER,
                                  s->y_off  - REGION_WIN_BORDER,
                                  s->width  + REGION_WIN_BORDER * 2,
                                  s->height + REGION_WIN_BORDER * 2,
                                  0, CopyFromParent,
                                  InputOutput, CopyFromParent,
                                  CWOverrideRedirect, &attribs);
L
Luca Barbato 已提交
134 135
    rect.x      = 0;
    rect.y      = 0;
Y
Yu-Jie Lin 已提交
136 137 138 139 140 141 142 143 144 145
    rect.width  = s->width;
    rect.height = s->height;
    XShapeCombineRectangles(dpy, s->region_win,
                            ShapeBounding, REGION_WIN_BORDER, REGION_WIN_BORDER,
                            &rect, 1, ShapeSubtract, 0);
    XMapWindow(dpy, s->region_win);
    XSelectInput(dpy, s->region_win, ExposureMask | StructureNotifyMask);
    x11grab_draw_region_win(s);
}

E
Edouard Gomez 已提交
146
/**
147
 * Initialize the x11 grab device demuxer (public device demuxer API).
E
Edouard Gomez 已提交
148 149 150
 *
 * @param s1 Context from avformat core
 * @return <ul>
151
 *          <li>AVERROR(ENOMEM) no memory left</li>
152
 *          <li>AVERROR(EIO) other failure case</li>
E
Edouard Gomez 已提交
153 154 155
 *          <li>0 success</li>
 *         </ul>
 */
L
Luca Barbato 已提交
156
static int x11grab_read_header(AVFormatContext *s1)
157
{
158
    struct x11grab *x11grab = s1->priv_data;
159 160
    Display *dpy;
    AVStream *st = NULL;
161
    enum AVPixelFormat input_pixfmt;
162
    XImage *image;
163
    int x_off = 0, y_off = 0, ret = 0, screen, use_shm = 0;
164
    char *dpyname, *offset;
165 166 167
    Colormap color_map;
    XColor color[256];
    int i;
168

169
    dpyname = av_strdup(s1->filename);
170
    if (!dpyname)
171 172
        goto out;

173
    offset = strchr(dpyname, '+');
174 175
    if (offset) {
        sscanf(offset, "%d,%d", &x_off, &y_off);
176 177 178 179 180 181
        if (strstr(offset, "nomouse")) {
            av_log(s1, AV_LOG_WARNING,
                   "'nomouse' specification in argument is deprecated: "
                   "use 'draw_mouse' option with value 0 instead\n");
            x11grab->draw_mouse = 0;
        }
L
Luca Barbato 已提交
182
        *offset = 0;
183 184
    }

L
Luca Barbato 已提交
185 186
    av_log(s1, AV_LOG_INFO,
           "device: %s -> display: %s x: %d y: %d width: %d height: %d\n",
187
           s1->filename, dpyname, x_off, y_off, x11grab->width, x11grab->height);
188

189 190
    dpy = XOpenDisplay(dpyname);
    av_freep(&dpyname);
L
Luca Barbato 已提交
191
    if (!dpy) {
192
        av_log(s1, AV_LOG_ERROR, "Could not open X display.\n");
193 194
        ret = AVERROR(EIO);
        goto out;
195
    }
196

197
    st = avformat_new_stream(s1, NULL);
198
    if (!st) {
199 200
        ret = AVERROR(ENOMEM);
        goto out;
201
    }
202
    avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
203

Y
Yu-Jie Lin 已提交
204 205 206 207 208 209 210 211
    screen = DefaultScreen(dpy);

    if (x11grab->follow_mouse) {
        int screen_w, screen_h;
        Window w;

        screen_w = DisplayWidth(dpy, screen);
        screen_h = DisplayHeight(dpy, screen);
L
Luca Barbato 已提交
212 213
        XQueryPointer(dpy, RootWindow(dpy, screen), &w, &w, &x_off, &y_off,
                      &ret, &ret, &ret);
Y
Yu-Jie Lin 已提交
214 215
        x_off -= x11grab->width / 2;
        y_off -= x11grab->height / 2;
L
Luca Barbato 已提交
216 217 218 219 220
        x_off  = FFMIN(FFMAX(x_off, 0), screen_w - x11grab->width);
        y_off  = FFMIN(FFMAX(y_off, 0), screen_h - x11grab->height);
        av_log(s1, AV_LOG_INFO,
               "followmouse is enabled, resetting grabbing region to x: %d y: %d\n",
               x_off, y_off);
Y
Yu-Jie Lin 已提交
221 222
    }

223
    if (x11grab->use_shm) {
224
        use_shm = XShmQueryExtension(dpy);
225 226
        av_log(s1, AV_LOG_INFO,
               "shared memory extension%s found\n", use_shm ? "" : " not");
227
    }
228

L
Luca Barbato 已提交
229
    if (use_shm) {
230 231 232 233 234 235 236
        int scr = XDefaultScreen(dpy);
        image = XShmCreateImage(dpy,
                                DefaultVisual(dpy, scr),
                                DefaultDepth(dpy, scr),
                                ZPixmap,
                                NULL,
                                &x11grab->shminfo,
237
                                x11grab->width, x11grab->height);
238 239
        x11grab->shminfo.shmid = shmget(IPC_PRIVATE,
                                        image->bytes_per_line * image->height,
L
Luca Barbato 已提交
240
                                        IPC_CREAT | 0777);
241 242
        if (x11grab->shminfo.shmid == -1) {
            av_log(s1, AV_LOG_ERROR, "Fatal: Can't get shared memory!\n");
243 244
            ret = AVERROR(ENOMEM);
            goto out;
245
        }
L
Luca Barbato 已提交
246
        x11grab->shminfo.shmaddr  = image->data = shmat(x11grab->shminfo.shmid, 0, 0);
247 248 249 250 251
        x11grab->shminfo.readOnly = False;

        if (!XShmAttach(dpy, &x11grab->shminfo)) {
            av_log(s1, AV_LOG_ERROR, "Fatal: Failed to attach shared memory!\n");
            /* needs some better error subroutine :) */
252 253
            ret = AVERROR(EIO);
            goto out;
254 255
        }
    } else {
Y
Yu-Jie Lin 已提交
256
        image = XGetImage(dpy, RootWindow(dpy, screen),
L
Luca Barbato 已提交
257
                          x_off, y_off,
258
                          x11grab->width, x11grab->height,
259 260 261 262 263
                          AllPlanes, ZPixmap);
    }

    switch (image->bits_per_pixel) {
    case 8:
L
Luca Barbato 已提交
264
        av_log(s1, AV_LOG_DEBUG, "8 bit palette\n");
265
        input_pixfmt = AV_PIX_FMT_PAL8;
266 267 268 269 270 271 272 273 274
        color_map = DefaultColormap(dpy, screen);
        for (i = 0; i < 256; ++i)
            color[i].pixel = i;
        XQueryColors(dpy, color_map, color, 256);
        for (i = 0; i < 256; ++i)
            x11grab->palette[i] = (color[i].red   & 0xFF00) << 8 |
                                  (color[i].green & 0xFF00)      |
                                  (color[i].blue  & 0xFF00) >> 8;
        x11grab->palette_changed = 1;
275 276
        break;
    case 16:
L
Luca Barbato 已提交
277 278 279 280
        if (image->red_mask   == 0xf800 &&
            image->green_mask == 0x07e0 &&
            image->blue_mask  == 0x001f) {
            av_log(s1, AV_LOG_DEBUG, "16 bit RGB565\n");
281
            input_pixfmt = AV_PIX_FMT_RGB565;
E
Edouard Gomez 已提交
282 283
        } else if (image->red_mask   == 0x7c00 &&
                   image->green_mask == 0x03e0 &&
L
Luca Barbato 已提交
284
                   image->blue_mask  == 0x001f) {
285
            av_log(s1, AV_LOG_DEBUG, "16 bit RGB555\n");
286
            input_pixfmt = AV_PIX_FMT_RGB555;
287
        } else {
L
Luca Barbato 已提交
288 289 290 291 292 293
            av_log(s1, AV_LOG_ERROR,
                   "RGB ordering at image depth %i not supported ... aborting\n",
                   image->bits_per_pixel);
            av_log(s1, AV_LOG_ERROR,
                   "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n",
                   image->red_mask, image->green_mask, image->blue_mask);
294
            ret = AVERROR_PATCHWELCOME;
295
            goto out;
296 297 298
        }
        break;
    case 24:
L
Luca Barbato 已提交
299 300 301
        if (image->red_mask   == 0xff0000 &&
            image->green_mask == 0x00ff00 &&
            image->blue_mask  == 0x0000ff) {
302
            input_pixfmt = AV_PIX_FMT_BGR24;
L
Luca Barbato 已提交
303 304 305
        } else if (image->red_mask   == 0x0000ff &&
                   image->green_mask == 0x00ff00 &&
                   image->blue_mask  == 0xff0000) {
306
            input_pixfmt = AV_PIX_FMT_RGB24;
307
        } else {
L
Luca Barbato 已提交
308 309 310 311 312 313
            av_log(s1, AV_LOG_ERROR,
                   "rgb ordering at image depth %i not supported ... aborting\n",
                   image->bits_per_pixel);
            av_log(s1, AV_LOG_ERROR,
                   "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n",
                   image->red_mask, image->green_mask, image->blue_mask);
314
            ret = AVERROR_PATCHWELCOME;
315
            goto out;
316 317 318
        }
        break;
    case 32:
319 320 321 322 323 324 325 326 327 328
        if (        image->red_mask   == 0xff0000 &&
                    image->green_mask == 0x00ff00 &&
                    image->blue_mask  == 0x0000ff ) {
            input_pixfmt = AV_PIX_FMT_0RGB32;
        } else {
            av_log(s1, AV_LOG_ERROR,"rgb ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel);
            av_log(s1, AV_LOG_ERROR, "color masks: r 0x%.6lx g 0x%.6lx b 0x%.6lx\n", image->red_mask, image->green_mask, image->blue_mask);
            ret = AVERROR_PATCHWELCOME;
            goto out;
        }
329 330
        break;
    default:
L
Luca Barbato 已提交
331 332 333
        av_log(s1, AV_LOG_ERROR,
               "image depth %i not supported ... aborting\n",
               image->bits_per_pixel);
334
        ret = AVERROR_PATCHWELCOME;
335
        goto out;
336 337
    }

L
Luca Barbato 已提交
338 339
    x11grab->frame_size = x11grab->width * x11grab->height * image->bits_per_pixel / 8;
    x11grab->dpy        = dpy;
340
    x11grab->time_base  = av_inv_q(x11grab->framerate);
341
    x11grab->time_frame = av_gettime() / av_q2d(x11grab->time_base);
L
Luca Barbato 已提交
342 343 344 345
    x11grab->x_off      = x_off;
    x11grab->y_off      = y_off;
    x11grab->image      = image;
    x11grab->use_shm    = use_shm;
346

347
    st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
L
Luca Barbato 已提交
348 349 350 351 352 353
    st->codec->codec_id   = AV_CODEC_ID_RAWVIDEO;
    st->codec->width      = x11grab->width;
    st->codec->height     = x11grab->height;
    st->codec->pix_fmt    = input_pixfmt;
    st->codec->time_base  = x11grab->time_base;
    st->codec->bit_rate   = x11grab->frame_size * 1 / av_q2d(x11grab->time_base) * 8;
354

355
out:
M
Michael Niedermayer 已提交
356
    av_free(dpyname);
357
    return ret;
358 359
}

E
Edouard Gomez 已提交
360
/**
361
 * Paint a mouse pointer in an X11 image.
E
Edouard Gomez 已提交
362
 *
D
Diego Biurrun 已提交
363
 * @param image image to paint the mouse pointer to
E
Edouard Gomez 已提交
364 365 366
 * @param s context used to retrieve original grabbing rectangle
 *          coordinates
 */
367
static void paint_mouse_pointer(XImage *image, AVFormatContext *s1)
368
{
369
    struct x11grab *s = s1->priv_data;
L
Luca Barbato 已提交
370 371 372 373
    int x_off    = s->x_off;
    int y_off    = s->y_off;
    int width    = s->width;
    int height   = s->height;
R
Roxis 已提交
374 375 376 377 378
    Display *dpy = s->dpy;
    XFixesCursorImage *xcim;
    int x, y;
    int line, column;
    int to_line, to_column;
379 380 381 382 383 384
    int pixstride = image->bits_per_pixel >> 3;
    /* Warning: in its insanity, xlib provides unsigned image data through a
     * char* pointer, so we have to make it uint8_t to make things not break.
     * Anyone who performs further investigation of the xlib API likely risks
     * permanent brain damage. */
    uint8_t *pix = image->data;
385 386
    Window w;
    XSetWindowAttributes attr;
387 388 389 390

    /* Code doesn't currently support 16-bit or PAL8 */
    if (image->bits_per_pixel != 24 && image->bits_per_pixel != 32)
        return;
391

392
    if (!s->c)
393
        s->c = XCreateFontCursor(dpy, XC_left_ptr);
394
    w = DefaultRootWindow(dpy);
395
    attr.cursor = s->c;
I
Isaac Dooley 已提交
396 397
    XChangeWindowAttributes(dpy, w, CWCursor, &attr);

C
Carl Eugen Hoyos 已提交
398
    xcim = XFixesGetCursorImage(dpy);
399 400 401 402 403 404
    if (!xcim) {
        av_log(s1, AV_LOG_WARNING,
               "XFixes extension not available, impossible to draw cursor\n");
        s->draw_mouse = 0;
        return;
    }
405

R
Roxis 已提交
406 407 408
    x = xcim->x - xcim->xhot;
    y = xcim->y - xcim->yhot;

L
Luca Barbato 已提交
409 410
    to_line   = FFMIN((y + xcim->height), (height + y_off));
    to_column = FFMIN((x + xcim->width),  (width  + x_off));
R
Roxis 已提交
411 412 413

    for (line = FFMAX(y, y_off); line < to_line; line++) {
        for (column = FFMAX(x, x_off); column < to_column; column++) {
L
Luca Barbato 已提交
414 415 416 417 418 419
            int xcim_addr  = (line  - y)     * xcim->width + column - x;
            int image_addr = ((line - y_off) * width       + column - x_off) * pixstride;
            int r          = (uint8_t)(xcim->pixels[xcim_addr] >>  0);
            int g          = (uint8_t)(xcim->pixels[xcim_addr] >>  8);
            int b          = (uint8_t)(xcim->pixels[xcim_addr] >> 16);
            int a          = (uint8_t)(xcim->pixels[xcim_addr] >> 24);
420 421

            if (a == 255) {
L
Luca Barbato 已提交
422 423 424
                pix[image_addr + 0] = r;
                pix[image_addr + 1] = g;
                pix[image_addr + 2] = b;
425 426
            } else if (a) {
                /* pixel values from XFixesGetCursorImage come premultiplied by alpha */
L
Luca Barbato 已提交
427 428 429
                pix[image_addr + 0] = r + (pix[image_addr + 0] * (255 - a) + 255 / 2) / 255;
                pix[image_addr + 1] = g + (pix[image_addr + 1] * (255 - a) + 255 / 2) / 255;
                pix[image_addr + 2] = b + (pix[image_addr + 2] * (255 - a) + 255 / 2) / 255;
430
            }
431 432
        }
    }
R
Roxis 已提交
433 434 435

    XFree(xcim);
    xcim = NULL;
436 437
}

E
Edouard Gomez 已提交
438
/**
439
 * Read new data in the image structure.
E
Edouard Gomez 已提交
440 441
 *
 * @param dpy X11 display to grab from
442
 * @param d
E
Edouard Gomez 已提交
443 444 445 446
 * @param image Image where the grab will be put
 * @param x Top-Left grabbing rectangle horizontal coordinate
 * @param y Top-Left grabbing rectangle vertical coordinate
 * @return 0 if error, !0 if successful
447
 */
L
Luca Barbato 已提交
448
static int xget_zpixmap(Display *dpy, Drawable d, XImage *image, int x, int y)
449
{
450 451 452 453
    xGetImageReply rep;
    xGetImageReq *req;
    long nbytes;

L
Luca Barbato 已提交
454
    if (!image)
E
Edouard Gomez 已提交
455
        return 0;
456 457 458 459 460

    LockDisplay(dpy);
    GetReq(GetImage, req);

    /* First set up the standard stuff in the request */
L
Luca Barbato 已提交
461 462 463 464 465
    req->drawable  = d;
    req->x         = x;
    req->y         = y;
    req->width     = image->width;
    req->height    = image->height;
466
    req->planeMask = (unsigned int)AllPlanes;
L
Luca Barbato 已提交
467
    req->format    = ZPixmap;
468

E
Edouard Gomez 已提交
469
    if (!_XReply(dpy, (xReply *)&rep, 0, xFalse) || !rep.length) {
470 471
        UnlockDisplay(dpy);
        SyncHandle();
E
Edouard Gomez 已提交
472
        return 0;
473 474 475 476 477 478 479
    }

    nbytes = (long)rep.length << 2;
    _XReadPad(dpy, image->data, nbytes);

    UnlockDisplay(dpy);
    SyncHandle();
E
Edouard Gomez 已提交
480
    return 1;
481 482
}

E
Edouard Gomez 已提交
483
/**
484
 * Grab a frame from x11 (public device demuxer API).
E
Edouard Gomez 已提交
485 486 487 488 489
 *
 * @param s1 Context from avformat core
 * @param pkt Packet holding the brabbed frame
 * @return frame size in bytes
 */
L
Luca Barbato 已提交
490
static int x11grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
491
{
492
    struct x11grab *s = s1->priv_data;
L
Luca Barbato 已提交
493 494 495 496 497
    Display *dpy      = s->dpy;
    XImage *image     = s->image;
    int x_off         = s->x_off;
    int y_off         = s->y_off;
    int follow_mouse  = s->follow_mouse;
Y
Yu-Jie Lin 已提交
498 499
    int screen;
    Window root;
500 501 502 503
    int64_t curtime, delay;
    struct timespec ts;

    /* Calculate the time of the next frame */
504
    s->time_frame += INT64_C(1000000);
505 506

    /* wait based on the frame rate */
L
Luca Barbato 已提交
507
    for (;;) {
508
        curtime = av_gettime();
L
Luca Barbato 已提交
509
        delay   = s->time_frame * av_q2d(s->time_base) - curtime;
510
        if (delay <= 0) {
L
Luca Barbato 已提交
511
            if (delay < INT64_C(-1000000) * av_q2d(s->time_base))
512
                s->time_frame += INT64_C(1000000);
513 514
            break;
        }
L
Luca Barbato 已提交
515
        ts.tv_sec  = delay / 1000000;
516 517 518 519
        ts.tv_nsec = (delay % 1000000) * 1000;
        nanosleep(&ts, NULL);
    }

520 521 522
    av_init_packet(pkt);
    pkt->data = image->data;
    pkt->size = s->frame_size;
L
Luca Barbato 已提交
523
    pkt->pts  = curtime;
524 525 526 527 528 529 530 531 532 533
    if (s->palette_changed) {
        uint8_t *pal = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE,
                                               AVPALETTE_SIZE);
        if (!pal) {
            av_log(s, AV_LOG_ERROR, "Cannot append palette to packet\n");
        } else {
            memcpy(pal, s->palette, AVPALETTE_SIZE);
            s->palette_changed = 0;
        }
    }
534

Y
Yu-Jie Lin 已提交
535
    screen = DefaultScreen(dpy);
L
Luca Barbato 已提交
536
    root   = RootWindow(dpy, screen);
Y
Yu-Jie Lin 已提交
537 538 539 540 541 542 543 544 545 546
    if (follow_mouse) {
        int screen_w, screen_h;
        int pointer_x, pointer_y, _;
        Window w;

        screen_w = DisplayWidth(dpy, screen);
        screen_h = DisplayHeight(dpy, screen);
        XQueryPointer(dpy, root, &w, &w, &pointer_x, &pointer_y, &_, &_, &_);
        if (follow_mouse == -1) {
            // follow the mouse, put it at center of grabbing region
L
Luca Barbato 已提交
547
            x_off += pointer_x - s->width / 2 - x_off;
Y
Yu-Jie Lin 已提交
548 549 550 551
            y_off += pointer_y - s->height / 2 - y_off;
        } else {
            // follow the mouse, but only move the grabbing region when mouse
            // reaches within certain pixels to the edge.
L
Luca Barbato 已提交
552
            if (pointer_x > x_off + s->width - follow_mouse)
Y
Yu-Jie Lin 已提交
553
                x_off += pointer_x - (x_off + s->width - follow_mouse);
L
Luca Barbato 已提交
554
            else if (pointer_x < x_off + follow_mouse)
Y
Yu-Jie Lin 已提交
555
                x_off -= (x_off + follow_mouse) - pointer_x;
L
Luca Barbato 已提交
556
            if (pointer_y > y_off + s->height - follow_mouse)
Y
Yu-Jie Lin 已提交
557
                y_off += pointer_y - (y_off + s->height - follow_mouse);
L
Luca Barbato 已提交
558
            else if (pointer_y < y_off + follow_mouse)
Y
Yu-Jie Lin 已提交
559 560 561 562 563
                y_off -= (y_off + follow_mouse) - pointer_y;
        }
        // adjust grabbing region position if it goes out of screen.
        s->x_off = x_off = FFMIN(FFMAX(x_off, 0), screen_w - s->width);
        s->y_off = y_off = FFMIN(FFMAX(y_off, 0), screen_h - s->height);
Y
Yu-Jie Lin 已提交
564 565 566 567 568 569 570 571 572

        if (s->show_region && s->region_win)
            XMoveWindow(dpy, s->region_win,
                        s->x_off - REGION_WIN_BORDER,
                        s->y_off - REGION_WIN_BORDER);
    }

    if (s->show_region) {
        if (s->region_win) {
573 574 575 576
            XEvent evt = { .type = NoEventMask };
            // Clean up the events, and do the initial draw or redraw.
            while (XCheckMaskEvent(dpy, ExposureMask | StructureNotifyMask,
                                   &evt))
L
Luca Barbato 已提交
577
                ;
Y
Yu-Jie Lin 已提交
578 579 580 581 582
            if (evt.type)
                x11grab_draw_region_win(s);
        } else {
            x11grab_region_win_init(s);
        }
Y
Yu-Jie Lin 已提交
583 584
    }

L
Luca Barbato 已提交
585 586 587
    if (s->use_shm) {
        if (!XShmGetImage(dpy, root, image, x_off, y_off, AllPlanes))
            av_log(s1, AV_LOG_INFO, "XShmGetImage() failed\n");
588
    } else {
L
Luca Barbato 已提交
589 590
        if (!xget_zpixmap(dpy, root, image, x_off, y_off))
            av_log(s1, AV_LOG_INFO, "XGetZPixmap() failed\n");
591 592
    }

L
Luca Barbato 已提交
593
    if (s->draw_mouse)
594
        paint_mouse_pointer(image, s1);
595 596

    return s->frame_size;
597 598
}

E
Edouard Gomez 已提交
599
/**
600
 * Close x11 frame grabber (public device demuxer API).
E
Edouard Gomez 已提交
601 602 603 604
 *
 * @param s1 Context from avformat core
 * @return 0 success, !0 failure
 */
L
Luca Barbato 已提交
605
static int x11grab_read_close(AVFormatContext *s1)
606
{
607
    struct x11grab *x11grab = s1->priv_data;
608 609 610 611 612 613 614 615 616 617 618 619 620 621

    /* Detach cleanly from shared mem */
    if (x11grab->use_shm) {
        XShmDetach(x11grab->dpy, &x11grab->shminfo);
        shmdt(x11grab->shminfo.shmaddr);
        shmctl(x11grab->shminfo.shmid, IPC_RMID, NULL);
    }

    /* Destroy X11 image */
    if (x11grab->image) {
        XDestroyImage(x11grab->image);
        x11grab->image = NULL;
    }

L
Luca Barbato 已提交
622
    if (x11grab->region_win)
Y
Yu-Jie Lin 已提交
623 624
        XDestroyWindow(x11grab->dpy, x11grab->region_win);

625 626 627
    /* Free X11 display */
    XCloseDisplay(x11grab->dpy);
    return 0;
628 629
}

630
#define OFFSET(x) offsetof(struct x11grab, x)
631 632
#define DEC AV_OPT_FLAG_DECODING_PARAM
static const AVOption options[] = {
633
    { "draw_mouse", "draw the mouse pointer", OFFSET(draw_mouse), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC },
634 635

    { "follow_mouse", "move the grabbing region when the mouse pointer reaches within specified amount of pixels to the edge of region",
636
      OFFSET(follow_mouse), AV_OPT_TYPE_INT, {.i64 = 0}, -1, INT_MAX, DEC, "follow_mouse" },
637
    { "centered",     "keep the mouse pointer at the center of grabbing region when following",
638
      0, AV_OPT_TYPE_CONST, {.i64 = -1}, INT_MIN, INT_MAX, DEC, "follow_mouse" },
639

640
    { "framerate",  "set video frame rate",      OFFSET(framerate),   AV_OPT_TYPE_VIDEO_RATE, {.str = "ntsc"}, 0, 0, DEC },
641
    { "show_region", "show the grabbing region", OFFSET(show_region), AV_OPT_TYPE_INT,        {.i64 = 0}, 0, 1, DEC },
642
    { "video_size",  "set video frame size",     OFFSET(width),       AV_OPT_TYPE_IMAGE_SIZE, {.str = "vga"}, 0, 0, DEC },
643
    { "use_shm",     "use MIT-SHM extension",    OFFSET(use_shm),     AV_OPT_TYPE_INT,        {.i64 = 1}, 0, 1, DEC },
644 645 646 647 648 649 650 651
    { NULL },
};

static const AVClass x11_class = {
    .class_name = "X11grab indev",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
652
    .category   = AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT,
653 654
};

E
Edouard Gomez 已提交
655
/** x11 grabber device demuxer declaration */
656
AVInputFormat ff_x11grab_demuxer = {
657 658
    .name           = "x11grab",
    .long_name      = NULL_IF_CONFIG_SMALL("X11grab"),
659
    .priv_data_size = sizeof(struct x11grab),
660 661 662 663 664
    .read_header    = x11grab_read_header,
    .read_packet    = x11grab_read_packet,
    .read_close     = x11grab_read_close,
    .flags          = AVFMT_NOFILE,
    .priv_class     = &x11_class,
665
};