audio compand filter
More...
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/ffmath.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
|
|
#define | OFFSET(x) offsetof(CompandContext, x) |
| |
|
#define | A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
| |
|
#define | MOD(a, b) (((a) >= (b)) ? (a) - (b) : (a)) |
| |
|
#define | S(x) s->segments[2 * ((x) + 1)] |
| |
|
#define | S(x) s->segments[2 * (x)] |
| |
|
#define | L(x) s->segments[i - (x)] |
| |
|
|
| AVFILTER_DEFINE_CLASS (compand) |
| |
§ ff_af_compand
Initial value:= {
.name = "compand",
"Compress or expand audio dynamic range."),
.query_formats = query_formats,
.priv_class = &compand_class,
.init = init,
.uninit = uninit,
.inputs = compand_inputs,
.outputs = compand_outputs,
}
Definition: af_compand.c:50
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186