Go to the source code of this file.
|
enum | FilterType {
BUTTERWORTH,
CHEBYSHEV1,
CHEBYSHEV2,
NB_TYPES,
biquad,
equalizer,
bass,
treble,
bandpass,
bandreject,
allpass,
highpass,
lowpass,
LOWPASS,
FLAT,
AFLAT,
CHROMA,
COLOR,
ACOLOR,
XFLAT,
NB_FILTERS
} |
|
enum | WidthType {
NONE,
HERTZ,
OCTAVE,
QFACTOR,
SLOPE,
KHERTZ,
NB_WTYPE
} |
|
◆ BIQUAD_FILTER
#define BIQUAD_FILTER |
( |
|
name, |
|
|
|
type, |
|
|
|
min, |
|
|
|
max, |
|
|
|
need_clipping |
|
) |
| |
◆ OFFSET
◆ FLAGS
◆ DEFINE_BIQUAD_FILTER
#define DEFINE_BIQUAD_FILTER |
( |
|
name_, |
|
|
|
description_ |
|
) |
| |
Value:{ \
BiquadsContext *
s =
ctx->priv; \
s->class = &name_##_class; \
s->filter_type = name_; \
} \
\
AVFilter ff_af_##name_ = { \
.name = #name_, \
.priv_class = &name_##_class, \
}
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static av_cold int init(AVFilterContext *ctx)
#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 av_cold void uninit(AVFilterContext *ctx)
#define AVFILTER_DEFINE_CLASS(fname)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition at line 593 of file af_biquads.c.
◆ FilterType
Enumerator |
---|
BUTTERWORTH | |
CHEBYSHEV1 | |
CHEBYSHEV2 | |
NB_TYPES | |
biquad | |
equalizer | |
bass | |
treble | |
bandpass | |
bandreject | |
allpass | |
highpass | |
lowpass | |
LOWPASS | |
FLAT | |
AFLAT | |
CHROMA | |
COLOR | |
ACOLOR | |
XFLAT | |
NB_FILTERS | |
Definition at line 71 of file af_biquads.c.
◆ WidthType
Enumerator |
---|
NONE | |
HERTZ | |
OCTAVE | |
QFACTOR | |
SLOPE | |
KHERTZ | |
NB_WTYPE | |
Definition at line 83 of file af_biquads.c.
◆ init()
◆ query_formats()
◆ config_filter()
◆ config_output()
◆ filter_frame()
◆ process_command()
static int process_command |
( |
AVFilterContext * |
ctx, |
|
|
const char * |
cmd, |
|
|
const char * |
args, |
|
|
char * |
res, |
|
|
int |
res_len, |
|
|
int |
flags |
|
) |
| |
|
static |
◆ uninit()
◆ inputs
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
Definition at line 572 of file af_biquads.c.
◆ outputs
Initial value:= {
{
.name = "default",
},
}
static int config_output(AVFilterLink *outlink)
Definition at line 581 of file af_biquads.c.