|
FFmpeg
4.4.6
|
#include "libavutil/opt.h"#include "libavutil/eval.h"#include "libavutil/avassert.h"#include "libavcodec/avfft.h"#include "avfilter.h"#include "internal.h"#include "audio.h"Go to the source code of this file.
Data Structures | |
| struct | GainEntry |
| struct | OverlapIndex |
| struct | FIREqualizerContext |
Macros | |
| #define | RDFT_BITS_MIN 4 |
| #define | RDFT_BITS_MAX 16 |
| #define | NB_GAIN_ENTRY_MAX 4096 |
| #define | OFFSET(x) offsetof(FIREqualizerContext, x) |
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
| #define | TFLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM |
| #define | SELECT_GAIN(s) (s->gain_cmd ? s->gain_cmd : s->gain) |
| #define | SELECT_GAIN_ENTRY(s) (s->gain_entry_cmd ? s->gain_entry_cmd : s->gain_entry) |
Enumerations | |
| enum | WindowFunc { WFUNC_RECTANGULAR , WFUNC_HANN , WFUNC_HAMMING , WFUNC_BLACKMAN , WFUNC_NUTTALL3 , WFUNC_MNUTTALL3 , WFUNC_NUTTALL , WFUNC_BNUTTALL , WFUNC_BHARRIS , WFUNC_TUKEY , NB_WFUNC , WFUNC_RECT , WFUNC_HANNING , WFUNC_HAMMING , WFUNC_BLACKMAN , WFUNC_BARTLETT , WFUNC_WELCH , WFUNC_FLATTOP , WFUNC_BHARRIS , WFUNC_BNUTTALL , WFUNC_SINE , WFUNC_NUTTALL , WFUNC_BHANN , WFUNC_LANCZOS , WFUNC_GAUSS , WFUNC_TUKEY , WFUNC_DOLPH , WFUNC_CAUCHY , WFUNC_PARZEN , WFUNC_POISSON , WFUNC_BOHMAN , NB_WFUNC } |
| enum | Scale { SCALE_LINLIN , SCALE_LINLOG , SCALE_LOGLIN , SCALE_LOGLOG , NB_SCALE } |
| enum | VarOffset { VAR_F , VAR_SR , VAR_CH , VAR_CHID , VAR_CHS , VAR_CHLAYOUT , VAR_NB } |
Variables | |
| static const AVOption | firequalizer_options [] |
| static const char *const | var_names [] |
| static const AVFilterPad | firequalizer_inputs [] |
| static const AVFilterPad | firequalizer_outputs [] |
| AVFilter | ff_af_firequalizer |
| #define RDFT_BITS_MIN 4 |
Definition at line 29 of file af_firequalizer.c.
| #define RDFT_BITS_MAX 16 |
Definition at line 30 of file af_firequalizer.c.
| #define NB_GAIN_ENTRY_MAX 4096 |
Definition at line 54 of file af_firequalizer.c.
| #define OFFSET | ( | x | ) | offsetof(FIREqualizerContext, x) |
Definition at line 113 of file af_firequalizer.c.
| #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 114 of file af_firequalizer.c.
Definition at line 115 of file af_firequalizer.c.
Definition at line 754 of file af_firequalizer.c.
Definition at line 755 of file af_firequalizer.c.
| enum WindowFunc |
Definition at line 32 of file af_firequalizer.c.
| enum Scale |
| Enumerator | |
|---|---|
| SCALE_LINLIN | |
| SCALE_LINLOG | |
| SCALE_LOGLIN | |
| SCALE_LOGLOG | |
| NB_SCALE | |
Definition at line 46 of file af_firequalizer.c.
| enum VarOffset |
| Enumerator | |
|---|---|
| VAR_F | |
| VAR_SR | |
| VAR_CH | |
| VAR_CHID | |
| VAR_CHS | |
| VAR_CHLAYOUT | |
| VAR_NB | |
Definition at line 544 of file af_firequalizer.c.
| AVFILTER_DEFINE_CLASS | ( | firequalizer | ) |
|
static |
Definition at line 150 of file af_firequalizer.c.
Referenced by config_input(), and uninit().
|
static |
Definition at line 173 of file af_firequalizer.c.
|
static |
Definition at line 182 of file af_firequalizer.c.
|
static |
Definition at line 212 of file af_firequalizer.c.
Referenced by filter_frame().
|
static |
Definition at line 250 of file af_firequalizer.c.
Referenced by filter_frame().
|
static |
Definition at line 290 of file af_firequalizer.c.
Referenced by filter_frame().
|
static |
Definition at line 354 of file af_firequalizer.c.
Referenced by generate_kernel().
|
static |
Definition at line 413 of file af_firequalizer.c.
Referenced by generate_kernel().
Definition at line 442 of file af_firequalizer.c.
Referenced by cubic_interpolate_func(), and gain_interpolate_func().
|
static |
Definition at line 454 of file af_firequalizer.c.
Referenced by generate_kernel().
|
static |
Definition at line 489 of file af_firequalizer.c.
Referenced by generate_kernel().
|
static |
Definition at line 554 of file af_firequalizer.c.
Referenced by generate_kernel().
|
static |
Definition at line 602 of file af_firequalizer.c.
Referenced by config_input(), and process_command().
|
static |
Definition at line 757 of file af_firequalizer.c.
|
static |
Definition at line 846 of file af_firequalizer.c.
Referenced by request_frame().
|
static |
Definition at line 882 of file af_firequalizer.c.
|
static |
Definition at line 904 of file af_firequalizer.c.
|
static |
Definition at line 117 of file af_firequalizer.c.
|
static |
Definition at line 534 of file af_firequalizer.c.
Referenced by generate_kernel().
|
static |
Definition at line 953 of file af_firequalizer.c.
|
static |
Definition at line 964 of file af_firequalizer.c.
| AVFilter ff_af_firequalizer |
Definition at line 973 of file af_firequalizer.c.