FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
af_aphaser.c File Reference

phaser audio filter More...

#include "libavutil/avassert.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
#include "generate_wave_table.h"

Go to the source code of this file.

Data Structures

struct  AudioPhaserContext
 

Macros

#define OFFSET(x)   offsetof(AudioPhaserContext, x)
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define MOD(a, b)   (((a) >= (b)) ? (a) - (b) : (a))
 
#define PHASER_PLANAR(name, type)
 
#define PHASER(name, type)
 

Functions

 AVFILTER_DEFINE_CLASS (aphaser)
 
static av_cold int init (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *inbuf)
 
static av_cold void uninit (AVFilterContext *ctx)
 

Variables

static const AVOption aphaser_options []
 
static const AVFilterPad aphaser_inputs []
 
static const AVFilterPad aphaser_outputs []
 
AVFilter ff_af_aphaser
 

Detailed Description

phaser audio filter

Definition in file af_aphaser.c.

Macro Definition Documentation

#define OFFSET (   x)    offsetof(AudioPhaserContext, x)

Definition at line 55 of file af_aphaser.c.

Definition at line 56 of file af_aphaser.c.

#define MOD (   a,
  b 
)    (((a) >= (b)) ? (a) - (b) : (a))

Definition at line 119 of file af_aphaser.c.

#define PHASER_PLANAR (   name,
  type 
)

Definition at line 121 of file af_aphaser.c.

#define PHASER (   name,
  type 
)

Definition at line 157 of file af_aphaser.c.

Function Documentation

AVFILTER_DEFINE_CLASS ( aphaser  )
static av_cold int init ( AVFilterContext ctx)
static

Definition at line 74 of file af_aphaser.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 86 of file af_aphaser.c.

static int config_output ( AVFilterLink outlink)
static

Definition at line 203 of file af_aphaser.c.

static int filter_frame ( AVFilterLink inlink,
AVFrame inbuf 
)
static

Definition at line 241 of file af_aphaser.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 265 of file af_aphaser.c.

Variable Documentation

const AVOption aphaser_options[]
static
Initial value:
= {
{ "in_gain", "set input gain", OFFSET(in_gain), AV_OPT_TYPE_DOUBLE, {.dbl=.4}, 0, 1, FLAGS },
{ "out_gain", "set output gain", OFFSET(out_gain), AV_OPT_TYPE_DOUBLE, {.dbl=.74}, 0, 1e9, FLAGS },
{ "delay", "set delay in milliseconds", OFFSET(delay), AV_OPT_TYPE_DOUBLE, {.dbl=3.}, 0, 5, FLAGS },
{ "decay", "set decay", OFFSET(decay), AV_OPT_TYPE_DOUBLE, {.dbl=.4}, 0, .99, FLAGS },
{ "speed", "set modulation speed", OFFSET(speed), AV_OPT_TYPE_DOUBLE, {.dbl=.5}, .1, 2, FLAGS },
{ "type", "set modulation type", OFFSET(type), AV_OPT_TYPE_INT, {.i64=WAVE_TRI}, 0, WAVE_NB-1, FLAGS, "type" },
{ "triangular", NULL, 0, AV_OPT_TYPE_CONST, {.i64=WAVE_TRI}, 0, 0, FLAGS, "type" },
{ "t", NULL, 0, AV_OPT_TYPE_CONST, {.i64=WAVE_TRI}, 0, 0, FLAGS, "type" },
{ "sinusoidal", NULL, 0, AV_OPT_TYPE_CONST, {.i64=WAVE_SIN}, 0, 0, FLAGS, "type" },
{ "s", NULL, 0, AV_OPT_TYPE_CONST, {.i64=WAVE_SIN}, 0, 0, FLAGS, "type" },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define FLAGS
Definition: af_aphaser.c:56
GLint GLenum type
Definition: opengl_enc.c:105
#define OFFSET(x)
Definition: af_aphaser.c:55

Definition at line 58 of file af_aphaser.c.

const AVFilterPad aphaser_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter_frame(AVFilterLink *inlink, AVFrame *inbuf)
Definition: af_aphaser.c:241

Definition at line 273 of file af_aphaser.c.

const AVFilterPad aphaser_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_output,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int config_output(AVFilterLink *outlink)
Definition: af_aphaser.c:203

Definition at line 282 of file af_aphaser.c.

AVFilter ff_af_aphaser
Initial value:
= {
.name = "aphaser",
.description = NULL_IF_CONFIG_SMALL("Add a phasing effect to the audio."),
.query_formats = query_formats,
.priv_size = sizeof(AudioPhaserContext),
.init = init,
.priv_class = &aphaser_class,
}
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
static const AVFilterPad aphaser_outputs[]
Definition: af_aphaser.c:282
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_aphaser.c:265
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static av_cold int init(AVFilterContext *ctx)
Definition: af_aphaser.c:74
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
static int query_formats(AVFilterContext *ctx)
Definition: af_aphaser.c:86
static const AVFilterPad aphaser_inputs[]
Definition: af_aphaser.c:273

Definition at line 291 of file af_aphaser.c.