FFmpeg
Data Structures | Macros | Functions | Variables
af_surround.c File Reference
#include "libavutil/avassert.h"
#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 "filters.h"
#include "internal.h"
#include "formats.h"
#include "window_func.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_transform (float *x, float *y, float angle)
 
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, int lfe_mode)
 
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_6_0 (AVFilterContext *ctx, float l_phase, float r_phase, float c_phase, float mag_total, float x, float y, int n)
 
static void upmix_6_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_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_0_side (AVFilterContext *ctx, float c_re, float c_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 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_0_side (AVFilterContext *ctx)
 
static void filter_5_1_side (AVFilterContext *ctx)
 
static void filter_5_1_back (AVFilterContext *ctx)
 
static av_cold 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)
 
static int activate (AVFilterContext *ctx)
 
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 []
 
const AVFilter ff_af_surround
 

Macro Definition Documentation

◆ OFFSET

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

Definition at line 1687 of file af_surround.c.

◆ FLAGS

Definition at line 1688 of file af_surround.c.

Function Documentation

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 159 of file af_surround.c.

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 194 of file af_surround.c.

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 257 of file af_surround.c.

◆ stereo_transform()

static void stereo_transform ( float *  x,
float *  y,
float  angle 
)
static

Definition at line 314 of file af_surround.c.

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

◆ stereo_position()

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

◆ get_lfe()

static void get_lfe ( int  output_lfe,
int  n,
float  lowcut,
float  highcut,
float *  lfe_mag,
float *  mag_total,
int  lfe_mode 
)
inlinestatic

◆ upmix_1_0()

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 355 of file af_surround.c.

Referenced by init().

◆ upmix_stereo()

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 374 of file af_surround.c.

Referenced by init().

◆ upmix_2_1()

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 398 of file af_surround.c.

Referenced by init().

◆ upmix_3_0()

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 428 of file af_surround.c.

Referenced by init().

◆ upmix_3_1()

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 457 of file af_surround.c.

Referenced by init().

◆ upmix_3_1_surround()

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 492 of file af_surround.c.

Referenced by init().

◆ upmix_4_0()

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 527 of file af_surround.c.

Referenced by init().

◆ upmix_4_1()

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 561 of file af_surround.c.

Referenced by init().

◆ upmix_5_0_back()

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 601 of file af_surround.c.

Referenced by init().

◆ upmix_5_1_back()

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 640 of file af_surround.c.

Referenced by init().

◆ upmix_6_0()

static void upmix_6_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 685 of file af_surround.c.

Referenced by init().

◆ upmix_6_1()

static void upmix_6_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 729 of file af_surround.c.

Referenced by init().

◆ upmix_5_1_back_surround()

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 779 of file af_surround.c.

Referenced by init().

◆ upmix_5_1_back_2_1()

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 825 of file af_surround.c.

Referenced by init().

◆ upmix_7_0()

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 871 of file af_surround.c.

Referenced by init().

◆ upmix_7_1()

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 921 of file af_surround.c.

Referenced by init().

◆ upmix_7_1_5_0_side()

static void upmix_7_1_5_0_side ( AVFilterContext ctx,
float  c_re,
float  c_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 977 of file af_surround.c.

Referenced by init().

◆ upmix_7_1_5_1()

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 1037 of file af_surround.c.

Referenced by init().

◆ filter_stereo()

static void filter_stereo ( AVFilterContext ctx)
static

Definition at line 1093 of file af_surround.c.

Referenced by init().

◆ filter_surround()

static void filter_surround ( AVFilterContext ctx)
static

Definition at line 1126 of file af_surround.c.

Referenced by init().

◆ filter_2_1()

static void filter_2_1 ( AVFilterContext ctx)
static

Definition at line 1162 of file af_surround.c.

Referenced by init().

◆ filter_5_0_side()

static void filter_5_0_side ( AVFilterContext ctx)
static

Definition at line 1197 of file af_surround.c.

Referenced by init().

◆ filter_5_1_side()

static void filter_5_1_side ( AVFilterContext ctx)
static

Definition at line 1254 of file af_surround.c.

Referenced by init().

◆ filter_5_1_back()

static void filter_5_1_back ( AVFilterContext ctx)
static

Definition at line 1313 of file af_surround.c.

Referenced by init().

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 1372 of file af_surround.c.

◆ fft_channel()

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

Definition at line 1528 of file af_surround.c.

Referenced by filter_frame().

◆ ifft_channel()

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

Definition at line 1547 of file af_surround.c.

Referenced by filter_frame().

◆ filter_frame()

static int filter_frame ( AVFilterLink inlink)
static

Definition at line 1577 of file af_surround.c.

Referenced by activate().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 1607 of file af_surround.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 1664 of file af_surround.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( surround  )

Variable Documentation

◆ surround_options

const AVOption surround_options[]
static

Definition at line 1690 of file af_surround.c.

◆ inputs

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

Definition at line 1746 of file af_surround.c.

◆ outputs

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

Definition at line 1754 of file af_surround.c.

◆ ff_af_surround

const AVFilter ff_af_surround
Initial value:
= {
.name = "surround",
.description = NULL_IF_CONFIG_SMALL("Apply audio surround upmix filter."),
.priv_size = sizeof(AudioSurroundContext),
.priv_class = &surround_class,
.init = init,
}

Definition at line 1762 of file af_surround.c.

AudioSurroundContext
Definition: af_surround.c:33
FILTER_QUERY_FUNC
#define FILTER_QUERY_FUNC(func)
Definition: internal.h:168
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_surround.c:1664
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: af_surround.c:159
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
outputs
static const AVFilterPad outputs[]
Definition: af_surround.c:1754
FILTER_INPUTS
#define FILTER_INPUTS(array)
Definition: internal.h:191
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
activate
static int activate(AVFilterContext *ctx)
Definition: af_surround.c:1607
config_output
static int config_output(AVFilterLink *outlink)
Definition: af_surround.c:257
config_input
static int config_input(AVFilterLink *inlink)
Definition: af_surround.c:194
AVFILTER_FLAG_SLICE_THREADS
#define AVFILTER_FLAG_SLICE_THREADS
The filter supports multithreading by splitting frames into multiple parts and processing them concur...
Definition: avfilter.h:121
FILTER_OUTPUTS
#define FILTER_OUTPUTS(array)
Definition: internal.h:192
init
static av_cold int init(AVFilterContext *ctx)
Definition: af_surround.c:1372
inputs
static const AVFilterPad inputs[]
Definition: af_surround.c:1746