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

audio compand filter More...

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

Go to the source code of this file.

Data Structures

struct  ChanParam
 
struct  CompandSegment
 
struct  CompandContext
 

Macros

#define OFFSET(x)   offsetof(CompandContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 
#define MOD(a, b)   (((a) >= (b)) ? (a) - (b) : (a))
 
#define S(x)   s->segments[2 * ((x) + 1)]
 
#define S(x)   s->segments[2 * (x)]
 
#define L(x)   s->segments[i - (x)]
 

Functions

 AVFILTER_DEFINE_CLASS (compand)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static void count_items (char *item_str, int *nb_items)
 
static void update_volume (ChanParam *cp, double in)
 
static double get_volume (CompandContext *s, double in_lin)
 
static int compand_nodelay (AVFilterContext *ctx, AVFrame *frame)
 
static int compand_delay (AVFilterContext *ctx, AVFrame *frame)
 
static int compand_drain (AVFilterLink *outlink)
 
static int config_output (AVFilterLink *outlink)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *frame)
 
static int request_frame (AVFilterLink *outlink)
 

Variables

static const AVOption compand_options []
 
static const AVFilterPad compand_inputs []
 
static const AVFilterPad compand_outputs []
 
AVFilter ff_af_compand
 

Detailed Description

audio compand filter

Definition in file af_compand.c.

Macro Definition Documentation

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

Definition at line 70 of file af_compand.c.

Definition at line 71 of file af_compand.c.

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

Definition at line 218 of file af_compand.c.

Referenced by compand_delay().

#define S (   x)    s->segments[2 * ((x) + 1)]

Referenced by config_output().

#define S (   x)    s->segments[2 * (x)]
#define L (   x)    s->segments[i - (x)]

Referenced by config_output().

Function Documentation

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

Definition at line 86 of file af_compand.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 93 of file af_compand.c.

Referenced by config_output().

static int query_formats ( AVFilterContext ctx)
static

Definition at line 102 of file af_compand.c.

static void count_items ( char *  item_str,
int *  nb_items 
)
static

Definition at line 132 of file af_compand.c.

Referenced by config_output().

static void update_volume ( ChanParam cp,
double  in 
)
static

Definition at line 143 of file af_compand.c.

Referenced by compand_delay(), and compand_nodelay().

static double get_volume ( CompandContext s,
double  in_lin 
)
static

Definition at line 153 of file af_compand.c.

Referenced by compand_delay(), and compand_nodelay().

static int compand_nodelay ( AVFilterContext ctx,
AVFrame frame 
)
static

Definition at line 174 of file af_compand.c.

Referenced by config_output().

static int compand_delay ( AVFilterContext ctx,
AVFrame frame 
)
static

Definition at line 220 of file af_compand.c.

Referenced by config_output().

static int compand_drain ( AVFilterLink outlink)
static

Definition at line 292 of file af_compand.c.

Referenced by request_frame().

static int config_output ( AVFilterLink outlink)
static

Definition at line 327 of file af_compand.c.

static int filter_frame ( AVFilterLink inlink,
AVFrame frame 
)
static

Definition at line 536 of file af_compand.c.

static int request_frame ( AVFilterLink outlink)
static

Definition at line 544 of file af_compand.c.

Variable Documentation

const AVOption compand_options[]
static
Initial value:
= {
{ "attacks", "set time over which increase of volume is determined", OFFSET(attacks), AV_OPT_TYPE_STRING, { .str = "0.3" }, 0, 0, A },
{ "decays", "set time over which decrease of volume is determined", OFFSET(decays), AV_OPT_TYPE_STRING, { .str = "0.8" }, 0, 0, A },
{ "points", "set points of transfer function", OFFSET(points), AV_OPT_TYPE_STRING, { .str = "-70/-70|-60/-20" }, 0, 0, A },
{ "soft-knee", "set soft-knee", OFFSET(curve_dB), AV_OPT_TYPE_DOUBLE, { .dbl = 0.01 }, 0.01, 900, A },
{ "gain", "set output gain", OFFSET(gain_dB), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, -900, 900, A },
{ "volume", "set initial volume", OFFSET(initial_volume), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, -900, 0, A },
{ "delay", "set delay for samples before sending them to volume adjuster", OFFSET(delay), AV_OPT_TYPE_DOUBLE, { .dbl = 0 }, 0, 20, A },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: af_compand.c:70
#define A
Definition: af_compand.c:71

Definition at line 73 of file af_compand.c.

const AVFilterPad compand_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
Definition: af_compand.c:536

Definition at line 558 of file af_compand.c.

const AVFilterPad compand_outputs[]
static
Initial value:
= {
{
.name = "default",
.request_frame = request_frame,
.config_props = config_output,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int request_frame(AVFilterLink *outlink)
Definition: af_compand.c:544
static int config_output(AVFilterLink *outlink)
Definition: af_compand.c:327

Definition at line 567 of file af_compand.c.

AVFilter ff_af_compand
Initial value:
= {
.name = "compand",
.description = NULL_IF_CONFIG_SMALL(
"Compress or expand audio dynamic range."),
.query_formats = query_formats,
.priv_size = sizeof(CompandContext),
.priv_class = &compand_class,
.init = init,
}
static const AVFilterPad compand_inputs[]
Definition: af_compand.c:558
static const AVFilterPad compand_outputs[]
Definition: af_compand.c:567
static av_cold int init(AVFilterContext *ctx)
Definition: af_compand.c:86
static int query_formats(AVFilterContext *ctx)
Definition: af_compand.c:102
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static const AVFilterPad outputs[]
Definition: af_afftfilt.c:385
static const AVFilterPad inputs[]
Definition: af_afftfilt.c:375
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_compand.c:93

Definition at line 578 of file af_compand.c.