FFmpeg  2.1.1
Data Structures | Macros | Functions | Variables
fbdev_dec.c File Reference

Linux framebuffer input device, inspired by code from fbgrab.c by Gunnar Monell. More...

#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <time.h>
#include <linux/fb.h>
#include "libavutil/internal.h"
#include "libavutil/log.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "libavutil/parseutils.h"
#include "libavutil/pixdesc.h"
#include "libavformat/internal.h"
#include "avdevice.h"
#include "fbdev_common.h"

Go to the source code of this file.

Data Structures

struct  FBDevContext
 

Macros

#define OFFSET(x)   offsetof(FBDevContext, x)
 
#define DEC   AV_OPT_FLAG_DECODING_PARAM
 

Functions

static av_cold int fbdev_read_header (AVFormatContext *avctx)
 
static int fbdev_read_packet (AVFormatContext *avctx, AVPacket *pkt)
 
static av_cold int fbdev_read_close (AVFormatContext *avctx)
 

Variables

static const AVOption options []
 
static const AVClass fbdev_class
 
AVInputFormat ff_fbdev_demuxer
 

Detailed Description

Linux framebuffer input device, inspired by code from fbgrab.c by Gunnar Monell.

See Also
http://linux-fbdev.sourceforge.net/

Definition in file fbdev_dec.c.

Macro Definition Documentation

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

Definition at line 208 of file fbdev_dec.c.

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 209 of file fbdev_dec.c.

Function Documentation

static av_cold int fbdev_read_header ( AVFormatContext avctx)
static

Definition at line 65 of file fbdev_dec.c.

static int fbdev_read_packet ( AVFormatContext avctx,
AVPacket pkt 
)
static

Definition at line 145 of file fbdev_dec.c.

static av_cold int fbdev_read_close ( AVFormatContext avctx)
static

Definition at line 198 of file fbdev_dec.c.

Variable Documentation

const AVOption options[]
static
Initial value:
= {
{ "framerate","", OFFSET(framerate_q), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC },
{ NULL },
}
#define DEC
Definition: fbdev_dec.c:209
#define OFFSET(x)
Definition: fbdev_dec.c:208
offset must point to AVRational
Definition: opt.h:233

Definition at line 210 of file fbdev_dec.c.

const AVClass fbdev_class
static
Initial value:
= {
.class_name = "fbdev indev",
.item_name = av_default_item_name,
.option = options,
}
#define LIBAVUTIL_VERSION_INT
Definition: avcodec.h:820
const char * av_default_item_name(void *ctx)
Return the context name.
Definition: log.c:145
const OptionDef options[]
Definition: ffserver.c:4682

Definition at line 215 of file fbdev_dec.c.

AVInputFormat ff_fbdev_demuxer
Initial value:
= {
.name = "fbdev",
.long_name = NULL_IF_CONFIG_SMALL("Linux framebuffer"),
.priv_data_size = sizeof(FBDevContext),
.priv_class = &fbdev_class,
}
static const AVClass fbdev_class
Definition: fbdev_dec.c:215
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:347
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:151
static int fbdev_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: fbdev_dec.c:145
static av_cold int fbdev_read_close(AVFormatContext *avctx)
Definition: fbdev_dec.c:198
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:592
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
static int flags
Definition: cpu.c:45
static av_cold int fbdev_read_header(AVFormatContext *avctx)
Definition: fbdev_dec.c:65

Definition at line 222 of file fbdev_dec.c.