FFmpeg
Classes | Macros | Typedefs | Functions | Variables
af_lv2.c File Reference

LV2 wrapper. More...

#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/avassert.h"
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"

Classes

struct  URITable
 
struct  LV2Context
 

Macros

#define OFFSET(x)   offsetof(LV2Context, x)
 
#define FLAGS   AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
 

Typedefs

typedef struct URITable URITable
 
typedef struct LV2Context LV2Context
 

Functions

 AVFILTER_DEFINE_CLASS (lv2)
 

Variables

AVFilter ff_af_lv2
 

Detailed Description

LV2 wrapper.

Variable Documentation

§ ff_af_lv2

AVFilter ff_af_lv2
Initial value:
= {
.name = "lv2",
.description = NULL_IF_CONFIG_SMALL("Apply LV2 effect."),
.priv_size = sizeof(LV2Context),
.priv_class = &lv2_class,
.init = init,
.uninit = uninit,
.query_formats = query_formats,
.inputs = 0,
.outputs = lv2_outputs,
}
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
Definition: avfilter.h:105
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: af_lv2.c:44