Go to the source code of this file.
 | 
|   | AVFILTER_DEFINE_CLASS (normalize) | 
|   | 
| static void  | find_min_max (NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) | 
|   | 
| static void  | process (NormalizeContext *s, AVFrame *in, AVFrame *out) | 
|   | 
| static void  | find_min_max_planar (NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) | 
|   | 
| static void  | process_planar (NormalizeContext *s, AVFrame *in, AVFrame *out) | 
|   | 
| static void  | find_min_max_16 (NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) | 
|   | 
| static void  | process_16 (NormalizeContext *s, AVFrame *in, AVFrame *out) | 
|   | 
| static void  | find_min_max_planar_16 (NormalizeContext *s, AVFrame *in, NormalizeLocal min[3], NormalizeLocal max[3]) | 
|   | 
| static void  | process_planar_16 (NormalizeContext *s, AVFrame *in, AVFrame *out) | 
|   | 
| static void  | normalize (NormalizeContext *s, AVFrame *in, AVFrame *out) | 
|   | 
| static int  | query_formats (AVFilterContext *ctx) | 
|   | 
| static int  | config_input (AVFilterLink *inlink) | 
|   | 
| static av_cold void  | uninit (AVFilterContext *ctx) | 
|   | 
| static int  | filter_frame (AVFilterLink *inlink, AVFrame *in) | 
|   | 
◆ OFFSET
◆ FLAGS
◆ FLAGSR
◆ AVFILTER_DEFINE_CLASS()
◆ find_min_max()
◆ process()
◆ find_min_max_planar()
◆ process_planar()
◆ find_min_max_16()
◆ process_16()
◆ find_min_max_planar_16()
◆ process_planar_16()
◆ normalize()
◆ query_formats()
◆ config_input()
◆ uninit()
◆ filter_frame()
◆ normalize_options
Initial value:= {
    { 
"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, 
FLAGSR },
 
}
 
Definition at line 129 of file vf_normalize.c.
 
 
◆ inputs
Initial value:= {
    {
        .name         = "default",
    },
}
 
Definition at line 515 of file vf_normalize.c.
 
 
◆ outputs
Initial value:= {
    {
        .name = "default",
    },
}
 
Definition at line 525 of file vf_normalize.c.
 
 
◆ ff_vf_normalize
Initial value:= {
    .name          = "normalize",
    .priv_class    = &normalize_class,
}
 
Definition at line 533 of file vf_normalize.c.
 
 
 
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.