phaser audio filter
More...
#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
#include "generate_wave_table.h"
|
|
#define | OFFSET(x) offsetof(AudioPhaserContext, x) |
| |
|
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
| |
|
#define | MOD(a, b) (((a) >= (b)) ? (a) - (b) : (a)) |
| |
|
#define | PHASER_PLANAR(name, type) |
| |
|
#define | PHASER(name, type) |
| |
|
|
| AVFILTER_DEFINE_CLASS (aphaser) |
| |
§ ff_af_aphaser
Initial value:= {
.name = "aphaser",
.query_formats = query_formats,
.init = init,
.uninit = uninit,
.inputs = aphaser_inputs,
.outputs = aphaser_outputs,
.priv_class = &aphaser_class,
}
Definition: af_aphaser.c:33
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186