lavfi.c File Reference

libavfilter virtual input device More...

#include <float.h>
#include "libavutil/bprint.h"
#include "libavutil/channel_layout.h"
#include "libavutil/file.h"
#include "libavutil/log.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "libavutil/pixdesc.h"
#include "libavfilter/avfilter.h"
#include "libavfilter/avfiltergraph.h"
#include "libavfilter/buffersink.h"
#include "libavformat/internal.h"
#include "avdevice.h"
Include dependency graph for lavfi.c:

Go to the source code of this file.

Data Structures

struct  LavfiContext
 

Macros

#define FAIL(ERR)   { ret = ERR; goto end; }
 
#define OFFSET(x)   offsetof(LavfiContext, x)
 
#define DEC   AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int * create_all_formats (int n)
 
static av_cold int lavfi_read_close (AVFormatContext *avctx)
 
static av_cold int lavfi_read_header (AVFormatContext *avctx)
 
static int lavfi_read_packet (AVFormatContext *avctx, AVPacket *pkt)
 

Variables

static const AVOption options []
 
static const AVClass lavfi_class
 
AVInputFormat ff_lavfi_demuxer
 

Detailed Description

libavfilter virtual input device

Definition in file lavfi.c.

Macro Definition Documentation

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 410 of file lavfi.c.

#define FAIL (   ERR)    { ret = ERR; goto end; }

Referenced by lavfi_read_header().

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

Definition at line 408 of file lavfi.c.

Function Documentation

static int* create_all_formats ( int  n)
static

Definition at line 57 of file lavfi.c.

Referenced by lavfi_read_header().

static av_cold int lavfi_read_close ( AVFormatContext avctx)
static

Definition at line 78 of file lavfi.c.

Referenced by lavfi_read_header().

static av_cold int lavfi_read_header ( AVFormatContext avctx)
static

Definition at line 92 of file lavfi.c.

static int lavfi_read_packet ( AVFormatContext avctx,
AVPacket pkt 
)
static

Definition at line 313 of file lavfi.c.

Variable Documentation

AVInputFormat ff_lavfi_demuxer
Initial value:
= {
.name = "lavfi",
.long_name = NULL_IF_CONFIG_SMALL("Libavfilter virtual input device"),
.priv_data_size = sizeof(LavfiContext),
.priv_class = &lavfi_class,
}
static av_cold int lavfi_read_close(AVFormatContext *avctx)
Definition: lavfi.c:78
static const AVClass lavfi_class
Definition: lavfi.c:419
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static av_cold int lavfi_read_header(AVFormatContext *avctx)
Definition: lavfi.c:92
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
static int lavfi_read_packet(AVFormatContext *avctx, AVPacket *pkt)
Definition: lavfi.c:313
static int flags
Definition: cpu.c:23
#define AVFMT_NOFILE
Demuxer will use avio_open, no opened file should be provided by the caller.
Definition: avformat.h:345

Definition at line 426 of file lavfi.c.

const AVClass lavfi_class
static
Initial value:
= {
.class_name = "lavfi indev",
.item_name = av_default_item_name,
.option = options,
}
av_default_item_name
LIBAVUTIL_VERSION_INT
Definition: eval.c:55
static const AVOption options[]
Definition: lavfi.c:412

Definition at line 419 of file lavfi.c.

const AVOption options[]
static
Initial value:
= {
{ "graph", "set libavfilter graph", OFFSET(graph_str), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ "graph_file","set libavfilter graph filename", OFFSET(graph_filename), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC},
{ "dumpgraph", "dump graph to stderr", OFFSET(dump_graph), AV_OPT_TYPE_STRING, {.str = NULL}, 0, 0, DEC },
{ NULL },
}
#define OFFSET(x)
Definition: lavfi.c:408
NULL
Definition: eval.c:55
#define DEC
Definition: lavfi.c:410

Definition at line 412 of file lavfi.c.