FFmpeg
|
#include "libavutil/channel_layout.h"
#include "libavutil/ffmath.h"
#include "libavutil/lfg.h"
#include "libavutil/mem.h"
#include "libavutil/random_seed.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "audio.h"
#include "filters.h"
Go to the source code of this file.
Data Structures | |
struct | APContext |
struct | ADecorrelateContext |
struct | ThreadData |
Used for passing data between threads. More... | |
Macros | |
#define | MAX_STAGES 16 |
#define | FILTER_FC 1100.0 |
#define | RT60_LF 0.1 |
#define | RT60_HF 0.008 |
#define | OFFSET(x) offsetof(ADecorrelateContext, x) |
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
static int | ap_init (APContext *ap, int fs, double delay) |
static void | ap_free (APContext *ap) |
static double | ap_run (APContext *ap, double x) |
static void | filter_channel_dbl (AVFilterContext *ctx, int ch, AVFrame *in, AVFrame *out) |
static int | config_input (AVFilterLink *inlink) |
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) |
AVFILTER_DEFINE_CLASS (adecorrelate) | |
Variables | |
static const AVOption | adecorrelate_options [] |
static const AVFilterPad | inputs [] |
const AVFilter | ff_af_adecorrelate |
#define MAX_STAGES 16 |
Definition at line 32 of file af_adecorrelate.c.
#define FILTER_FC 1100.0 |
Definition at line 33 of file af_adecorrelate.c.
#define RT60_LF 0.1 |
Definition at line 34 of file af_adecorrelate.c.
#define RT60_HF 0.008 |
Definition at line 35 of file af_adecorrelate.c.
#define OFFSET | ( | x | ) | offsetof(ADecorrelateContext, x) |
Definition at line 214 of file af_adecorrelate.c.
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 215 of file af_adecorrelate.c.
Definition at line 59 of file af_adecorrelate.c.
Referenced by config_input().
|
static |
Definition at line 86 of file af_adecorrelate.c.
Referenced by uninit().
Definition at line 92 of file af_adecorrelate.c.
Referenced by filter_channel_dbl().
|
static |
Definition at line 105 of file af_adecorrelate.c.
Referenced by config_input().
|
static |
Definition at line 125 of file af_adecorrelate.c.
|
static |
Definition at line 158 of file af_adecorrelate.c.
Referenced by filter_frame().
|
static |
Definition at line 173 of file af_adecorrelate.c.
|
static |
Definition at line 200 of file af_adecorrelate.c.
AVFILTER_DEFINE_CLASS | ( | adecorrelate | ) |
|
static |
Definition at line 217 of file af_adecorrelate.c.
|
static |
Definition at line 225 of file af_adecorrelate.c.
const AVFilter ff_af_adecorrelate |
Definition at line 234 of file af_adecorrelate.c.