FFmpeg
Data Structures | Macros | Functions | Variables
af_headphone.c File Reference
#include <math.h>
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/float_dsp.h"
#include "libavutil/intmath.h"
#include "libavutil/opt.h"
#include "libavcodec/avfft.h"
#include "avfilter.h"
#include "filters.h"
#include "internal.h"
#include "audio.h"

Go to the source code of this file.

Data Structures

struct  HeadphoneContext
 
struct  HeadphoneContext::headphone_inputs
 
struct  ThreadData
 Used for passing data between threads. More...
 

Macros

#define TIME_DOMAIN   0
 
#define FREQUENCY_DOMAIN   1
 
#define HRIR_STEREO   0
 
#define HRIR_MULTI   1
 
#define OFFSET(x)   offsetof(HeadphoneContext, x)
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
 

Functions

static int parse_channel_name (HeadphoneContext *s, int x, char **arg, int *rchannel, char *buf)
 
static void parse_map (AVFilterContext *ctx)
 
static int headphone_convolute (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int headphone_fast_convolute (AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 
static int check_ir (AVFilterLink *inlink, int input_number)
 
static int headphone_frame (HeadphoneContext *s, AVFrame *in, AVFilterLink *outlink)
 
static int convert_coeffs (AVFilterContext *ctx, AVFilterLink *inlink)
 
static int activate (AVFilterContext *ctx)
 
static int query_formats (AVFilterContext *ctx)
 
static int config_input (AVFilterLink *inlink)
 
static av_cold int init (AVFilterContext *ctx)
 
static int config_output (AVFilterLink *outlink)
 
static av_cold void uninit (AVFilterContext *ctx)
 
 AVFILTER_DEFINE_CLASS (headphone)
 

Variables

static const AVOption headphone_options []
 
static const AVFilterPad outputs []
 
AVFilter ff_af_headphone
 

Macro Definition Documentation

◆ TIME_DOMAIN

#define TIME_DOMAIN   0

Definition at line 35 of file af_headphone.c.

◆ FREQUENCY_DOMAIN

#define FREQUENCY_DOMAIN   1

Definition at line 36 of file af_headphone.c.

◆ HRIR_STEREO

#define HRIR_STEREO   0

Definition at line 38 of file af_headphone.c.

◆ HRIR_MULTI

#define HRIR_MULTI   1

Definition at line 39 of file af_headphone.c.

◆ OFFSET

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

Definition at line 844 of file af_headphone.c.

◆ FLAGS

Definition at line 845 of file af_headphone.c.

Function Documentation

◆ parse_channel_name()

static int parse_channel_name ( HeadphoneContext s,
int  x,
char **  arg,
int rchannel,
char *  buf 
)
static

Definition at line 91 of file af_headphone.c.

Referenced by parse_map().

◆ parse_map()

static void parse_map ( AVFilterContext ctx)
static

Definition at line 115 of file af_headphone.c.

Referenced by init().

◆ headphone_convolute()

static int headphone_convolute ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 165 of file af_headphone.c.

Referenced by headphone_frame().

◆ headphone_fast_convolute()

static int headphone_fast_convolute ( AVFilterContext ctx,
void *  arg,
int  jobnr,
int  nb_jobs 
)
static

Definition at line 239 of file af_headphone.c.

Referenced by headphone_frame().

◆ check_ir()

static int check_ir ( AVFilterLink inlink,
int  input_number 
)
static

Definition at line 336 of file af_headphone.c.

Referenced by activate().

◆ headphone_frame()

static int headphone_frame ( HeadphoneContext s,
AVFrame in,
AVFilterLink outlink 
)
static

Definition at line 354 of file af_headphone.c.

Referenced by activate().

◆ convert_coeffs()

static int convert_coeffs ( AVFilterContext ctx,
AVFilterLink inlink 
)
static

Definition at line 390 of file af_headphone.c.

Referenced by activate().

◆ activate()

static int activate ( AVFilterContext ctx)
static

Definition at line 617 of file af_headphone.c.

◆ query_formats()

static int query_formats ( AVFilterContext ctx)
static

Definition at line 681 of file af_headphone.c.

◆ config_input()

static int config_input ( AVFilterLink inlink)
static

Definition at line 734 of file af_headphone.c.

Referenced by init().

◆ init()

static av_cold int init ( AVFilterContext ctx)
static

Definition at line 747 of file af_headphone.c.

◆ config_output()

static int config_output ( AVFilterLink outlink)
static

Definition at line 792 of file af_headphone.c.

◆ uninit()

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 812 of file af_headphone.c.

◆ AVFILTER_DEFINE_CLASS()

AVFILTER_DEFINE_CLASS ( headphone  )

Variable Documentation

◆ headphone_options

const AVOption headphone_options[]
static
Initial value:
= {
{ "map", "set channels convolution mappings", OFFSET(map), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
{ "gain", "set gain in dB", OFFSET(gain), AV_OPT_TYPE_FLOAT, {.dbl=0}, -20, 40, .flags = FLAGS },
{ "lfe", "set lfe gain in dB", OFFSET(lfe_gain), AV_OPT_TYPE_FLOAT, {.dbl=0}, -20, 40, .flags = FLAGS },
{ "type", "set processing", OFFSET(type), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, .flags = FLAGS, "type" },
{ "time", "time domain", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, .flags = FLAGS, "type" },
{ "freq", "frequency domain", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, .flags = FLAGS, "type" },
{ "size", "set frame size", OFFSET(size), AV_OPT_TYPE_INT, {.i64=1024},1024,96000, .flags = FLAGS },
{ "hrir", "set hrir format", OFFSET(hrir_fmt), AV_OPT_TYPE_INT, {.i64=HRIR_STEREO}, 0, 1, .flags = FLAGS, "hrir" },
{ "stereo", "hrir files have exactly 2 channels", 0, AV_OPT_TYPE_CONST, {.i64=HRIR_STEREO}, 0, 0, .flags = FLAGS, "hrir" },
{ "multich", "single multichannel hrir file", 0, AV_OPT_TYPE_CONST, {.i64=HRIR_MULTI}, 0, 0, .flags = FLAGS, "hrir" },
{ NULL }
}

Definition at line 847 of file af_headphone.c.

◆ outputs

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

Definition at line 863 of file af_headphone.c.

◆ ff_af_headphone

AVFilter ff_af_headphone
Initial value:
= {
.name = "headphone",
.description = NULL_IF_CONFIG_SMALL("Apply headphone binaural spatialization with HRTFs in additional streams."),
.priv_size = sizeof(HeadphoneContext),
.priv_class = &headphone_class,
.init = init,
}

Definition at line 872 of file af_headphone.c.

activate
static int activate(AVFilterContext *ctx)
Definition: af_headphone.c:617
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
AVFILTER_FLAG_DYNAMIC_INPUTS
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
OFFSET
#define OFFSET(x)
Definition: af_headphone.c:844
HRIR_MULTI
#define HRIR_MULTI
Definition: af_headphone.c:39
HRIR_STEREO
#define HRIR_STEREO
Definition: af_headphone.c:38
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
uninit
static av_cold void uninit(AVFilterContext *ctx)
Definition: af_headphone.c:812
NULL
#define NULL
Definition: coverity.c:32
FLAGS
#define FLAGS
Definition: af_headphone.c:845
outputs
static const AVFilterPad outputs[]
Definition: af_headphone.c:863
inputs
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several inputs
Definition: filter_design.txt:243
query_formats
static int query_formats(AVFilterContext *ctx)
Definition: af_headphone.c:681
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:188
size
int size
Definition: twinvq_data.h:11134
HeadphoneContext
Definition: af_headphone.c:41
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Definition: opt.h:226
init
static av_cold int init(AVFilterContext *ctx)
Definition: af_headphone.c:747
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:223
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:116
map
const VDPAUPixFmtMap * map
Definition: hwcontext_vdpau.c:85
flags
#define flags(name, subs,...)
Definition: cbs_av1.c:565
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Definition: opt.h:227
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Definition: opt.h:232
config_output
static int config_output(AVFilterLink *outlink)
Definition: af_headphone.c:792