Go to the source code of this file.
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
| AVFILTER_DEFINE_CLASS |
( |
detelecine | | ) |
|
◆ init()
◆ query_formats()
◆ config_input()
◆ config_output()
◆ filter_frame()
◆ uninit()
◆ detelecine_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},
{
"start_frame",
"position of first frame with respect to the pattern if stream is cut",
OFFSET(start_frame),
AV_OPT_TYPE_INT, {.i64=0}, 0, 13,
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 60 of file vf_detelecine.c.
◆ detelecine_inputs
Initial value:= {
{
.name = "default",
},
}
static int config_input(AVFilterLink *inlink)
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
Definition at line 357 of file vf_detelecine.c.
◆ detelecine_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVBitStreamFilterLink *outlink)
Definition at line 366 of file vf_detelecine.c.
◆ ff_vf_detelecine
Initial value:= {
.p.name = "detelecine",
.p.priv_class = &detelecine_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 detelecine_outputs[]
static const AVFilterPad detelecine_inputs[]
Definition at line 374 of file vf_detelecine.c.