|
FFmpeg
|
#include "libavutil/attributes.h"#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/eval.h"#include "libavutil/internal.h"#include "libavutil/opt.h"#include "audio.h"#include "avfilter.h"#include "formats.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | BiquadContext |
| struct | CrossoverChannel |
| struct | AudioCrossoverContext |
Macros | |
| #define | MAX_SPLITS 16 |
| #define | MAX_BANDS MAX_SPLITS + 1 |
| #define | OFFSET(x) offsetof(AudioCrossoverContext, x) |
| #define | AF AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (acrossover) | |
| static av_cold int | init (AVFilterContext *ctx) |
| static void | set_lp (BiquadContext *b, double fc, double q, double sr) |
| static void | set_hp (BiquadContext *b, double fc, double q, double sr) |
| static int | config_input (AVFilterLink *inlink) |
| static int | query_formats (AVFilterContext *ctx) |
| static double | biquad_process (BiquadContext *b, double in) |
| static int | filter_channels (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
| static const AVOption | acrossover_options [] |
| static const AVFilterPad | inputs [] |
| AVFilter | ff_af_acrossover |
| #define MAX_SPLITS 16 |
Definition at line 38 of file af_acrossover.c.
| #define MAX_BANDS MAX_SPLITS + 1 |
Definition at line 39 of file af_acrossover.c.
| #define OFFSET | ( | x | ) | offsetof(AudioCrossoverContext, x) |
Definition at line 69 of file af_acrossover.c.
| #define AF AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 70 of file af_acrossover.c.
| AVFILTER_DEFINE_CLASS | ( | acrossover | ) |
|
static |
Definition at line 83 of file af_acrossover.c.
|
static |
Definition at line 140 of file af_acrossover.c.
Referenced by config_input().
|
static |
Definition at line 155 of file af_acrossover.c.
Referenced by config_input().
|
static |
Definition at line 170 of file af_acrossover.c.
|
static |
Definition at line 218 of file af_acrossover.c.
|
static |
Definition at line 248 of file af_acrossover.c.
Referenced by filter_channels().
|
static |
Definition at line 260 of file af_acrossover.c.
Referenced by filter_frame().
|
static |
Definition at line 301 of file af_acrossover.c.
|
static |
Definition at line 342 of file af_acrossover.c.
|
static |
Definition at line 72 of file af_acrossover.c.
|
static |
Definition at line 354 of file af_acrossover.c.
| AVFilter ff_af_acrossover |
Definition at line 364 of file af_acrossover.c.
1.8.17