]> git.sesse.net Git - ffmpeg/blob - libavdevice/x11grab.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavdevice / x11grab.c
1 /*
2  * X11 video grab interface
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg integration:
7  * Copyright (C) 2006 Clemens Fruhwirth <clemens@endorphin.org>
8  *                    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  * Copyright (C) 1997-1998 Rasca, Berlin
15  *               2003-2004 Karl H. Beckers, Frankfurt
16  *
17  * FFmpeg is free software; you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation; either version 2 of the License, or
20  * (at your option) any later version.
21  *
22  * FFmpeg is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with FFmpeg; if not, write to the Free Software
29  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30  */
31
32 /**
33  * @file
34  * X11 frame device demuxer
35  * @author Clemens Fruhwirth <clemens@endorphin.org>
36  * @author Edouard Gomez <ed.gomez@free.fr>
37  */
38
39 #include "config.h"
40 #include "libavformat/internal.h"
41 #include "libavutil/log.h"
42 #include "libavutil/opt.h"
43 #include "libavutil/parseutils.h"
44 #include <time.h>
45 #include <X11/X.h>
46 #include <X11/Xlib.h>
47 #include <X11/Xlibint.h>
48 #include <X11/Xproto.h>
49 #include <X11/Xutil.h>
50 #include <sys/shm.h>
51 #include <X11/extensions/shape.h>
52 #include <X11/extensions/XShm.h>
53 #include <X11/extensions/Xfixes.h>
54 #include "avdevice.h"
55
56 /**
57  * X11 Device Demuxer context
58  */
59 struct x11_grab
60 {
61     const AVClass *class;    /**< Class for private options. */
62     int frame_size;          /**< Size in bytes of a grabbed frame */
63     AVRational time_base;    /**< Time base */
64     int64_t time_frame;      /**< Current time */
65
66     char *video_size;        /**< String describing video size, set by a private option. */
67     int height;              /**< Height of the grab frame */
68     int width;               /**< Width of the grab frame */
69     int x_off;               /**< Horizontal top-left corner coordinate */
70     int y_off;               /**< Vertical top-left corner coordinate */
71
72     Display *dpy;            /**< X11 display from which x11grab grabs frames */
73     XImage *image;           /**< X11 image holding the grab */
74     int use_shm;             /**< !0 when using XShm extension */
75     XShmSegmentInfo shminfo; /**< When using XShm, keeps track of XShm infos */
76     int  draw_mouse;         /**< Set by a private option. */
77     int  follow_mouse;       /**< Set by a private option. */
78     int  show_region;        /**< set by a private option. */
79     char *framerate;         /**< Set by a private option. */
80
81     Window region_win;       /**< This is used by show_region option. */
82 };
83
84 #define REGION_WIN_BORDER 3
85 /**
86  * Draw grabbing region window
87  *
88  * @param s x11_grab context
89  */
90 static void
91 x11grab_draw_region_win(struct x11_grab *s)
92 {
93     Display *dpy = s->dpy;
94     int screen;
95     Window win = s->region_win;
96     GC gc;
97
98     screen = DefaultScreen(dpy);
99     gc = XCreateGC(dpy, win, 0, 0);
100     XSetForeground(dpy, gc, WhitePixel(dpy, screen));
101     XSetBackground(dpy, gc, BlackPixel(dpy, screen));
102     XSetLineAttributes(dpy, gc, REGION_WIN_BORDER, LineDoubleDash, 0, 0);
103     XDrawRectangle(dpy, win, gc,
104                    1, 1,
105                    (s->width  + REGION_WIN_BORDER * 2) - 1 * 2 - 1,
106                    (s->height + REGION_WIN_BORDER * 2) - 1 * 2 - 1);
107     XFreeGC(dpy, gc);
108 }
109
110 /**
111  * Initialize grabbing region window
112  *
113  * @param s x11_grab context
114  */
115 static void
116 x11grab_region_win_init(struct x11_grab *s)
117 {
118     Display *dpy = s->dpy;
119     int screen;
120     XSetWindowAttributes attribs;
121     XRectangle rect;
122
123     screen = DefaultScreen(dpy);
124     attribs.override_redirect = True;
125     s->region_win = XCreateWindow(dpy, RootWindow(dpy, screen),
126                                   s->x_off  - REGION_WIN_BORDER,
127                                   s->y_off  - REGION_WIN_BORDER,
128                                   s->width  + REGION_WIN_BORDER * 2,
129                                   s->height + REGION_WIN_BORDER * 2,
130                                   0, CopyFromParent,
131                                   InputOutput, CopyFromParent,
132                                   CWOverrideRedirect, &attribs);
133     rect.x = 0;
134     rect.y = 0;
135     rect.width  = s->width;
136     rect.height = s->height;
137     XShapeCombineRectangles(dpy, s->region_win,
138                             ShapeBounding, REGION_WIN_BORDER, REGION_WIN_BORDER,
139                             &rect, 1, ShapeSubtract, 0);
140     XMapWindow(dpy, s->region_win);
141     XSelectInput(dpy, s->region_win, ExposureMask | StructureNotifyMask);
142     x11grab_draw_region_win(s);
143 }
144
145 /**
146  * Initialize the x11 grab device demuxer (public device demuxer API).
147  *
148  * @param s1 Context from avformat core
149  * @param ap Parameters from avformat core
150  * @return <ul>
151  *          <li>AVERROR(ENOMEM) no memory left</li>
152  *          <li>AVERROR(EIO) other failure case</li>
153  *          <li>0 success</li>
154  *         </ul>
155  */
156 static int
157 x11grab_read_header(AVFormatContext *s1)
158 {
159     struct x11_grab *x11grab = s1->priv_data;
160     Display *dpy;
161     AVStream *st = NULL;
162     enum PixelFormat input_pixfmt;
163     XImage *image;
164     int x_off = 0;
165     int y_off = 0;
166     int screen;
167     int use_shm;
168     char *dpyname, *offset;
169     int ret = 0;
170     AVRational framerate;
171
172     dpyname = av_strdup(s1->filename);
173     offset = strchr(dpyname, '+');
174     if (offset) {
175         sscanf(offset, "%d,%d", &x_off, &y_off);
176         x11grab->draw_mouse = !strstr(offset, "nomouse");
177         *offset= 0;
178     }
179
180     if ((ret = av_parse_video_size(&x11grab->width, &x11grab->height, x11grab->video_size)) < 0) {
181         av_log(s1, AV_LOG_ERROR, "Couldn't parse video size.\n");
182         goto out;
183     }
184     if ((ret = av_parse_video_rate(&framerate, x11grab->framerate)) < 0) {
185         av_log(s1, AV_LOG_ERROR, "Could not parse framerate: %s.\n", x11grab->framerate);
186         goto out;
187     }
188     av_log(s1, AV_LOG_INFO, "device: %s -> display: %s x: %d y: %d width: %d height: %d\n",
189            s1->filename, dpyname, x_off, y_off, x11grab->width, x11grab->height);
190
191     dpy = XOpenDisplay(dpyname);
192     av_freep(&dpyname);
193     if(!dpy) {
194         av_log(s1, AV_LOG_ERROR, "Could not open X display.\n");
195         ret = AVERROR(EIO);
196         goto out;
197     }
198
199     st = avformat_new_stream(s1, NULL);
200     if (!st) {
201         ret = AVERROR(ENOMEM);
202         goto out;
203     }
204     avpriv_set_pts_info(st, 64, 1, 1000000); /* 64 bits pts in us */
205
206     screen = DefaultScreen(dpy);
207
208     if (x11grab->follow_mouse) {
209         int screen_w, screen_h;
210         Window w;
211
212         screen_w = DisplayWidth(dpy, screen);
213         screen_h = DisplayHeight(dpy, screen);
214         XQueryPointer(dpy, RootWindow(dpy, screen), &w, &w, &x_off, &y_off, &ret, &ret, &ret);
215         x_off -= x11grab->width / 2;
216         y_off -= x11grab->height / 2;
217         x_off = FFMIN(FFMAX(x_off, 0), screen_w - x11grab->width);
218         y_off = FFMIN(FFMAX(y_off, 0), screen_h - x11grab->height);
219         av_log(s1, AV_LOG_INFO, "followmouse is enabled, resetting grabbing region to x: %d y: %d\n", x_off, y_off);
220     }
221
222     use_shm = XShmQueryExtension(dpy);
223     av_log(s1, AV_LOG_INFO, "shared memory extension%s found\n", use_shm ? "" : " not");
224
225     if(use_shm) {
226         int scr = XDefaultScreen(dpy);
227         image = XShmCreateImage(dpy,
228                                 DefaultVisual(dpy, scr),
229                                 DefaultDepth(dpy, scr),
230                                 ZPixmap,
231                                 NULL,
232                                 &x11grab->shminfo,
233                                 x11grab->width, x11grab->height);
234         x11grab->shminfo.shmid = shmget(IPC_PRIVATE,
235                                         image->bytes_per_line * image->height,
236                                         IPC_CREAT|0777);
237         if (x11grab->shminfo.shmid == -1) {
238             av_log(s1, AV_LOG_ERROR, "Fatal: Can't get shared memory!\n");
239             ret = AVERROR(ENOMEM);
240             goto out;
241         }
242         x11grab->shminfo.shmaddr = image->data = shmat(x11grab->shminfo.shmid, 0, 0);
243         x11grab->shminfo.readOnly = False;
244
245         if (!XShmAttach(dpy, &x11grab->shminfo)) {
246             av_log(s1, AV_LOG_ERROR, "Fatal: Failed to attach shared memory!\n");
247             /* needs some better error subroutine :) */
248             ret = AVERROR(EIO);
249             goto out;
250         }
251     } else {
252         image = XGetImage(dpy, RootWindow(dpy, screen),
253                           x_off,y_off,
254                           x11grab->width, x11grab->height,
255                           AllPlanes, ZPixmap);
256     }
257
258     switch (image->bits_per_pixel) {
259     case 8:
260         av_log (s1, AV_LOG_DEBUG, "8 bit palette\n");
261         input_pixfmt = PIX_FMT_PAL8;
262         break;
263     case 16:
264         if (       image->red_mask   == 0xf800 &&
265                    image->green_mask == 0x07e0 &&
266                    image->blue_mask  == 0x001f ) {
267             av_log (s1, AV_LOG_DEBUG, "16 bit RGB565\n");
268             input_pixfmt = PIX_FMT_RGB565;
269         } else if (image->red_mask   == 0x7c00 &&
270                    image->green_mask == 0x03e0 &&
271                    image->blue_mask  == 0x001f ) {
272             av_log(s1, AV_LOG_DEBUG, "16 bit RGB555\n");
273             input_pixfmt = PIX_FMT_RGB555;
274         } else {
275             av_log(s1, AV_LOG_ERROR, "RGB ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel);
276             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);
277             ret = AVERROR(EIO);
278             goto out;
279         }
280         break;
281     case 24:
282         if (        image->red_mask   == 0xff0000 &&
283                     image->green_mask == 0x00ff00 &&
284                     image->blue_mask  == 0x0000ff ) {
285             input_pixfmt = PIX_FMT_BGR24;
286         } else if ( image->red_mask   == 0x0000ff &&
287                     image->green_mask == 0x00ff00 &&
288                     image->blue_mask  == 0xff0000 ) {
289             input_pixfmt = PIX_FMT_RGB24;
290         } else {
291             av_log(s1, AV_LOG_ERROR,"rgb ordering at image depth %i not supported ... aborting\n", image->bits_per_pixel);
292             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);
293             ret = AVERROR(EIO);
294             goto out;
295         }
296         break;
297     case 32:
298         input_pixfmt = PIX_FMT_RGB32;
299         break;
300     default:
301         av_log(s1, AV_LOG_ERROR, "image depth %i not supported ... aborting\n", image->bits_per_pixel);
302         ret = AVERROR(EINVAL);
303         goto out;
304     }
305
306     x11grab->frame_size = x11grab->width * x11grab->height * image->bits_per_pixel/8;
307     x11grab->dpy = dpy;
308     x11grab->time_base  = (AVRational){framerate.den, framerate.num};
309     x11grab->time_frame = av_gettime() / av_q2d(x11grab->time_base);
310     x11grab->x_off = x_off;
311     x11grab->y_off = y_off;
312     x11grab->image = image;
313     x11grab->use_shm = use_shm;
314
315     st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
316     st->codec->codec_id = CODEC_ID_RAWVIDEO;
317     st->codec->width  = x11grab->width;
318     st->codec->height = x11grab->height;
319     st->codec->pix_fmt = input_pixfmt;
320     st->codec->time_base = x11grab->time_base;
321     st->codec->bit_rate = x11grab->frame_size * 1/av_q2d(x11grab->time_base) * 8;
322
323 out:
324     return ret;
325 }
326
327 /**
328  * Paint a mouse pointer in an X11 image.
329  *
330  * @param image image to paint the mouse pointer to
331  * @param s context used to retrieve original grabbing rectangle
332  *          coordinates
333  */
334 static void
335 paint_mouse_pointer(XImage *image, struct x11_grab *s)
336 {
337     int x_off = s->x_off;
338     int y_off = s->y_off;
339     int width = s->width;
340     int height = s->height;
341     Display *dpy = s->dpy;
342     XFixesCursorImage *xcim;
343     int x, y;
344     int line, column;
345     int to_line, to_column;
346     int pixstride = image->bits_per_pixel >> 3;
347     /* Warning: in its insanity, xlib provides unsigned image data through a
348      * char* pointer, so we have to make it uint8_t to make things not break.
349      * Anyone who performs further investigation of the xlib API likely risks
350      * permanent brain damage. */
351     uint8_t *pix = image->data;
352
353     /* Code doesn't currently support 16-bit or PAL8 */
354     if (image->bits_per_pixel != 24 && image->bits_per_pixel != 32)
355         return;
356
357     xcim = XFixesGetCursorImage(dpy);
358
359     x = xcim->x - xcim->xhot;
360     y = xcim->y - xcim->yhot;
361
362     to_line = FFMIN((y + xcim->height), (height + y_off));
363     to_column = FFMIN((x + xcim->width), (width + x_off));
364
365     for (line = FFMAX(y, y_off); line < to_line; line++) {
366         for (column = FFMAX(x, x_off); column < to_column; column++) {
367             int  xcim_addr = (line - y) * xcim->width + column - x;
368             int image_addr = ((line - y_off) * width + column - x_off) * pixstride;
369             int r = (uint8_t)(xcim->pixels[xcim_addr] >>  0);
370             int g = (uint8_t)(xcim->pixels[xcim_addr] >>  8);
371             int b = (uint8_t)(xcim->pixels[xcim_addr] >> 16);
372             int a = (uint8_t)(xcim->pixels[xcim_addr] >> 24);
373
374             if (a == 255) {
375                 pix[image_addr+0] = r;
376                 pix[image_addr+1] = g;
377                 pix[image_addr+2] = b;
378             } else if (a) {
379                 /* pixel values from XFixesGetCursorImage come premultiplied by alpha */
380                 pix[image_addr+0] = r + (pix[image_addr+0]*(255-a) + 255/2) / 255;
381                 pix[image_addr+1] = g + (pix[image_addr+1]*(255-a) + 255/2) / 255;
382                 pix[image_addr+2] = b + (pix[image_addr+2]*(255-a) + 255/2) / 255;
383             }
384         }
385     }
386
387     XFree(xcim);
388     xcim = NULL;
389 }
390
391
392 /**
393  * Read new data in the image structure.
394  *
395  * @param dpy X11 display to grab from
396  * @param d
397  * @param image Image where the grab will be put
398  * @param x Top-Left grabbing rectangle horizontal coordinate
399  * @param y Top-Left grabbing rectangle vertical coordinate
400  * @return 0 if error, !0 if successful
401  */
402 static int
403 xget_zpixmap(Display *dpy, Drawable d, XImage *image, int x, int y)
404 {
405     xGetImageReply rep;
406     xGetImageReq *req;
407     long nbytes;
408
409     if (!image) {
410         return 0;
411     }
412
413     LockDisplay(dpy);
414     GetReq(GetImage, req);
415
416     /* First set up the standard stuff in the request */
417     req->drawable = d;
418     req->x = x;
419     req->y = y;
420     req->width = image->width;
421     req->height = image->height;
422     req->planeMask = (unsigned int)AllPlanes;
423     req->format = ZPixmap;
424
425     if (!_XReply(dpy, (xReply *)&rep, 0, xFalse) || !rep.length) {
426         UnlockDisplay(dpy);
427         SyncHandle();
428         return 0;
429     }
430
431     nbytes = (long)rep.length << 2;
432     _XReadPad(dpy, image->data, nbytes);
433
434     UnlockDisplay(dpy);
435     SyncHandle();
436     return 1;
437 }
438
439 /**
440  * Grab a frame from x11 (public device demuxer API).
441  *
442  * @param s1 Context from avformat core
443  * @param pkt Packet holding the brabbed frame
444  * @return frame size in bytes
445  */
446 static int
447 x11grab_read_packet(AVFormatContext *s1, AVPacket *pkt)
448 {
449     struct x11_grab *s = s1->priv_data;
450     Display *dpy = s->dpy;
451     XImage *image = s->image;
452     int x_off = s->x_off;
453     int y_off = s->y_off;
454
455     int screen;
456     Window root;
457     int follow_mouse = s->follow_mouse;
458
459     int64_t curtime, delay;
460     struct timespec ts;
461
462     /* Calculate the time of the next frame */
463     s->time_frame += INT64_C(1000000);
464
465     /* wait based on the frame rate */
466     for(;;) {
467         curtime = av_gettime();
468         delay = s->time_frame * av_q2d(s->time_base) - curtime;
469         if (delay <= 0) {
470             if (delay < INT64_C(-1000000) * av_q2d(s->time_base)) {
471                 s->time_frame += INT64_C(1000000);
472             }
473             break;
474         }
475         ts.tv_sec = delay / 1000000;
476         ts.tv_nsec = (delay % 1000000) * 1000;
477         nanosleep(&ts, NULL);
478     }
479
480     av_init_packet(pkt);
481     pkt->data = image->data;
482     pkt->size = s->frame_size;
483     pkt->pts = curtime;
484
485     screen = DefaultScreen(dpy);
486     root = RootWindow(dpy, screen);
487     if (follow_mouse) {
488         int screen_w, screen_h;
489         int pointer_x, pointer_y, _;
490         Window w;
491
492         screen_w = DisplayWidth(dpy, screen);
493         screen_h = DisplayHeight(dpy, screen);
494         XQueryPointer(dpy, root, &w, &w, &pointer_x, &pointer_y, &_, &_, &_);
495         if (follow_mouse == -1) {
496             // follow the mouse, put it at center of grabbing region
497             x_off += pointer_x - s->width  / 2 - x_off;
498             y_off += pointer_y - s->height / 2 - y_off;
499         } else {
500             // follow the mouse, but only move the grabbing region when mouse
501             // reaches within certain pixels to the edge.
502             if (pointer_x > x_off + s->width - follow_mouse) {
503                 x_off += pointer_x - (x_off + s->width - follow_mouse);
504             } else if (pointer_x < x_off + follow_mouse)
505                 x_off -= (x_off + follow_mouse) - pointer_x;
506             if (pointer_y > y_off + s->height - follow_mouse) {
507                 y_off += pointer_y - (y_off + s->height - follow_mouse);
508             } else if (pointer_y < y_off + follow_mouse)
509                 y_off -= (y_off + follow_mouse) - pointer_y;
510         }
511         // adjust grabbing region position if it goes out of screen.
512         s->x_off = x_off = FFMIN(FFMAX(x_off, 0), screen_w - s->width);
513         s->y_off = y_off = FFMIN(FFMAX(y_off, 0), screen_h - s->height);
514
515         if (s->show_region && s->region_win)
516             XMoveWindow(dpy, s->region_win,
517                         s->x_off - REGION_WIN_BORDER,
518                         s->y_off - REGION_WIN_BORDER);
519     }
520
521     if (s->show_region) {
522         if (s->region_win) {
523             XEvent evt;
524             // clean up the events, and do the initinal draw or redraw.
525             for (evt.type = NoEventMask; XCheckMaskEvent(dpy, ExposureMask | StructureNotifyMask, &evt); );
526             if (evt.type)
527                 x11grab_draw_region_win(s);
528         } else {
529             x11grab_region_win_init(s);
530         }
531     }
532
533     if(s->use_shm) {
534         if (!XShmGetImage(dpy, root, image, x_off, y_off, AllPlanes)) {
535             av_log (s1, AV_LOG_INFO, "XShmGetImage() failed\n");
536         }
537     } else {
538         if (!xget_zpixmap(dpy, root, image, x_off, y_off)) {
539             av_log (s1, AV_LOG_INFO, "XGetZPixmap() failed\n");
540         }
541     }
542     if (image->bits_per_pixel == 32)
543         XAddPixel(image, 0xFF000000);
544
545     if (s->draw_mouse) {
546         paint_mouse_pointer(image, s);
547     }
548
549     return s->frame_size;
550 }
551
552 /**
553  * Close x11 frame grabber (public device demuxer API).
554  *
555  * @param s1 Context from avformat core
556  * @return 0 success, !0 failure
557  */
558 static int
559 x11grab_read_close(AVFormatContext *s1)
560 {
561     struct x11_grab *x11grab = s1->priv_data;
562
563     /* Detach cleanly from shared mem */
564     if (x11grab->use_shm) {
565         XShmDetach(x11grab->dpy, &x11grab->shminfo);
566         shmdt(x11grab->shminfo.shmaddr);
567         shmctl(x11grab->shminfo.shmid, IPC_RMID, NULL);
568     }
569
570     /* Destroy X11 image */
571     if (x11grab->image) {
572         XDestroyImage(x11grab->image);
573         x11grab->image = NULL;
574     }
575
576     if (x11grab->region_win) {
577         XDestroyWindow(x11grab->dpy, x11grab->region_win);
578     }
579
580     /* Free X11 display */
581     XCloseDisplay(x11grab->dpy);
582     return 0;
583 }
584
585 #define OFFSET(x) offsetof(struct x11_grab, x)
586 #define DEC AV_OPT_FLAG_DECODING_PARAM
587 static const AVOption options[] = {
588     { "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "vga"}, 0, 0, DEC },
589     { "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "ntsc"}, 0, 0, DEC },
590     { "draw_mouse", "Draw the mouse pointer.", OFFSET(draw_mouse), AV_OPT_TYPE_INT, { 1 }, 0, 1, DEC },
591     { "follow_mouse", "Move the grabbing region when the mouse pointer reaches within specified amount of pixels to the edge of region.",
592       OFFSET(follow_mouse), AV_OPT_TYPE_INT, { 0 }, -1, INT_MAX, DEC, "follow_mouse" },
593     { "centered", "Keep the mouse pointer at the center of grabbing region when following.", 0, AV_OPT_TYPE_CONST, { -1 }, INT_MIN, INT_MAX, DEC, "follow_mouse" },
594     { "show_region", "Show the grabbing region.", OFFSET(show_region), AV_OPT_TYPE_INT, { 0 }, 0, 1, DEC },
595     { NULL },
596 };
597
598 static const AVClass x11_class = {
599     .class_name = "X11grab indev",
600     .item_name  = av_default_item_name,
601     .option     = options,
602     .version    = LIBAVUTIL_VERSION_INT,
603 };
604
605 /** x11 grabber device demuxer declaration */
606 AVInputFormat ff_x11_grab_device_demuxer = {
607     .name           = "x11grab",
608     .long_name      = NULL_IF_CONFIG_SMALL("X11grab"),
609     .priv_data_size = sizeof(struct x11_grab),
610     .read_header    = x11grab_read_header,
611     .read_packet    = x11grab_read_packet,
612     .read_close     = x11grab_read_close,
613     .flags          = AVFMT_NOFILE,
614     .priv_class     = &x11_class,
615 };