Go to the source code of this file.
|
| | AVFILTER_DEFINE_CLASS (deflicker) |
| |
| static int | query_formats (AVFilterContext *ctx) |
| |
| static int | deflicker8 (AVFilterContext *ctx, const uint8_t *src, ptrdiff_t src_linesize, uint8_t *dst, ptrdiff_t dst_linesize, int w, int h, float f) |
| |
| static int | deflicker16 (AVFilterContext *ctx, const uint8_t *ssrc, ptrdiff_t src_linesize, uint8_t *ddst, ptrdiff_t dst_linesize, int w, int h, float f) |
| |
| static float | calc_avgy8 (AVFilterContext *ctx, AVFrame *in) |
| |
| static float | calc_avgy16 (AVFilterContext *ctx, AVFrame *in) |
| |
| static void | get_am_factor (AVFilterContext *ctx, float *f) |
| |
| static void | get_gm_factor (AVFilterContext *ctx, float *f) |
| |
| static void | get_hm_factor (AVFilterContext *ctx, float *f) |
| |
| static void | get_qm_factor (AVFilterContext *ctx, float *f) |
| |
| static void | get_cm_factor (AVFilterContext *ctx, float *f) |
| |
| static void | get_pm_factor (AVFilterContext *ctx, float *f) |
| |
| static int | comparef (const void *a, const void *b) |
| |
| static void | get_median_factor (AVFilterContext *ctx, float *f) |
| |
| static int | config_input (AVFilterLink *inlink) |
| |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *buf) |
| |
| static int | request_frame (AVFilterLink *outlink) |
| |
| static av_cold void | uninit (AVFilterContext *ctx) |
| |
| #define FF_BUFQUEUE_SIZE 129 |
| Enumerator |
|---|
| ARITHMETIC_MEAN |
|
| GEOMETRIC_MEAN |
|
| HARMONIC_MEAN |
|
| QUADRATIC_MEAN |
|
| CUBIC_MEAN |
|
| POWER_MEAN |
|
| MEDIAN |
|
| NB_SMOOTH_MODE |
|
Definition at line 36 of file vf_deflicker.c.
| AVFILTER_DEFINE_CLASS |
( |
deflicker |
| ) |
|
Initial value:= {
}
mode
Use these values in ebur128_init (or'ed).
Definition at line 76 of file vf_deflicker.c.
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
static int config_input(AVFilterLink *inlink)
Definition at line 443 of file vf_deflicker.c.
Initial value:= {
{
.name = "default",
},
}
static int request_frame(AVFilterLink *outlink)
Definition at line 453 of file vf_deflicker.c.
Initial value:= {
.name = "deflicker",
.priv_class = &deflicker_class,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static av_cold void uninit(AVFilterContext *ctx)
static const AVFilterPad outputs[]
static int query_formats(AVFilterContext *ctx)
static const AVFilterPad inputs[]
Definition at line 462 of file vf_deflicker.c.