FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/channel_layout.h"
#include "libavutil/ffmath.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 |
struct | ThreadData |
Used for passing data between threads. More... | |
Macros | |
#define | BIQUAD_FILTER(name, type, min, max, need_clipping) |
#define | BIQUAD_DII_FILTER(name, type, min, max, need_clipping) |
#define | BIQUAD_TDII_FILTER(name, type, min, max, need_clipping) |
#define | BIQUAD_LATT_FILTER(name, type, min, max, need_clipping) |
#define | BIQUAD_SVF_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|AV_OPT_FLAG_RUNTIME_PARAM |
#define | AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
#define | DEFINE_BIQUAD_FILTER_2(name_, description_, priv_class_) |
#define | DEFINE_BIQUAD_FILTER(name, description) |
Enumerations | |
enum | FilterType { DC_TYPE, AC_TYPE, SQ_TYPE, PS_TYPE, NB_TYPES, 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, YFLAT, NB_FILTERS } |
enum | WidthType { NONE, HERTZ, OCTAVE, QFACTOR, SLOPE, KHERTZ, NB_WTYPE } |
enum | TransformType { PREDICTOR_TRANSFORM = 0, COLOR_TRANSFORM = 1, SUBTRACT_GREEN = 2, COLOR_INDEXING_TRANSFORM = 3, DI, DII, TDII, LATT, SVF, NB_TTYPE } |
Functions | |
static int | query_formats (AVFilterContext *ctx) |
static void | convert_dir2latt (BiquadsContext *s) |
static void | convert_dir2svf (BiquadsContext *s) |
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) |
Variables | |
static const AVFilterPad | inputs [] |
static const AVFilterPad | outputs [] |
Definition at line 190 of file af_biquads.c.
Definition at line 273 of file af_biquads.c.
Definition at line 321 of file af_biquads.c.
Definition at line 368 of file af_biquads.c.
Definition at line 423 of file af_biquads.c.
#define OFFSET | ( | x | ) | offsetof(BiquadsContext, x) |
Definition at line 938 of file af_biquads.c.
Definition at line 939 of file af_biquads.c.
Definition at line 940 of file af_biquads.c.
#define DEFINE_BIQUAD_FILTER_2 | ( | name_, | |
description_, | |||
priv_class_ | |||
) |
Definition at line 942 of file af_biquads.c.
#define DEFINE_BIQUAD_FILTER | ( | name, | |
description | |||
) |
Definition at line 964 of file af_biquads.c.
enum FilterType |
Definition at line 73 of file af_biquads.c.
enum WidthType |
Enumerator | |
---|---|
NONE | |
HERTZ | |
OCTAVE | |
QFACTOR | |
SLOPE | |
KHERTZ | |
NB_WTYPE |
Definition at line 87 of file af_biquads.c.
enum TransformType |
Enumerator | |
---|---|
PREDICTOR_TRANSFORM | |
COLOR_TRANSFORM | |
SUBTRACT_GREEN | |
COLOR_INDEXING_TRANSFORM | |
DI | |
DII | |
TDII | |
LATT | |
SVF | |
NB_TTYPE |
Definition at line 97 of file af_biquads.c.
|
static |
Definition at line 147 of file af_biquads.c.
|
static |
Definition at line 471 of file af_biquads.c.
Referenced by config_filter().
|
static |
Definition at line 488 of file af_biquads.c.
Referenced by config_filter().
|
static |
Definition at line 506 of file af_biquads.c.
Referenced by config_output(), and process_command().
|
static |
Definition at line 825 of file af_biquads.c.
|
static |
Definition at line 834 of file af_biquads.c.
Referenced by filter_frame().
|
static |
Definition at line 861 of file af_biquads.c.
|
static |
Definition at line 902 of file af_biquads.c.
|
static |
Definition at line 915 of file af_biquads.c.
|
static |
Definition at line 922 of file af_biquads.c.
|
static |
Definition at line 930 of file af_biquads.c.