FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
xcbgrab.c File Reference
#include "config.h"
#include <stdlib.h>
#include <xcb/xcb.h>
#include "libavformat/avformat.h"
#include "libavformat/internal.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/time.h"

Go to the source code of this file.

Data Structures

struct  XCBGrabContext
 

Macros

#define FOLLOW_CENTER   -1
 
#define OFFSET(x)   offsetof(XCBGrabContext, x)
 
#define D   AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int xcbgrab_reposition (AVFormatContext *s, xcb_query_pointer_reply_t *p, xcb_get_geometry_reply_t *geo)
 
static int xcbgrab_frame (AVFormatContext *s, AVPacket *pkt)
 
static void wait_frame (AVFormatContext *s, AVPacket *pkt)
 
static void xcbgrab_update_region (AVFormatContext *s)
 
static int xcbgrab_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static av_cold int xcbgrab_read_close (AVFormatContext *s)
 
static xcb_screen_t * get_screen (const xcb_setup_t *setup, int screen_num)
 
static int pixfmt_from_pixmap_format (AVFormatContext *s, int depth, int *pix_fmt)
 
static int create_stream (AVFormatContext *s)
 
static void draw_rectangle (AVFormatContext *s)
 
static void setup_window (AVFormatContext *s)
 
static av_cold int xcbgrab_read_header (AVFormatContext *s)
 

Variables

static const AVOption options []
 
static const AVClass xcbgrab_class
 
AVInputFormat ff_x11grab_xcb_demuxer
 

Macro Definition Documentation

#define FOLLOW_CENTER   -1

Definition at line 78 of file xcbgrab.c.

Referenced by xcbgrab_reposition().

#define OFFSET (   x)    offsetof(XCBGrabContext, x)

Definition at line 80 of file xcbgrab.c.

Definition at line 81 of file xcbgrab.c.

Function Documentation

static int xcbgrab_reposition ( AVFormatContext s,
xcb_query_pointer_reply_t *  p,
xcb_get_geometry_reply_t *  geo 
)
static

Definition at line 104 of file xcbgrab.c.

Referenced by xcbgrab_read_packet().

static int xcbgrab_frame ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 141 of file xcbgrab.c.

Referenced by xcbgrab_read_packet().

static void wait_frame ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 170 of file xcbgrab.c.

Referenced by xcbgrab_read_packet().

static void xcbgrab_update_region ( AVFormatContext s)
static

Definition at line 363 of file xcbgrab.c.

Referenced by xcbgrab_read_packet().

static int xcbgrab_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 375 of file xcbgrab.c.

static av_cold int xcbgrab_read_close ( AVFormatContext s)
static

Definition at line 417 of file xcbgrab.c.

Referenced by xcbgrab_read_header().

static xcb_screen_t* get_screen ( const xcb_setup_t *  setup,
int  screen_num 
)
static

Definition at line 426 of file xcbgrab.c.

Referenced by xcbgrab_read_header().

static int pixfmt_from_pixmap_format ( AVFormatContext s,
int  depth,
int *  pix_fmt 
)
static

Definition at line 443 of file xcbgrab.c.

Referenced by create_stream().

static int create_stream ( AVFormatContext s)
static

Definition at line 494 of file xcbgrab.c.

Referenced by xcbgrab_read_header().

static void draw_rectangle ( AVFormatContext s)
static

Definition at line 537 of file xcbgrab.c.

Referenced by setup_window().

static void setup_window ( AVFormatContext s)
static

Definition at line 560 of file xcbgrab.c.

Referenced by xcbgrab_read_header().

static av_cold int xcbgrab_read_header ( AVFormatContext s)
static

Definition at line 596 of file xcbgrab.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "x", "Initial x coordinate.", OFFSET(x), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, D },
{ "y", "Initial y coordinate.", OFFSET(y), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, D },
{ "video_size", "A string describing frame size, such as 640x480 or hd720.", OFFSET(video_size), AV_OPT_TYPE_STRING, {.str = "vga" }, 0, 0, D },
{ "framerate", "", OFFSET(framerate), AV_OPT_TYPE_STRING, {.str = "ntsc" }, 0, 0, D },
{ "draw_mouse", "Draw the mouse pointer.", OFFSET(draw_mouse), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, D },
{ "follow_mouse", "Move the grabbing region when the mouse pointer reaches within specified amount of pixels to the edge of region.",
OFFSET(follow_mouse), AV_OPT_TYPE_INT, { .i64 = 0 }, FOLLOW_CENTER, INT_MAX, D, "follow_mouse" },
{ "centered", "Keep the mouse pointer at the center of grabbing region when following.", 0, AV_OPT_TYPE_CONST, { .i64 = -1 }, INT_MIN, INT_MAX, D, "follow_mouse" },
{ "show_region", "Show the grabbing region.", OFFSET(show_region), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, D },
{ "region_border", "Set the region border thickness.", OFFSET(region_border), AV_OPT_TYPE_INT, { .i64 = 3 }, 1, 128, D },
{ NULL },
}

Definition at line 82 of file xcbgrab.c.

const AVClass xcbgrab_class
static
Initial value:
= {
.class_name = "xcbgrab indev",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 96 of file xcbgrab.c.

AVInputFormat ff_x11grab_xcb_demuxer
Initial value:
= {
.name = "x11grab",
.long_name = NULL_IF_CONFIG_SMALL("X11 screen capture, using XCB"),
.priv_data_size = sizeof(XCBGrabContext),
.priv_class = &xcbgrab_class,
}

Definition at line 663 of file xcbgrab.c.