Go to the documentation of this file.
64 #define OFFSET(x) offsetof(AudioRLSContext, x)
65 #define A AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
66 #define AT AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
78 {
"precision",
"set processing precision",
OFFSET(precision),
AV_OPT_TYPE_INT, {.i64=0}, 0, 2,
A, .unit =
"precision" },
79 {
"auto",
"set auto processing precision", 0,
AV_OPT_TYPE_CONST, {.i64=0}, 0, 0,
A, .unit =
"precision" },
80 {
"float",
"set single-floating point processing precision", 0,
AV_OPT_TYPE_CONST, {.i64=1}, 0, 0,
A, .unit =
"precision" },
81 {
"double",
"set double-floating point processing precision", 0,
AV_OPT_TYPE_CONST, {.i64=2}, 0, 0,
A, .unit =
"precision" },
117 for (
i = 0;
i <
ctx->nb_inputs && nb_samples > 0;
i++) {
128 if (
s->frame[0] &&
s->frame[1]) {
141 out->pts =
s->frame[0]->pts;
142 out->duration =
s->frame[0]->duration;
153 for (
i = 0;
i < 2;
i++) {
162 for (
i = 0;
i < 2;
i++) {
203 if (!
s->delay || !
s->coeffs || !
s->p || !
s->dp || !
s->gains || !
s->offset || !
s->u || !
s->tmp)
206 for (
int ch = 0; ch <
s->offset->ch_layout.nb_channels; ch++) {
207 int *
dst = (
int *)
s->offset->extended_data[ch];
209 for (
int i = 0;
i <
s->kernel_size;
i++)
210 dst[0] =
s->kernel_size - 1;
213 switch (outlink->
format) {
215 for (
int ch = 0; ch <
s->p->ch_layout.nb_channels; ch++) {
216 double *
dst = (
double *)
s->p->extended_data[ch];
218 for (
int i = 0;
i <
s->kernel_size;
i++)
219 dst[
i *
s->kernel_size +
i] =
s->delta;
222 s->filter_channels = filter_channels_double;
225 for (
int ch = 0; ch <
s->p->ch_layout.nb_channels; ch++) {
226 float *
dst = (
float *)
s->p->extended_data[ch];
228 for (
int i = 0;
i <
s->kernel_size;
i++)
229 dst[
i *
s->kernel_size +
i] =
s->delta;
232 s->filter_channels = filter_channels_float;
286 .description =
NULL_IF_CONFIG_SMALL(
"Apply Recursive Least Squares algorithm to first audio stream."),
288 .priv_class = &arls_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
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
static const AVFilterPad outputs[]
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
static enum AVSampleFormat sample_fmts[]
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
static const AVOption arls_options[]
#define FILTER_INPUTS(array)
This structure describes decoded (raw) audio or video data.
static int config_output(AVFilterLink *outlink)
const char * name
Filter name.
A link between two filters.
static const AVFilterPad inputs[]
#define FF_FILTER_FORWARD_STATUS_BACK_ALL(outlink, filter)
Forward the status on an output link to all input links.
static av_cold int init(AVFilterContext *ctx)
A filter pad used for either input or output.
int(* filter_channels)(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
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_OUTPUTS(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.
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
uint8_t ptrdiff_t const uint8_t ptrdiff_t int intptr_t intptr_t int int16_t * dst
int format
agreed upon media format
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.
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
const AVFilter ff_af_arls
#define i(width, name, range_min, range_max)
int ff_filter_get_nb_threads(AVFilterContext *ctx)
Get number of threads for current filter instance.
AVSampleFormat
Audio sample formats.
#define FILTER_QUERY_FUNC2(func)
const char * name
Pad name.
int ff_inlink_queued_samples(AVFilterLink *link)
static av_cold void uninit(AVFilterContext *ctx)
int ff_filter_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg, int *ret, int nb_jobs)
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_SAMPLE_FMT_DBLP
double, planar
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
static int activate(AVFilterContext *ctx)
av_cold AVFloatDSPContext * avpriv_float_dsp_alloc(int bit_exact)
Allocate a float DSP context.
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
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
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
AVFILTER_DEFINE_CLASS(arls)