Go to the source code of this file.
|
enum | FilterType {
BUTTERWORTH,
CHEBYSHEV1,
CHEBYSHEV2,
NB_TYPES,
biquad,
equalizer,
bass,
treble,
bandpass,
bandreject,
allpass,
highpass,
lowpass,
lowshelf,
highshelf,
WEAK,
STRONG,
NB_FILTER,
LOWPASS,
FLAT,
AFLAT,
CHROMA,
COLOR,
ACOLOR,
XFLAT,
NB_FILTERS
} |
|
enum | WidthType {
NONE,
HERTZ,
OCTAVE,
QFACTOR,
SLOPE,
KHERTZ,
NB_WTYPE
} |
|
|
static av_cold int | init (AVFilterContext *ctx) |
|
static int | query_formats (AVFilterContext *ctx) |
|
static int | config_filter (AVFilterLink *outlink, int reset) |
|
static int | config_output (AVFilterLink *outlink) |
|
static int | filter_channel (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *buf) |
|
static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
◆ BIQUAD_FILTER
◆ 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, \
}
Definition at line 659 of file af_biquads.c.
◆ FilterType
Enumerator |
---|
BUTTERWORTH | |
CHEBYSHEV1 | |
CHEBYSHEV2 | |
NB_TYPES | |
biquad | |
equalizer | |
bass | |
treble | |
bandpass | |
bandreject | |
allpass | |
highpass | |
lowpass | |
lowshelf | |
highshelf | |
WEAK | |
STRONG | |
NB_FILTER | |
LOWPASS | |
FLAT | |
AFLAT | |
CHROMA | |
COLOR | |
ACOLOR | |
XFLAT | |
NB_FILTERS | |
Definition at line 72 of file af_biquads.c.
◆ WidthType
Enumerator |
---|
NONE | |
HERTZ | |
OCTAVE | |
QFACTOR | |
SLOPE | |
KHERTZ | |
NB_WTYPE | |
Definition at line 86 of file af_biquads.c.
◆ init()
◆ query_formats()
◆ config_filter()
◆ config_output()
◆ filter_channel()
◆ 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",
},
}
Definition at line 638 of file af_biquads.c.
◆ outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 647 of file af_biquads.c.
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)