FFmpeg
|
#include "libavutil/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "avfilter.h"
#include "audio.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 | avfilter_af_compand |
#define OFFSET | ( | x | ) | offsetof(CompandContext, x) |
Definition at line 64 of file af_compand.c.
Definition at line 65 of file af_compand.c.
Definition at line 210 of file af_compand.c.
Referenced by compand_delay().
#define S | ( | x | ) | s->segments[2 * ((x) + 1)] |
#define S | ( | x | ) | s->segments[2 * (x)] |
#define L | ( | x | ) | s->segments[i - (x)] |
AVFILTER_DEFINE_CLASS | ( | compand | ) |
|
static |
Definition at line 80 of file af_compand.c.
|
static |
Definition at line 92 of file af_compand.c.
Referenced by config_output().
|
static |
Definition at line 103 of file af_compand.c.
|
static |
Definition at line 130 of file af_compand.c.
Referenced by config_output().
Definition at line 142 of file af_compand.c.
Referenced by compand_delay(), and compand_nodelay().
|
static |
Definition at line 152 of file af_compand.c.
Referenced by compand_delay(), and compand_nodelay().
|
static |
Definition at line 174 of file af_compand.c.
Referenced by config_output().
|
static |
Definition at line 212 of file af_compand.c.
Referenced by config_output().
|
static |
Definition at line 263 of file af_compand.c.
Referenced by request_frame().
|
static |
Definition at line 294 of file af_compand.c.
|
static |
Definition at line 467 of file af_compand.c.
|
static |
Definition at line 475 of file af_compand.c.
|
static |
Definition at line 67 of file af_compand.c.
|
static |
Definition at line 489 of file af_compand.c.
|
static |
Definition at line 498 of file af_compand.c.
AVFilter avfilter_af_compand |
Definition at line 508 of file af_compand.c.