#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
#include "window_func.h"
Go to the source code of this file.
◆ OFFSET
◆ FLAGS
◆ AVFILTER_DEFINE_CLASS()
AVFILTER_DEFINE_CLASS |
( |
hilbert |
| ) |
|
◆ init()
◆ uninit()
◆ query_formats()
◆ config_props()
◆ request_frame()
◆ hilbert_options
Initial value:= {
{
"nb_samples",
"set the number of samples per requested frame",
OFFSET(nb_samples),
AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
{
"n",
"set the number of samples per requested frame",
OFFSET(nb_samples),
AV_OPT_TYPE_INT, {.i64 = 1024}, 1, INT_MAX, FLAGS },
}
Definition at line 42 of file asrc_hilbert.c.
◆ hilbert_outputs
Initial value:= {
{
.name = "default",
},
}
static int request_frame(AVFilterLink *outlink)
static av_cold int config_props(AVFilterLink *outlink)
Definition at line 179 of file asrc_hilbert.c.
◆ ff_asrc_hilbert
Initial value:= {
.name = "hilbert",
.priv_class = &hilbert_class,
}
static av_cold void uninit(AVFilterContext *ctx)
static av_cold int query_formats(AVFilterContext *ctx)
static av_cold int init(AVFilterContext *ctx)
#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 const AVFilterPad hilbert_outputs[]
Definition at line 189 of file asrc_hilbert.c.