FFmpeg
|
#include <lilv/lilv.h>
#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
#include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | URITable |
struct | LV2Context |
Macros | |
#define | OFFSET(x) offsetof(LV2Context, x) |
#define | FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
Functions | |
AVFILTER_DEFINE_CLASS (lv2) | |
static void | uri_table_init (URITable *table) |
static void | uri_table_destroy (URITable *table) |
static LV2_URID | uri_table_map (LV2_URID_Map_Handle handle, const char *uri) |
static const char * | uri_table_unmap (LV2_URID_Map_Handle handle, LV2_URID urid) |
static void | connect_ports (LV2Context *s, AVFrame *in, AVFrame *out) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *in) |
static int | request_frame (AVFilterLink *outlink) |
static int | config_output (AVFilterLink *outlink) |
static av_cold int | init (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static av_cold void | uninit (AVFilterContext *ctx) |
Variables | |
static const AVOption | lv2_options [] |
static const LV2_Feature | buf_size_features [3] |
static const AVFilterPad | lv2_outputs [] |
const AVFilter | ff_af_lv2 |
LV2 wrapper
Definition in file af_lv2.c.
#define OFFSET | ( | x | ) | offsetof(LV2Context, x) |
#define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM |
AVFILTER_DEFINE_CLASS | ( | lv2 | ) |
|
static |
Definition at line 109 of file af_lv2.c.
Referenced by config_output().
|
static |
|
static |
Definition at line 126 of file af_lv2.c.
Referenced by config_output(), and connect_ports().
|
static |
Definition at line 156 of file af_lv2.c.
Referenced by config_output().
|
static |
Definition at line 167 of file af_lv2.c.
Referenced by filter_frame(), and request_frame().
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
const AVFilter ff_af_lv2 |