Go to the source code of this file.
|
| AVFILTER_DEFINE_CLASS (limiter) |
|
static av_cold int | init (AVFilterContext *ctx) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static void | limiter8 (const uint8_t *src, uint8_t *dst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int min, int max) |
|
static void | limiter16 (const uint8_t *ssrc, uint8_t *ddst, ptrdiff_t slinesize, ptrdiff_t dlinesize, int w, int h, int min, int max) |
|
static int | config_props (AVFilterLink *inlink) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
|
AVFILTER_DEFINE_CLASS |
( |
limiter |
| ) |
|
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int config_props(AVFilterLink *inlink)
Definition at line 203 of file vf_limiter.c.
Initial value:= {
{
.name = "default",
},
}
Definition at line 213 of file vf_limiter.c.
Initial value:= {
.name = "limiter",
.priv_class = &limiter_class,
}
static av_cold int init(AVFilterContext *ctx)
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int query_formats(AVFilterContext *ctx)
Definition at line 221 of file vf_limiter.c.