FFmpeg
Data Structures | Macros | Functions | Variables
af_extrastereo.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "avfilter.h"
#include "audio.h"
#include "formats.h"

Go to the source code of this file.

Data Structures

struct  ExtraStereoContext
 

Macros

#define OFFSET(x)   offsetof(ExtraStereoContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (extrastereo)
 
static int query_formats (AVFilterContext *ctx)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 

Variables

static const AVOption extrastereo_options []
 
static const AVFilterPad inputs []
 
static const AVFilterPad outputs []
 
AVFilter ff_af_extrastereo
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 33 of file af_extrastereo.c.

◆ A

Definition at line 34 of file af_extrastereo.c.

Function Documentation

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( extrastereo  )

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 44 of file af_extrastereo.c.

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 60 of file af_extrastereo.c.

Variable Documentation

◆ extrastereo_options

const AVOption extrastereo_options[]
static
Initial value:
= {
{ "m", "set the difference coefficient", OFFSET(mult), AV_OPT_TYPE_FLOAT, {.dbl=2.5}, -10, 10, A },
{ "c", "enable clipping", OFFSET(clip), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, A },
{ NULL }
}

Definition at line 36 of file af_extrastereo.c.

◆ inputs

const AVFilterPad inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
},
{ NULL }
}

Definition at line 106 of file af_extrastereo.c.

◆ outputs

const AVFilterPad outputs[]
static
Initial value:
= {
{
.name = "default",
},
{ NULL }
}

Definition at line 115 of file af_extrastereo.c.

◆ ff_af_extrastereo

AVFilter ff_af_extrastereo
Initial value:
= {
.name = "extrastereo",
.description = NULL_IF_CONFIG_SMALL("Increase difference between stereo audio channels."),
.query_formats = query_formats,
.priv_size = sizeof(ExtraStereoContext),
.priv_class = &extrastereo_class,
}

Definition at line 123 of file af_extrastereo.c.

outputs
static const AVFilterPad outputs[]
Definition: af_extrastereo.c:115
OFFSET
#define OFFSET(x)
Definition: af_extrastereo.c:33
mult
static int16_t mult(Float11 *f1, Float11 *f2)
Definition: g726.c:55
inputs
static const AVFilterPad inputs[]
Definition: af_extrastereo.c:106
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: af_extrastereo.c:44
NULL
#define NULL
Definition: coverity.c:32
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
process_command
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
Definition: af_acrusher.c:336
ExtraStereoContext
Definition: af_extrastereo.c:27
ff_filter_process_command
int ff_filter_process_command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
Generic processing of user supplied commands that are set in the same way as the filter options.
Definition: avfilter.c:882
AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC
#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:126
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:228
filter_frame
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: af_extrastereo.c:60
A
#define A
Definition: af_extrastereo.c:34
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:242
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:561
clip
static double clip(void *opaque, double val)
Clip value val in the minval - maxval range.
Definition: vf_lut.c:162