Go to the documentation of this file.
62 #define OFFSET(x) offsetof(AudioNLMSContext, x)
63 #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
64 #define AT AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
101 const int order =
s->order;
106 memcpy(
tmp, coeffs + order - *
offset, order *
sizeof(
float));
108 output =
s->fdsp->scalarproduct_float(delay,
tmp,
s->kernel_size);
117 float *delay,
float *coeffs,
float *
tmp,
int *offsetp)
119 const int order =
s->order;
120 const float leakage =
s->leakage;
121 const float mu =
s->mu;
122 const float a = 1.f - leakage * mu;
131 sum =
s->fdsp->scalarproduct_float(delay, delay,
s->kernel_size);
138 memcpy(
tmp, delay +
offset, order *
sizeof(
float));
140 s->fdsp->vector_fmul_scalar(coeffs, coeffs,
a,
s->kernel_size);
142 s->fdsp->vector_fmac_scalar(coeffs,
tmp,
b,
s->kernel_size);
144 memcpy(coeffs + order, coeffs, order *
sizeof(
float));
146 switch (
s->output_mode) {
159 const int start = (
out->channels * jobnr) / nb_jobs;
160 const int end = (
out->channels * (jobnr+1)) / nb_jobs;
162 for (
int c = start;
c < end;
c++) {
163 const float *
input = (
const float *)
s->frame[0]->extended_data[
c];
164 const float *desired = (
const float *)
s->frame[1]->extended_data[
c];
165 float *delay = (
float *)
s->delay->extended_data[
c];
166 float *coeffs = (
float *)
s->coeffs->extended_data[
c];
167 float *
tmp = (
float *)
s->tmp->extended_data[
c];
168 int *
offset = (
int *)
s->offset->extended_data[
c];
169 float *
output = (
float *)
out->extended_data[
c];
171 for (
int n = 0; n <
out->nb_samples; n++)
189 for (
i = 0;
i <
ctx->nb_inputs && nb_samples > 0;
i++) {
200 if (
s->frame[0] &&
s->frame[1]) {
213 out->pts =
s->frame[0]->pts;
224 for (
i = 0;
i < 2;
i++) {
233 for (
i = 0;
i < 2;
i++) {
248 s->anlmf = !strcmp(
ctx->filter->name,
"anlmf");
259 if (!
s->delay || !
s->coeffs || !
s->offset || !
s->tmp)
308 .description =
NULL_IF_CONFIG_SMALL(
"Apply Normalized Least-Mean-Squares algorithm to first audio stream."),
310 .priv_class = &anlms_class,
323 .description =
NULL_IF_CONFIG_SMALL(
"Apply Normalized Least-Mean-Fourth algorithm to first audio stream."),
325 .priv_class = &anlms_class,
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
@ AV_SAMPLE_FMT_FLTP
float, planar
static float process_sample(AudioNLMSContext *s, float input, float desired, float *delay, float *coeffs, float *tmp, int *offsetp)
they must not be accessed directly The fifo field contains the frames that are queued in the input for processing by the filter The status_in and status_out fields contains the queued status(EOF or error) of the link
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
static enum AVSampleFormat sample_fmts[]
filter_frame For filters that do not use the this method is called when a frame is pushed to the filter s input It can be called at any time except in a reentrant way If the input frame is enough to produce output
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
This structure describes decoded (raw) audio or video data.
#define FILTER_QUERY_FUNC(func)
static av_cold int init(AVFilterContext *ctx)
const char * name
Filter name.
A link between two filters.
const AVFilter ff_af_anlms
#define FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, filter)
Forward the status on an output link to all input links.
static const AVOption anlms_options[]
A filter pad used for either input or output.
int ff_inlink_check_available_samples(AVFilterLink *link, unsigned min)
Test if enough samples are available on the link.
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
void ff_inlink_request_frame(AVFilterLink *link)
Mark that a frame is wanted on the link.
#define FILTER_INPUTS(array)
Describe the class of an AVClass context structure.
int ff_inlink_consume_samples(AVFilterLink *link, unsigned min, unsigned max, AVFrame **rframe)
Take samples from the link's FIFO and update the link's stats.
static av_cold void uninit(AVFilterContext *ctx)
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
const AVFilter ff_af_anlmf
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
static int query_formats(AVFilterContext *ctx)
AVFilterContext * src
source filter
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some input
#define i(width, name, range_min, range_max)
static int activate(AVFilterContext *ctx)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
AVSampleFormat
Audio sample formats.
const char * name
Pad name.
int ff_inlink_queued_samples(AVFilterLink *link)
static float fir_sample(AudioNLMSContext *s, float sample, float *delay, float *coeffs, float *tmp, int *offset)
static const AVFilterPad inputs[]
AVFILTER_DEFINE_CLASS_EXT(anlms, "anlm(f|s)", anlms_options)
static int config_output(AVFilterLink *outlink)
static int process_channels(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
#define FILTER_OUTPUTS(array)
av_cold AVFloatDSPContext * avpriv_float_dsp_alloc(int bit_exact)
Allocate a float DSP context.
static const AVFilterPad outputs[]
the definition of that something depends on the semantic of the filter The callback must examine the status of the filter s links and proceed accordingly The status of output links is stored in the status_in and status_out fields and tested by the ff_outlink_frame_wanted() function. If this function returns true
static av_always_inline int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)