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