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 []
 
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,
},
{ NULL }
}

Definition at line 90 of file vf_vfrdet.c.

◆ vfrdet_outputs

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

Definition at line 99 of file vf_vfrdet.c.

◆ ff_vf_vfrdet

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 107 of file vf_vfrdet.c.

VFRDETContext
Definition: vf_vfrdet.c:25
outputs
static const AVFilterPad outputs[]
Definition: af_acontrast.c:203
vfrdet_outputs
static const AVFilterPad vfrdet_outputs[]
Definition: vf_vfrdet.c:99
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_vfrdet.c:80
NULL
#define NULL
Definition: coverity.c:32
vfrdet_inputs
static const AVFilterPad vfrdet_inputs[]
Definition: vf_vfrdet.c:90
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
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
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_vfrdet.c:68