#include "audio.h"
#include "avfilter.h"
#include "internal.h"
Go to the source code of this file.
Value:static void aderivative_##
name ##p(
void **d,
void **p,
const void **
s, \
for (n = 0; n < nb_samples; n++) { \
const
type current = src[
n]; \
\
dst[
n] = current - prv[0]; \
prv[0] = current; \
} \
} \
}
Definition at line 65 of file af_aderivative.c.
Value:static void aintegral_##
name ##p(
void **d,
void **p,
const void **
s, \
for (n = 0; n < nb_samples; n++) { \
const
type current = src[
n]; \
\
dst[
n] = current + prv[0]; \
} \
} \
}
Definition at line 90 of file af_aderivative.c.
Initial value:= {
{
.name = "default",
},
}
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static int config_input(AVFilterLink *inlink)
Definition at line 171 of file af_aderivative.c.
Initial value:= {
.name = "aderivative",
}
static const AVFilterPad aderivative_outputs[]
static const AVFilterPad aderivative_inputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static av_cold void uninit(AVFilterContext *ctx)
static int query_formats(AVFilterContext *ctx)
Definition at line 189 of file af_aderivative.c.
Initial value:= {
.name = "aintegral",
}
static const AVFilterPad aderivative_outputs[]
static const AVFilterPad aderivative_inputs[]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const AVFilterPad inputs[]
static const AVFilterPad outputs[]
static av_cold void uninit(AVFilterContext *ctx)
static int query_formats(AVFilterContext *ctx)
Definition at line 199 of file af_aderivative.c.