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

audio volume filter More...

#include "libavutil/channel_layout.h"
#include "libavutil/common.h"
#include "libavutil/eval.h"
#include "libavutil/float_dsp.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/opt.h"
#include "libavutil/replaygain.h"
#include "audio.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
#include "af_volume.h"

Go to the source code of this file.

Macros

#define OFFSET(x)   offsetof(VolumeContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define F   AV_OPT_FLAG_FILTERING_PARAM
 
#define D2TS(d)   (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))
 
#define TS2D(ts)   ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))
 
#define TS2T(ts, tb)   ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)*av_q2d(tb))
 

Functions

 AVFILTER_DEFINE_CLASS (volume)
 
static int set_expr (AVExpr **pexpr, const char *expr, void *log_ctx)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static void scale_samples_u8 (uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
 
static void scale_samples_u8_small (uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
 
static void scale_samples_s16 (uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
 
static void scale_samples_s16_small (uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
 
static void scale_samples_s32 (uint8_t *dst, const uint8_t *src, int nb_samples, int volume)
 
static av_cold void volume_init (VolumeContext *vol)
 
static int set_volume (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 
static int process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *buf)
 

Variables

static const char *const precision_str []
 
static const char *const var_names []
 
static const AVOption volume_options []
 
static const AVFilterPad avfilter_af_volume_inputs []
 
static const AVFilterPad avfilter_af_volume_outputs []
 
AVFilter ff_af_volume
 

Detailed Description

audio volume filter

Definition in file af_volume.c.

Macro Definition Documentation

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

Definition at line 61 of file af_volume.c.

#define A   AV_OPT_FLAG_AUDIO_PARAM

Definition at line 62 of file af_volume.c.

Definition at line 63 of file af_volume.c.

#define D2TS (   d)    (isnan(d) ? AV_NOPTS_VALUE : (int64_t)(d))

Definition at line 336 of file af_volume.c.

#define TS2D (   ts)    ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts))

Definition at line 337 of file af_volume.c.

Referenced by filter_frame().

#define TS2T (   ts,
  tb 
)    ((ts) == AV_NOPTS_VALUE ? NAN : (double)(ts)*av_q2d(tb))

Definition at line 338 of file af_volume.c.

Referenced by filter_frame().

Function Documentation

AVFILTER_DEFINE_CLASS ( volume  )
static int set_expr ( AVExpr **  pexpr,
const char *  expr,
void log_ctx 
)
static

Definition at line 91 of file af_volume.c.

Referenced by init(), and process_command().

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 111 of file af_volume.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 122 of file af_volume.c.

static int query_formats ( AVFilterContext ctx)
static

Definition at line 130 of file af_volume.c.

static void scale_samples_u8 ( uint8_t dst,
const uint8_t src,
int  nb_samples,
int  volume 
)
inlinestatic

Definition at line 178 of file af_volume.c.

Referenced by volume_init().

static void scale_samples_u8_small ( uint8_t dst,
const uint8_t src,
int  nb_samples,
int  volume 
)
inlinestatic

Definition at line 186 of file af_volume.c.

Referenced by volume_init().

static void scale_samples_s16 ( uint8_t dst,
const uint8_t src,
int  nb_samples,
int  volume 
)
inlinestatic

Definition at line 194 of file af_volume.c.

Referenced by volume_init().

static void scale_samples_s16_small ( uint8_t dst,
const uint8_t src,
int  nb_samples,
int  volume 
)
inlinestatic

Definition at line 204 of file af_volume.c.

Referenced by volume_init().

static void scale_samples_s32 ( uint8_t dst,
const uint8_t src,
int  nb_samples,
int  volume 
)
inlinestatic

Definition at line 214 of file af_volume.c.

Referenced by volume_init().

static av_cold void volume_init ( VolumeContext vol)
static

Definition at line 224 of file af_volume.c.

Referenced by filter_frame(), and set_volume().

static int set_volume ( AVFilterContext ctx)
static

Definition at line 256 of file af_volume.c.

Referenced by config_output(), filter_frame(), and process_command().

static int config_output ( AVFilterLink outlink)
static

Definition at line 288 of file af_volume.c.

static int process_command ( AVFilterContext ctx,
const char *  cmd,
const char *  args,
char *  res,
int  res_len,
int  flags 
)
static

Definition at line 320 of file af_volume.c.

static int filter_frame ( AVFilterLink inlink,
AVFrame buf 
)
static

Definition at line 340 of file af_volume.c.

Variable Documentation

const char* const precision_str[]
static
Initial value:
= {
"fixed", "float", "double"
}

Definition at line 41 of file af_volume.c.

Referenced by set_volume().

const char* const var_names[]
static
Initial value:
= {
"n",
"nb_channels",
"nb_consumed_samples",
"nb_samples",
"pos",
"pts",
"sample_rate",
"startpts",
"startt",
"t",
"tb",
"volume",
}
#define NULL
Definition: coverity.c:32

Definition at line 45 of file af_volume.c.

Referenced by set_expr().

const AVOption volume_options[]
static
Initial value:
= {
{ "volume", "set volume adjustment expression",
OFFSET(volume_expr), AV_OPT_TYPE_STRING, { .str = "1.0" }, .flags = A|F },
{ "precision", "select mathematical precision",
OFFSET(precision), AV_OPT_TYPE_INT, { .i64 = PRECISION_FLOAT }, PRECISION_FIXED, PRECISION_DOUBLE, A|F, "precision" },
{ "fixed", "select 8-bit fixed-point", 0, AV_OPT_TYPE_CONST, { .i64 = PRECISION_FIXED }, INT_MIN, INT_MAX, A|F, "precision" },
{ "float", "select 32-bit floating-point", 0, AV_OPT_TYPE_CONST, { .i64 = PRECISION_FLOAT }, INT_MIN, INT_MAX, A|F, "precision" },
{ "double", "select 64-bit floating-point", 0, AV_OPT_TYPE_CONST, { .i64 = PRECISION_DOUBLE }, INT_MIN, INT_MAX, A|F, "precision" },
{ "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_ONCE}, 0, EVAL_MODE_NB-1, .flags = A|F, "eval" },
{ "once", "eval volume expression once", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_ONCE}, .flags = A|F, .unit = "eval" },
{ "frame", "eval volume expression per-frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = A|F, .unit = "eval" },
{ "replaygain", "Apply replaygain side data when present",
OFFSET(replaygain), AV_OPT_TYPE_INT, { .i64 = REPLAYGAIN_DROP }, REPLAYGAIN_DROP, REPLAYGAIN_ALBUM, A, "replaygain" },
{ "drop", "replaygain side data is dropped", 0, AV_OPT_TYPE_CONST, { .i64 = REPLAYGAIN_DROP }, 0, 0, A, "replaygain" },
{ "ignore", "replaygain side data is ignored", 0, AV_OPT_TYPE_CONST, { .i64 = REPLAYGAIN_IGNORE }, 0, 0, A, "replaygain" },
{ "track", "track gain is preferred", 0, AV_OPT_TYPE_CONST, { .i64 = REPLAYGAIN_TRACK }, 0, 0, A, "replaygain" },
{ "album", "album gain is preferred", 0, AV_OPT_TYPE_CONST, { .i64 = REPLAYGAIN_ALBUM }, 0, 0, A, "replaygain" },
{ "replaygain_preamp", "Apply replaygain pre-amplification",
OFFSET(replaygain_preamp), AV_OPT_TYPE_DOUBLE, { .dbl = 0.0 }, -15.0, 15.0, A },
{ "replaygain_noclip", "Apply replaygain clipping prevention",
OFFSET(replaygain_noclip), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, A },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define A
Definition: af_volume.c:62
#define F
Definition: af_volume.c:63
#define OFFSET(x)
Definition: af_volume.c:61

Definition at line 65 of file af_volume.c.

const AVFilterPad avfilter_af_volume_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int filter_frame(AVFilterLink *inlink, AVFrame *buf)
Definition: af_volume.c:340

Definition at line 462 of file af_volume.c.

const AVFilterPad avfilter_af_volume_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_volume.c:288

Definition at line 471 of file af_volume.c.

AVFilter ff_af_volume
Initial value:
= {
.name = "volume",
.description = NULL_IF_CONFIG_SMALL("Change input volume."),
.query_formats = query_formats,
.priv_size = sizeof(VolumeContext),
.priv_class = &volume_class,
.init = init,
}
static const AVFilterPad outputs[]
Definition: af_ashowinfo.c:248
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_volume.c:122
static av_cold int init(AVFilterContext *ctx)
Definition: af_volume.c:111
#define AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
Some filters support a generic "enable" expression option that can be used to enable or disable a fil...
Definition: avfilter.h:451
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
static int query_formats(AVFilterContext *ctx)
Definition: af_volume.c:130
static const AVFilterPad avfilter_af_volume_outputs[]
Definition: af_volume.c:471
static const AVFilterPad inputs[]
Definition: af_ashowinfo.c:239
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: af_volume.c:320
static int flags
Definition: cpu.c:47
static const AVFilterPad avfilter_af_volume_inputs[]
Definition: af_volume.c:462

Definition at line 480 of file af_volume.c.