FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
af_surround.c File Reference
#include "libavutil/audio_fifo.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libavcodec/avfft.h"
#include "avfilter.h"
#include "audio.h"
#include "formats.h"

Go to the source code of this file.

Data Structures

struct  AudioSurroundContext
 

Macros

#define OFFSET(x)   offsetof(AudioSurroundContext, x)
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Functions

static int query_formats (AVFilterContext *ctx)
 
static int config_input (AVFilterLink *inlink)
 
static int config_output (AVFilterLink *outlink)
 
static void stereo_position (float a, float p, float *x, float *y)
 
static void get_lfe (int output_lfe, int n, float lowcut, float highcut, float *lfe_mag, float *mag_total)
 
static void upmix_1_0 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_stereo (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_2_1 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_3_0 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_3_1 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_3_1_surround (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float c_mag, float mag_total, float x, float y, int n)
 
static void upmix_4_0 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_4_1 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_5_0_back (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_5_1_back (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_5_1_back_surround (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float c_mag, float mag_total, float x, float y, int n)
 
static void upmix_5_1_back_2_1 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float lfe_re, float lfe_im, float x, float y, int n)
 
static void upmix_7_0 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_7_1 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_7_1_5_1 (AVFilterContext *ctx, float c_re, float c_im, float lfe_re, float lfe_im, float mag_totall, float mag_totalr, float fl_phase, float fr_phase, float bl_phase, float br_phase, float sl_phase, float sr_phase, float xl, float yl, float xr, float yr, int n)
 
static void filter_stereo (AVFilterContext *ctx)
 
static void filter_surround (AVFilterContext *ctx)
 
static void filter_2_1 (AVFilterContext *ctx)
 
static void filter_5_1_back (AVFilterContext *ctx)
 
static int init (AVFilterContext *ctx)
 
static int fft_channel (AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
 
static int ifft_channel (AVFilterContext *ctx, void *arg, int ch, int nb_jobs)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *in)
 
static av_cold void uninit (AVFilterContext *ctx)
 
 AVFILTER_DEFINE_CLASS (surround)
 

Variables

static const AVOption surround_options []
 
static const AVFilterPad inputs []
 
static const AVFilterPad outputs []
 
AVFilter ff_af_surround
 

Macro Definition Documentation

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

Definition at line 1214 of file af_surround.c.

Definition at line 1215 of file af_surround.c.

Function Documentation

static int query_formats ( AVFilterContext ctx)
static

Definition at line 105 of file af_surround.c.

static int config_input ( AVFilterLink inlink)
static

Definition at line 143 of file af_surround.c.

static int config_output ( AVFilterLink outlink)
static

Definition at line 185 of file af_surround.c.

static void stereo_position ( float  a,
float  p,
float *  x,
float *  y 
)
static

Definition at line 221 of file af_surround.c.

Referenced by filter_2_1(), filter_5_1_back(), filter_stereo(), and filter_surround().

static void get_lfe ( int  output_lfe,
int  n,
float  lowcut,
float  highcut,
float *  lfe_mag,
float *  mag_total 
)
inlinestatic
static void upmix_1_0 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 239 of file af_surround.c.

Referenced by init().

static void upmix_stereo ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 258 of file af_surround.c.

Referenced by init().

static void upmix_2_1 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 282 of file af_surround.c.

Referenced by init().

static void upmix_3_0 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 312 of file af_surround.c.

Referenced by init().

static void upmix_3_1 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 341 of file af_surround.c.

Referenced by init().

static void upmix_3_1_surround ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  c_mag,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 376 of file af_surround.c.

Referenced by init().

static void upmix_4_0 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 411 of file af_surround.c.

Referenced by init().

static void upmix_4_1 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 445 of file af_surround.c.

Referenced by init().

static void upmix_5_0_back ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 485 of file af_surround.c.

Referenced by init().

static void upmix_5_1_back ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 524 of file af_surround.c.

Referenced by init().

static void upmix_5_1_back_surround ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  c_mag,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 569 of file af_surround.c.

Referenced by init().

static void upmix_5_1_back_2_1 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  lfe_re,
float  lfe_im,
float  x,
float  y,
int  n 
)
static

Definition at line 615 of file af_surround.c.

Referenced by init().

static void upmix_7_0 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 661 of file af_surround.c.

Referenced by init().

static void upmix_7_1 ( AVFilterContext ctx,
float  l_phase,
float  r_phase,
float  c_phase,
float  mag_total,
float  x,
float  y,
int  n 
)
static

Definition at line 711 of file af_surround.c.

Referenced by init().

static void upmix_7_1_5_1 ( AVFilterContext ctx,
float  c_re,
float  c_im,
float  lfe_re,
float  lfe_im,
float  mag_totall,
float  mag_totalr,
float  fl_phase,
float  fr_phase,
float  bl_phase,
float  br_phase,
float  sl_phase,
float  sr_phase,
float  xl,
float  yl,
float  xr,
float  yr,
int  n 
)
static

Definition at line 767 of file af_surround.c.

Referenced by init().

static void filter_stereo ( AVFilterContext ctx)
static

Definition at line 823 of file af_surround.c.

Referenced by init().

static void filter_surround ( AVFilterContext ctx)
static

Definition at line 854 of file af_surround.c.

Referenced by init().

static void filter_2_1 ( AVFilterContext ctx)
static

Definition at line 888 of file af_surround.c.

Referenced by init().

static void filter_5_1_back ( AVFilterContext ctx)
static

Definition at line 921 of file af_surround.c.

Referenced by init().

static int init ( AVFilterContext ctx)
static

Definition at line 978 of file af_surround.c.

static int fft_channel ( AVFilterContext ctx,
void arg,
int  ch,
int  nb_jobs 
)
static

Definition at line 1098 of file af_surround.c.

Referenced by filter_frame().

static int ifft_channel ( AVFilterContext ctx,
void arg,
int  ch,
int  nb_jobs 
)
static

Definition at line 1117 of file af_surround.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame in 
)
static

