| FFmpeg
    | 
#include "libavutil/avassert.h"#include "libavutil/opt.h"#include "audio.h"#include "avfilter.h"#include "internal.h"Go to the source code of this file.
| Data Structures | |
| struct | ChanCache | 
| struct | BiquadsContext | 
| Macros | |
| #define | BIQUAD_FILTER(name, type, min, max, need_clipping) | 
| #define | OFFSET(x) offsetof(BiquadsContext, x) | 
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
| #define | DEFINE_BIQUAD_FILTER(name_, description_) | 
| Enumerations | |
| enum | FilterType { biquad, equalizer, bass, treble, band, bandpass, bandreject, allpass, highpass, lowpass } | 
| enum | WidthType { NONE, HERTZ, OCTAVE, QFACTOR, SLOPE } | 
| Functions | |
| static av_cold int | init (AVFilterContext *ctx) | 
| static int | query_formats (AVFilterContext *ctx) | 
| static int | config_output (AVFilterLink *outlink) | 
| static int | filter_frame (AVFilterLink *inlink, AVFrame *buf) | 
| static av_cold void | uninit (AVFilterContext *ctx) | 
| Variables | |
| static const AVFilterPad | inputs [] | 
| static const AVFilterPad | outputs [] | 
Definition at line 164 of file af_biquads.c.
| #define OFFSET | ( | x | ) | offsetof(BiquadsContext, x) | 
Definition at line 444 of file af_biquads.c.
| #define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM | 
Definition at line 445 of file af_biquads.c.
| #define DEFINE_BIQUAD_FILTER | ( | name_, | |
| description_ | |||
| ) | 
Definition at line 447 of file af_biquads.c.
| enum FilterType | 
Definition at line 71 of file af_biquads.c.
| enum WidthType | 
Definition at line 84 of file af_biquads.c.
| 
 | static | 
Definition at line 119 of file af_biquads.c.
| 
 | static | 
Definition at line 134 of file af_biquads.c.
| 
 | static | 
Definition at line 233 of file af_biquads.c.
| 
 | static | 
Definition at line 389 of file af_biquads.c.
| 
 | static | 
Definition at line 419 of file af_biquads.c.
| 
 | static | 
Definition at line 426 of file af_biquads.c.
| 
 | static | 
Definition at line 435 of file af_biquads.c.
 1.8.2
 1.8.2