Go to the source code of this file.
|
| enum | OutModes {
IN_MODE,
OUT_MODE,
NOISE_MODE,
NB_MODES,
IN_MODE,
OUT_MODE,
NOISE_MODE,
NB_MODES,
IN_MODE,
DESIRED_MODE,
OUT_MODE,
NOISE_MODE,
NB_OMODES,
IN_MODE,
OUT_MODE,
ESS_MODE,
NB_MODES
} |
| |
|
| | AVFILTER_DEFINE_CLASS_EXT (anlms, "anlm(f|s)", anlms_options) |
| |
| static int | query_formats (AVFilterContext *ctx) |
| |
| static float | fir_sample (AudioNLMSContext *s, float sample, float *delay, float *coeffs, float *tmp, int *offset) |
| |
| static float | process_sample (AudioNLMSContext *s, float input, float desired, float *delay, float *coeffs, float *tmp, int *offsetp) |
| |
| static int | process_channels (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| |
| static int | activate (AVFilterContext *ctx) |
| |
| static int | config_output (AVFilterLink *outlink) |
| |
| static av_cold int | init (AVFilterContext *ctx) |
| |
| static av_cold void | uninit (AVFilterContext *ctx) |
| |
◆ OFFSET
◆ AT
◆ OutModes
| Enumerator |
|---|
| IN_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_MODES | |
| IN_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_MODES | |
| IN_MODE | |
| DESIRED_MODE | |
| OUT_MODE | |
| NOISE_MODE | |
| NB_OMODES | |
| IN_MODE | |
| OUT_MODE | |
| ESS_MODE | |
| NB_MODES | |
Definition at line 32 of file af_anlms.c.
◆ AVFILTER_DEFINE_CLASS_EXT()
◆ query_formats()
◆ fir_sample()
◆ process_sample()
◆ process_channels()
◆ activate()
◆ config_output()
◆ init()
◆ uninit()
◆ anlms_options
◆ inputs
Initial value:= {
{
.name = "input",
},
{
.name = "desired",
},
}
Definition at line 290 of file af_anlms.c.
◆ outputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 301 of file af_anlms.c.
◆ ff_af_anlms
Initial value:= {
.name = "anlms",
.description =
NULL_IF_CONFIG_SMALL(
"Apply Normalized Least-Mean-Squares algorithm to first audio stream."),
.priv_class = &anlms_class,
}
Definition at line 309 of file af_anlms.c.
◆ ff_af_anlmf
Initial value:= {
.name = "anlmf",
.description =
NULL_IF_CONFIG_SMALL(
"Apply Normalized Least-Mean-Fourth algorithm to first audio stream."),
.priv_class = &anlms_class,
}
Definition at line 325 of file af_anlms.c.
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.