Go to the source code of this file.
|
| enum | DisplayScale {
LINEAR
, SQRT
, CBRT
, LOG
,
RLOG
, NB_SCALES
} |
| |
| enum | AmplitudeScale { ALINEAR
, ALOG
, NB_ASCALES
} |
| |
| enum | SlideMode { REPLACE
, SCROLL
, NB_SLIDES
} |
| |
| enum | DisplayMode { SINGLE
, SEPARATE
, NB_DMODES
} |
| |
| enum | HistogramMode { ABS
, SIGN
, NB_HMODES
} |
| |
◆ OFFSET
◆ FLAGS
◆ DisplayScale
| Enumerator |
|---|
| LINEAR | |
| SQRT | |
| CBRT | |
| LOG | |
| RLOG | |
| NB_SCALES | |
Definition at line 29 of file avf_ahistogram.c.
◆ AmplitudeScale
◆ SlideMode
◆ DisplayMode
◆ HistogramMode
◆ AVFILTER_DEFINE_CLASS()
| AVFILTER_DEFINE_CLASS |
( |
ahistogram | | ) |
|
◆ query_formats()
◆ config_input()
◆ get_lin_bin_abs()
| static int get_lin_bin_abs |
( |
float | in, |
|
|
int | w ) |
|
static |
◆ get_lin_bin_sign()
| static int get_lin_bin_sign |
( |
float | in, |
|
|
int | w ) |
|
static |
◆ get_log_bin_abs()
| static int get_log_bin_abs |
( |
float | in, |
|
|
int | w ) |
|
static |
◆ get_log_bin_sign()
| static int get_log_bin_sign |
( |
float | in, |
|
|
int | w ) |
|
static |
◆ config_output()
◆ filter_frame()
◆ activate()
◆ uninit()
◆ ahistogram_options
Initial value:= {
}
@ AV_OPT_TYPE_IMAGE_SIZE
Underlying C type is two consecutive integers.
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
@ AV_OPT_TYPE_VIDEO_RATE
Underlying C type is AVRational.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
static void scale(int *out, const int *in, const int w, const int h, const int shift)
Definition at line 65 of file avf_ahistogram.c.
◆ ahistogram_inputs
Initial value:= {
{
.name = "default",
},
}
static int config_input(AVFilterLink *inlink)
Definition at line 481 of file avf_ahistogram.c.
◆ ahistogram_outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVBitStreamFilterLink *outlink)
Definition at line 489 of file avf_ahistogram.c.
◆ ff_avf_ahistogram
Initial value:= {
.p.name = "ahistogram",
.p.priv_class = &ahistogram_class,
}
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static const AVFilterPad ahistogram_outputs[]
static const AVFilterPad ahistogram_inputs[]
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_QUERY_FUNC2(func)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition at line 497 of file avf_ahistogram.c.