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
Initial value:= {
}
static const struct @272 planes[]
Definition at line 55 of file vf_hysteresis.c.
◆ hysteresis_inputs
Initial value:= {
{
.name = "base",
},
{
.name = "alt",
},
}
static int config_input(AVFilterLink *inlink)
Definition at line 353 of file vf_hysteresis.c.
◆ hysteresis_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVFilterLink *outlink)
Definition at line 366 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,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int query_formats(AVFilterContext *ctx)
static int activate(AVFilterContext *ctx)
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
static av_cold void uninit(AVFilterContext *ctx)
static const AVFilterPad hysteresis_outputs[]
static const AVFilterPad hysteresis_inputs[]
Definition at line 375 of file vf_hysteresis.c.