Go to the source code of this file.
|
| | AVFILTER_DEFINE_CLASS (afftfilt) |
| |
| static double | getreal (void *priv, double x, double ch) |
| |
| static double | getimag (void *priv, double x, double ch) |
| |
| static double | realf (void *priv, double x, double ch) |
| |
| static double | imagf (void *priv, double x, double ch) |
| |
| static int | config_input (AVFilterLink *inlink) |
| |
| static int | tx_channel (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| |
| static int | filter_channel (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs) |
| |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| |
| static int | activate (AVFilterContext *ctx) |
| |
| static av_cold void | uninit (AVFilterContext *ctx) |
| |
|
| static const char *const | var_names [] = { "sr", "b", "nb", "ch", "chs", "pts", "re", "im", NULL } |
| |
| static const AVOption | afftfilt_options [] |
| |
| static const char *const | func2_names [] = { "real", "imag", NULL } |
| |
| static double(*const | func2 [])(void *, double, double) = { realf, imagf, NULL } |
| |
| static const AVFilterPad | inputs [] |
| |
| const FFFilter | ff_af_afftfilt |
| |
◆ OFFSET
◆ anonymous enum
| Enumerator |
|---|
| VAR_SAMPLE_RATE | |
| VAR_BIN | |
| VAR_NBBINS | |
| VAR_CHANNEL | |
| VAR_CHANNELS | |
| VAR_PTS | |
| VAR_REAL | |
| VAR_IMAG | |
| VAR_VARS_NB | |
Definition at line 57 of file af_afftfilt.c.
◆ AVFILTER_DEFINE_CLASS()
| AVFILTER_DEFINE_CLASS |
( |
afftfilt | | ) |
|
◆ getreal()
◆ getimag()
◆ realf()
◆ imagf()
◆ config_input()
◆ tx_channel()
| static int tx_channel |
( |
AVFilterContext * | ctx, |
|
|
void * | arg, |
|
|
int | jobnr, |
|
|
int | nb_jobs ) |
|
static |
◆ filter_channel()
| static int filter_channel |
( |
AVFilterContext * | ctx, |
|
|
void * | arg, |
|
|
int | jobnr, |
|
|
int | nb_jobs ) |
|
static |
◆ filter_frame()
◆ activate()
◆ uninit()
◆ var_names
| const char* const var_names[] = { "sr", "b", "nb", "ch", "chs", "pts", "re", "im", NULL } |
|
static |
◆ afftfilt_options
Initial value:= {
}
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define WIN_FUNC_OPTION(win_func_opt_name, win_func_offset, flag, default_window_func)
Definition at line 62 of file af_afftfilt.c.
◆ func2_names
| const char* const func2_names[] = { "real", "imag", NULL } |
|
static |
◆ func2
◆ inputs
Initial value:= {
{
.name = "default",
},
}
static int config_input(AVFilterLink *inlink)
Definition at line 435 of file af_afftfilt.c.
◆ ff_af_afftfilt
Initial value:= {
.p.name = "afftfilt",
.p.description =
NULL_IF_CONFIG_SMALL(
"Apply arbitrary expressions to samples in frequency domain."),
.p.priv_class = &afftfilt_class,
}
static const AVFilterPad inputs[]
const AVFilterPad ff_audio_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_AUDIO.
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
#define AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
Same as AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, except that the filter will have its filter_frame() c...
@ AV_SAMPLE_FMT_FLTP
float, planar
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int activate(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
#define FILTER_OUTPUTS(array)
#define FILTER_SINGLE_SAMPLEFMT(sample_fmt_)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition at line 443 of file af_afftfilt.c.