FFmpeg
Data Structures | Functions | Variables
vf_vfrdet.c File Reference
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  VFRDETContext
 

Functions

static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVFilterPad vfrdet_inputs []
 
static const AVFilterPad vfrdet_outputs []
 
const AVFilter ff_vf_vfrdet
 

Function Documentation

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 38 of file vf_vfrdet.c.

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 68 of file vf_vfrdet.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 80 of file vf_vfrdet.c.

Variable Documentation

◆ vfrdet_inputs

const AVFilterPad vfrdet_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
}

Definition at line 90 of file vf_vfrdet.c.

◆ vfrdet_outputs

const AVFilterPad vfrdet_outputs[]
static
Initial value:
= {
{
.name = "default",
},
}

Definition at line 98 of file vf_vfrdet.c.

◆ ff_vf_vfrdet

const AVFilter ff_vf_vfrdet
Initial value:
= {
.name = "vfrdet",
.description = NULL_IF_CONFIG_SMALL("Variable frame rate detect filter."),
.priv_size = sizeof(VFRDETContext),
.init = init,
}

Definition at line 105 of file vf_vfrdet.c.

VFRDETContext
Definition: vf_vfrdet.c:25
vfrdet_outputs
static const AVFilterPad vfrdet_outputs[]
Definition: vf_vfrdet.c:98
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_vfrdet.c:80
vfrdet_inputs
static const AVFilterPad vfrdet_inputs[]
Definition: vf_vfrdet.c:90
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_vfrdet.c:38
AVFILTER_FLAG_METADATA_ONLY
#define AVFILTER_FLAG_METADATA_ONLY
The filter is a "metadata" filter - it does not modify the frame data in any way.
Definition: avfilter.h:137
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_vfrdet.c:68