Definition at line 1147 of file af_surround.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 1191 of file af_surround.c.

AVFILTER_DEFINE_CLASS ( surround  )

Variable Documentation

const AVOption surround_options[]
static
Initial value:
= {
{ "chl_out", "set output channel layout", OFFSET(out_channel_layout_str), AV_OPT_TYPE_STRING, {.str="5.1"}, 0, 0, FLAGS },
{ "chl_in", "set input channel layout", OFFSET(in_channel_layout_str), AV_OPT_TYPE_STRING, {.str="stereo"},0, 0, FLAGS },
{ "level_in", "set input level", OFFSET(level_in), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ "level_out", "set output level", OFFSET(level_out), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ "lfe", "output LFE", OFFSET(output_lfe), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
{ "lfe_low", "LFE low cut off", OFFSET(lowcutf), AV_OPT_TYPE_INT, {.i64=128}, 0, 256, FLAGS },
{ "lfe_high", "LFE high cut off", OFFSET(highcutf), AV_OPT_TYPE_INT, {.i64=256}, 0, 512, FLAGS },
{ "fc_in", "set front center channel input level", OFFSET(fc_in), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ "fc_out", "set front center channel output level", OFFSET(fc_out), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ "lfe_in", "set lfe channel input level", OFFSET(lfe_in), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ "lfe_out", "set lfe channel output level", OFFSET(lfe_out), AV_OPT_TYPE_FLOAT, {.dbl=1}, 0, 10, FLAGS },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: af_surround.c:1214
#define FLAGS
Definition: af_surround.c:1215

Definition at line 1217 of file af_surround.c.

const AVFilterPad inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame,
.config_props = config_input,
},
{ NULL }
}
#define NULL
Definition: coverity.c:32
static int config_input(AVFilterLink *inlink)
Definition: af_surround.c:143
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
Definition: af_surround.c:1147

Definition at line 1234 of file af_surround.c.

const AVFilterPad 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_surround.c:185

Definition at line 1244 of file af_surround.c.

AVFilter ff_af_surround
Initial value:
= {
.name = "surround",
.description = NULL_IF_CONFIG_SMALL("Apply audio surround upmix filter."),
.query_formats = query_formats,
.priv_size = sizeof(AudioSurroundContext),
.priv_class = &surround_class,
.init = init,
}
static int init(AVFilterContext *ctx)
Definition: af_surround.c:978
static int query_formats(AVFilterContext *ctx)
Definition: af_surround.c:105
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_surround.c:1191
static int flags
Definition: log.c:57
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:116
static const AVFilterPad outputs[]
Definition: af_surround.c:1244
static const AVFilterPad inputs[]
Definition: af_surround.c:1234

Definition at line 1253 of file af_surround.c.