FFmpeg
Data Structures | Macros | Functions | Variables
vf_fieldhint.c File Reference
#include "libavutil/avassert.h"
#include "libavutil/imgutils.h"
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "libavutil/pixdesc.h"
#include "avfilter.h"
#include "internal.h"
#include "video.h"

Go to the source code of this file.

Data Structures

struct  FieldHintContext
 

Macros

#define OFFSET(x)   offsetof(FieldHintContext, x)
 
#define FLAGS   AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (fieldhint)
 
static av_cold int init (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static int config_input (AVFilterLink *inlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static int request_frame (AVFilterLink *outlink)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption fieldhint_options []
 
static const AVFilterPad inputs []
 
static const AVFilterPad outputs []
 
const AVFilter ff_vf_fieldhint
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 46 of file vf_fieldhint.c.

◆ FLAGS

Definition at line 47 of file vf_fieldhint.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( fieldhint  )

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 59 of file vf_fieldhint.c.

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 78 of file vf_fieldhint.c.

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 87 of file vf_fieldhint.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 104 of file vf_fieldhint.c.

Referenced by request_frame().

◆ request_frame()

static int request_frame ( AVFilterLink outlink)
static

Definition at line 241 of file vf_fieldhint.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 262 of file vf_fieldhint.c.

Variable Documentation

◆ fieldhint_options

const AVOption fieldhint_options[]
static
Initial value:
= {
{ "hint", "set hint file", OFFSET(hint_file_str), AV_OPT_TYPE_STRING, {.str=NULL}, 0, 0, FLAGS },
{ "mode", "set hint mode", OFFSET(mode), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS, "mode" },
{ "absolute", 0, 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "mode" },
{ "relative", 0, 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "mode" },
{ NULL }
}

Definition at line 49 of file vf_fieldhint.c.

◆ inputs

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

Definition at line 275 of file vf_fieldhint.c.

◆ outputs

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

Definition at line 284 of file vf_fieldhint.c.

◆ ff_vf_fieldhint

const AVFilter ff_vf_fieldhint
Initial value:
= {
.name = "fieldhint",
.description = NULL_IF_CONFIG_SMALL("Field matching using hints."),
.priv_size = sizeof(FieldHintContext),
.priv_class = &fieldhint_class,
.init = init,
}

Definition at line 292 of file vf_fieldhint.c.

FieldHintContext
Definition: vf_fieldhint.c:30
inputs
static const AVFilterPad inputs[]
Definition: vf_fieldhint.c:275
FLAGS
#define FLAGS
Definition: vf_fieldhint.c:47
FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:168
init
static av_cold int init(AVFilterContext *ctx)
Definition: vf_fieldhint.c:59
OFFSET
#define OFFSET(x)
Definition: vf_fieldhint.c:46
request_frame
static int request_frame(AVFilterLink *outlink)
Definition: vf_fieldhint.c:241
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: vf_fieldhint.c:78
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
NULL
#define NULL
Definition: coverity.c:32
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
config_input
static int config_input(AVFilterLink *inlink)
Definition: vf_fieldhint.c:87
mode
mode
Definition: ebur128.h:83
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
outputs
static const AVFilterPad outputs[]
Definition: vf_fieldhint.c:284
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: vf_fieldhint.c:104
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: vf_fieldhint.c:262
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:228
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:233