Go to the source code of this file.
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | process_frame (FFFrameSync *fs) |
|
static int | passed (HysteresisContext *s, int x, int y, int w) |
|
static void | push (HysteresisContext *s, int x, int y, int w) |
|
static void | pop (HysteresisContext *s, int *x, int *y) |
|
static int | is_empty (HysteresisContext *s) |
|
static void | hysteresis8 (HysteresisContext *s, const uint8_t *bsrc, const uint8_t *asrc, uint8_t *dst, ptrdiff_t blinesize, ptrdiff_t alinesize, ptrdiff_t dlinesize, int w, int h) |
|
static void | hysteresis16 (HysteresisContext *s, const uint8_t *bbsrc, const uint8_t *aasrc, uint8_t *ddst, ptrdiff_t blinesize, ptrdiff_t alinesize, ptrdiff_t dlinesize, int w, int h) |
|
static int | config_input (AVFilterLink *inlink) |
|
static int | config_output (AVFilterLink *outlink) |
|
static int | activate (AVFilterContext *ctx) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
| FRAMESYNC_DEFINE_CLASS (hysteresis, HysteresisContext, fs) |
|
◆ OFFSET
◆ FLAGS
◆ query_formats()
◆ process_frame()
◆ passed()
◆ push()
◆ pop()
◆ is_empty()
◆ hysteresis8()
◆ hysteresis16()
◆ config_input()
◆ config_output()
◆ activate()
◆ uninit()
◆ FRAMESYNC_DEFINE_CLASS()
◆ hysteresis_options
◆ hysteresis_inputs
Initial value:= {
{
.name = "base",
},
{
.name = "alt",
},
}
Definition at line 355 of file vf_hysteresis.c.
◆ hysteresis_outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 368 of file vf_hysteresis.c.
◆ ff_vf_hysteresis
Initial value:= {
.name = "hysteresis",
.description =
NULL_IF_CONFIG_SMALL(
"Grow first stream into second stream by connecting components."),
.preinit = hysteresis_framesync_preinit,
.priv_class = &hysteresis_class,
}
Definition at line 377 of file vf_hysteresis.c.