FFmpeg
|
#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 (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 |
#define TIME_DOMAIN 0 |
Definition at line 35 of file af_headphone.c.
#define FREQUENCY_DOMAIN 1 |
Definition at line 36 of file af_headphone.c.
#define HRIR_STEREO 0 |
Definition at line 38 of file af_headphone.c.
#define HRIR_MULTI 1 |
Definition at line 39 of file af_headphone.c.
#define OFFSET | ( | x | ) | offsetof(HeadphoneContext, x) |
Definition at line 853 of file af_headphone.c.
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 854 of file af_headphone.c.
Definition at line 91 of file af_headphone.c.
Referenced by parse_map().
|
static |
Definition at line 113 of file af_headphone.c.
Referenced by init().
|
static |
Definition at line 171 of file af_headphone.c.
Referenced by headphone_frame().
|
static |
Definition at line 245 of file af_headphone.c.
Referenced by headphone_frame().
|
static |
Definition at line 342 of file af_headphone.c.
Referenced by activate().
|
static |
Definition at line 360 of file af_headphone.c.
Referenced by activate().
|
static |
Definition at line 396 of file af_headphone.c.
Referenced by activate().
|
static |
Definition at line 626 of file af_headphone.c.
|
static |
Definition at line 694 of file af_headphone.c.
|
static |
Definition at line 746 of file af_headphone.c.
Referenced by init().
|
static |
Definition at line 759 of file af_headphone.c.
|
static |
Definition at line 804 of file af_headphone.c.
|
static |
Definition at line 824 of file af_headphone.c.
AVFILTER_DEFINE_CLASS | ( | headphone | ) |
|
static |
Definition at line 856 of file af_headphone.c.
|
static |
Definition at line 872 of file af_headphone.c.
AVFilter ff_af_headphone |
Definition at line 881 of file af_headphone.c.