|
FFmpeg
|
#include <dlfcn.h>#include <ladspa.h>#include "libavutil/avassert.h"#include "libavutil/avstring.h"#include "libavutil/channel_layout.h"#include "libavutil/fifo.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "audio.h"#include "avfilter.h"#include "filters.h"#include "formats.h"Go to the source code of this file.
Data Structures | |
| struct | MetaItem |
| struct | LADSPAContext |
Macros | |
| #define | OFFSET(x) offsetof(LADSPAContext, x) |
| #define | FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
| AVFILTER_DEFINE_CLASS (ladspa) | |
| static int | find_latency (AVFilterContext *ctx, LADSPAContext *s) |
| static void | print_ctl_info (AVFilterContext *ctx, int level, LADSPAContext *s, int ctl, unsigned long *map, LADSPA_Data *values, int print) |
| static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
| static int | request_frame (AVFilterLink *outlink) |
| static void | set_default_ctl_value (LADSPAContext *s, int ctl, unsigned long *map, LADSPA_Data *values) |
| static int | connect_ports (AVFilterContext *ctx, AVFilterLink *link) |
| static int | config_input (AVFilterLink *inlink) |
| static int | config_output (AVFilterLink *outlink) |
| static void | count_ports (const LADSPA_Descriptor *desc, unsigned long *nb_inputs, unsigned long *nb_outputs) |
| static void * | try_load (const char *dir, const char *soname) |
| static int | set_control (AVFilterContext *ctx, unsigned long port, LADSPA_Data value) |
| static av_cold int | init (AVFilterContext *ctx) |
| static int | query_formats (const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out) |
| static av_cold void | uninit (AVFilterContext *ctx) |
| static int | process_command (AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags) |
Variables | |
| static const AVOption | ladspa_options [] |
| static const AVFilterPad | ladspa_outputs [] |
| const FFFilter | ff_af_ladspa |
LADSPA wrapper
Definition in file af_ladspa.c.
| #define OFFSET | ( | x | ) | offsetof(LADSPAContext, x) |
Definition at line 84 of file af_ladspa.c.
| #define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Definition at line 85 of file af_ladspa.c.
| AVFILTER_DEFINE_CLASS | ( | ladspa | ) |
|
static |
Definition at line 106 of file af_ladspa.c.
Referenced by filter_frame().
|
static |
Definition at line 121 of file af_ladspa.c.
Referenced by filter_frame(), init(), and request_frame().
|
static |
Definition at line 173 of file af_ladspa.c.
Referenced by init(), and request_frame().
|
static |
Definition at line 267 of file af_ladspa.c.
|
static |
Definition at line 314 of file af_ladspa.c.
Referenced by init().
|
static |
Definition at line 351 of file af_ladspa.c.
Referenced by config_input(), and config_output().
|
static |
Definition at line 385 of file af_ladspa.c.
Referenced by init().
|
static |
Definition at line 392 of file af_ladspa.c.
|
static |
Definition at line 419 of file af_ladspa.c.
Referenced by init().
|
static |
Definition at line 438 of file af_ladspa.c.
Referenced by init().
|
static |
Definition at line 451 of file af_ladspa.c.
Referenced by init(), and process_command().
|
static |
Definition at line 485 of file af_ladspa.c.
|
static |
Definition at line 697 of file af_ladspa.c.
|
static |
Definition at line 765 of file af_ladspa.c.
|
static |
Definition at line 792 of file af_ladspa.c.
|
static |
Definition at line 86 of file af_ladspa.c.
|
static |
Definition at line 804 of file af_ladspa.c.
| const FFFilter ff_af_ladspa |
Definition at line 813 of file af_ladspa.c.
1.8.17