Go to the source code of this file.
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
◆ normalize()
◆ query_formats()
◆ config_input()
◆ uninit()
◆ filter_frame()
◆ normalize_options
Initial value:= {
{
"blackpt",
"output color to which darkest input color is mapped",
OFFSET(blackpt),
AV_OPT_TYPE_COLOR, { .str =
"black" }, CHAR_MIN, CHAR_MAX,
FLAGS },
{
"whitept",
"output color to which brightest input color is mapped",
OFFSET(whitept),
AV_OPT_TYPE_COLOR, { .str =
"white" }, CHAR_MIN, CHAR_MAX,
FLAGS },
{
"smoothing",
"amount of temporal smoothing of the input range, to reduce flicker",
OFFSET(smoothing),
AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX/8,
FLAGS },
{
"independence",
"proportion of independent to linked channel normalization",
OFFSET(independence),
AV_OPT_TYPE_FLOAT, {.dbl=1.0}, 0.0, 1.0,
FLAGS },
{
"strength",
"strength of filter, from no effect to full normalization",
OFFSET(strength),
AV_OPT_TYPE_FLOAT, {.dbl=1.0}, 0.0, 1.0,
FLAGS },
}
Definition at line 112 of file vf_normalize.c.
◆ inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 361 of file vf_normalize.c.
◆ outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 371 of file vf_normalize.c.
◆ ff_vf_normalize
Initial value:= {
.name = "normalize",
.priv_class = &normalize_class,
}
Definition at line 379 of file vf_normalize.c.