Go to the source code of this file.
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
| AVFILTER_DEFINE_CLASS |
( |
telecine | | ) |
|
◆ init()
◆ query_formats()
◆ config_input()
◆ config_output()
◆ filter_frame()
◆ uninit()
◆ telecine_options
Initial value:= {
{
"pattern",
"pattern that describe for how many fields a frame is to be displayed",
OFFSET(pattern),
AV_OPT_TYPE_STRING, {.str=
"23"}, 0, 0,
FLAGS},
}
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
static int first_field(const struct video_data *s)
Definition at line 59 of file vf_telecine.c.
◆ telecine_inputs
Initial value:= {
{
.name = "default",
},
}
static int config_input(AVFilterLink *inlink)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition at line 288 of file vf_telecine.c.
◆ telecine_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVBitStreamFilterLink *outlink)
Definition at line 297 of file vf_telecine.c.
◆ ff_vf_telecine
Initial value:= {
.p.name = "telecine",
.p.priv_class = &telecine_class,
}
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
int(* init)(AVBSFContext *ctx)
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_QUERY_FUNC2(func)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static const AVFilterPad telecine_inputs[]
static const AVFilterPad telecine_outputs[]
Definition at line 305 of file vf_telecine.c.