28#include <lv2/lv2plug.in/ns/ext/atom/atom.h>
29#include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
93#define OFFSET(x) offsetof(LV2Context, x)
94#define FLAGS AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_FILTERING_PARAM
103 {
"nb_samples",
"set the number of samples per requested frame",
OFFSET(nb_samples),
AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX,
FLAGS },
104 {
"n",
"set the number of samples per requested frame",
OFFSET(nb_samples),
AV_OPT_TYPE_INT, {.i64=1024}, 1, INT_MAX,
FLAGS },
122 for (
i = 0;
i <
table->n_uris;
i++) {
132 const size_t len = strlen(uri);
136 for (
i = 0;
i <
table->n_uris;
i++) {
137 if (!strcmp(
table->uris[
i], uri)) {
144 return table->n_uris;
151 return table->n_uris;
156 return table->n_uris;
163 if (urid > 0 && urid <= table->n_uris) {
164 return table->uris[urid - 1];
173 int ich = 0, och = 0,
i;
175 for (
i = 0;
i <
s->nb_ports;
i++) {
176 const LilvPort *port = lilv_plugin_get_port_by_index(
s->plugin,
i);
178 if (lilv_port_is_a(
s->plugin, port,
s->lv2_AudioPort) ||
179 lilv_port_is_a(
s->plugin, port,
s->lv2_CVPort)) {
180 if (lilv_port_is_a(
s->plugin, port,
s->lv2_InputPort)) {
182 }
else if (lilv_port_is_a(
s->plugin, port,
s->lv2_OutputPort)) {
183 lilv_instance_connect_port(
s->instance,
i,
out->extended_data[och++]);
187 }
else if (lilv_port_is_a(
s->plugin, port,
s->atom_AtomPort)) {
188 if (lilv_port_is_a(
s->plugin, port,
s->lv2_InputPort)) {
189 lilv_instance_connect_port(
s->instance,
i, &
s->seq_in);
191 lilv_instance_connect_port(
s->instance,
i,
s->seq_out);
193 }
else if (lilv_port_is_a(
s->plugin, port,
s->lv2_ControlPort)) {
194 lilv_instance_connect_port(
s->instance,
i, &
s->controls[
i]);
198 s->seq_in[0].atom.size =
sizeof(LV2_Atom_Sequence_Body);
199 s->seq_in[0].atom.type =
uri_table_map(&
s->uri_table, LV2_ATOM__Sequence);
200 s->seq_out->atom.size = 9624;
210 if (!
s->nb_outputs ||
243 if (
s->duration >= 0 && t >=
s->duration)
252 lilv_instance_run(
s->instance,
out->nb_samples);
254 out->sample_rate =
s->sample_rate;
256 s->pts +=
s->nb_samples;
262 { LV2_BUF_SIZE__powerOf2BlockLength,
NULL },
263 { LV2_BUF_SIZE__fixedBlockLength,
NULL },
264 { LV2_BUF_SIZE__boundedBlockLength,
NULL },
271 char *p, *
arg, *saveptr =
NULL;
275 s->map.handle = &
s->uri_table;
277 s->map_feature.URI = LV2_URID_MAP_URI;
278 s->map_feature.data = &
s->map;
279 s->unmap.handle = &
s->uri_table;
281 s->unmap_feature.URI = LV2_URID_UNMAP_URI;
282 s->unmap_feature.data = &
s->unmap;
283 s->features[0] = &
s->map_feature;
284 s->features[1] = &
s->unmap_feature;
289 if (
ctx->nb_inputs) {
294 if (
s->nb_inputs ==
s->nb_outputs) {
305 s->instance = lilv_plugin_instantiate(
s->plugin, sample_rate,
s->features);
307 av_log(
ctx,
AV_LOG_ERROR,
"Failed to instantiate <%s>\n", lilv_node_as_uri(lilv_plugin_get_uri(
s->plugin)));
313 s->controls =
av_calloc(
s->nb_ports,
sizeof(
float));
315 if (!
s->mins || !
s->maxes || !
s->controls)
318 lilv_plugin_get_port_ranges_float(
s->plugin,
s->mins,
s->maxes,
s->controls);
319 s->seq_out =
av_malloc(
sizeof(LV2_Atom_Sequence) + 9624);
323 if (
s->options && !strcmp(
s->options,
"help")) {
324 if (!
s->nb_inputcontrols) {
326 "The '%s' plugin does not have any input controls.\n",
330 "The '%s' plugin has the following input controls:\n",
332 for (
i = 0;
i <
s->nb_ports;
i++) {
333 const LilvPort *port = lilv_plugin_get_port_by_index(
s->plugin,
i);
334 const LilvNode *symbol = lilv_port_get_symbol(
s->plugin, port);
335 LilvNode *
name = lilv_port_get_name(
s->plugin, port);
337 if (lilv_port_is_a(
s->plugin, port,
s->lv2_InputPort) &&
338 lilv_port_is_a(
s->plugin, port,
s->lv2_ControlPort)) {
340 lilv_node_as_string(symbol),
s->mins[
i],
s->maxes[
i],
s->controls[
i],
341 lilv_node_as_string(
name));
344 lilv_node_free(
name);
352 const LilvPort *port;
362 vstr = strstr(
arg,
"=");
371 sym = lilv_new_string(
s->world, str);
372 port = lilv_plugin_get_port_by_symbol(
s->plugin, sym);
377 index = lilv_port_get_index(
s->plugin, port);
383 (lilv_plugin_has_feature(
s->plugin,
s->powerOf2BlockLength) ||
384 lilv_plugin_has_feature(
s->plugin,
s->fixedBlockLength) ||
385 lilv_plugin_has_feature(
s->plugin,
s->boundedBlockLength))) {
391 lilv_instance_activate(
s->instance);
392 s->instance_activated = 1;
400 const LilvPlugins *plugins;
401 const LilvPlugin *plugin;
406 s->world = lilv_world_new();
410 uri = lilv_new_uri(
s->world,
s->plugin_uri);
416 lilv_world_load_all(
s->world);
417 plugins = lilv_world_get_all_plugins(
s->world);
418 plugin = lilv_plugins_get_by_uri(plugins, uri);
427 s->nb_ports = lilv_plugin_get_num_ports(
s->plugin);
429 s->lv2_InputPort = lilv_new_uri(
s->world, LV2_CORE__InputPort);
430 s->lv2_OutputPort = lilv_new_uri(
s->world, LV2_CORE__OutputPort);
431 s->lv2_AudioPort = lilv_new_uri(
s->world, LV2_CORE__AudioPort);
432 s->lv2_ControlPort = lilv_new_uri(
s->world, LV2_CORE__ControlPort);
433 s->lv2_Optional = lilv_new_uri(
s->world, LV2_CORE__connectionOptional);
434 s->atom_AtomPort = lilv_new_uri(
s->world, LV2_ATOM__AtomPort);
435 s->atom_Sequence = lilv_new_uri(
s->world, LV2_ATOM__Sequence);
436 s->urid_map = lilv_new_uri(
s->world, LV2_URID__map);
437 s->powerOf2BlockLength = lilv_new_uri(
s->world, LV2_BUF_SIZE__powerOf2BlockLength);
438 s->fixedBlockLength = lilv_new_uri(
s->world, LV2_BUF_SIZE__fixedBlockLength);
439 s->boundedBlockLength = lilv_new_uri(
s->world, LV2_BUF_SIZE__boundedBlockLength);
441 for (
i = 0;
i <
s->nb_ports;
i++) {
442 const LilvPort *lport = lilv_plugin_get_port_by_index(
s->plugin,
i);
446 is_optional = lilv_port_has_property(
s->plugin, lport,
s->lv2_Optional);
448 if (lilv_port_is_a(
s->plugin, lport,
s->lv2_InputPort)) {
450 }
else if (!lilv_port_is_a(
s->plugin, lport,
s->lv2_OutputPort) && !is_optional) {
454 if (lilv_port_is_a(
s->plugin, lport,
s->lv2_ControlPort)) {
456 s->nb_inputcontrols++;
458 }
else if (lilv_port_is_a(
s->plugin, lport,
s->lv2_AudioPort)) {
502 if (
s->nb_inputs == 2 &&
s->nb_outputs == 2) {
511 if (
s->nb_inputs >= 1) {
522 if (!
s->nb_outputs) {
529 if (
s->nb_outputs >= 1) {
546 char *res,
int res_len,
int flags)
549 const LilvPort *port;
553 sym = lilv_new_string(
s->world, cmd);
554 port = lilv_plugin_get_port_by_symbol(
s->plugin, sym);
559 index = lilv_port_get_index(
s->plugin, port);
560 s->controls[
index] = atof(args);
569 if (
s->instance_activated)
570 lilv_instance_deactivate(
s->instance);
571 lilv_node_free(
s->powerOf2BlockLength);
572 lilv_node_free(
s->fixedBlockLength);
573 lilv_node_free(
s->boundedBlockLength);
574 lilv_node_free(
s->urid_map);
575 lilv_node_free(
s->atom_Sequence);
576 lilv_node_free(
s->atom_AtomPort);
577 lilv_node_free(
s->lv2_Optional);
578 lilv_node_free(
s->lv2_ControlPort);
579 lilv_node_free(
s->lv2_AudioPort);
580 lilv_node_free(
s->lv2_OutputPort);
581 lilv_node_free(
s->lv2_InputPort);
583 lilv_instance_free(
s->instance);
584 lilv_world_free(
s->world);
603 .p.priv_class = &lv2_class,
static enum AVSampleFormat sample_fmts[]
static double val(void *priv, double ch)
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
static int request_frame(AVFilterLink *outlink)
static const AVFilterPad lv2_outputs[]
static const char * uri_table_unmap(LV2_URID_Map_Handle handle, LV2_URID urid)
static void uri_table_init(URITable *table)
static int request_frame(AVFilterLink *outlink)
static const AVOption lv2_options[]
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
static void uri_table_destroy(URITable *table)
static int query_formats(const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out)
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args, char *res, int res_len, int flags)
static av_cold void uninit(AVFilterContext *ctx)
static void connect_ports(AVFilterContext *ctx, AVFrame *in, AVFrame *out)
static int config_output(AVFilterLink *outlink)
static LV2_URID uri_table_map(LV2_URID_Map_Handle handle, const char *uri)
static const LV2_Feature buf_size_features[3]
AVFrame * ff_get_audio_buffer(AVFilterLink *link, int nb_samples)
Request an audio samples buffer with a specific set of permissions.
int ff_append_inpad_free_name(AVFilterContext *f, AVFilterPad *p)
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
int ff_request_frame(AVFilterLink *link)
Request an input frame from the filter at the other end of the link.
Main libavfilter public API header.
char * av_asprintf(const char *fmt,...)
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
Public libavutil channel layout APIs header.
static const uint16_t channel_layouts[7]
static const int sample_rates[]
static int filter_frame(DBEDecodeContext *s, AVFrame *frame)
int(* init)(AVBSFContext *ctx)
@ AV_OPT_TYPE_DURATION
Underlying C type is int64_t.
@ AV_OPT_TYPE_INT
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
#define AVFILTER_FLAG_DYNAMIC_INPUTS
The number of the filter inputs is not determined just by AVFilter.inputs.
#define AV_CHANNEL_LAYOUT_STEREO
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
#define AVERROR_EOF
End of file.
int av_frame_is_writable(AVFrame *frame)
Check if the frame data is writable.
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
Copy only "metadata" fields from src to dst.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_INFO
Standard information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int64_t av_rescale(int64_t a, int64_t b, int64_t c)
Rescale a 64-bit integer with rounding to nearest.
AVSampleFormat
Audio sample formats.
@ AV_SAMPLE_FMT_FLTP
float, planar
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok().
#define AV_TIME_BASE
Internal time base represented as integer.
static av_cold void uninit(AVBitStreamFilterContext *ctx)
static int config_output(AVBitStreamFilterLink *outlink)
#define FILTER_OUTPUTS(array)
static FilterLink * ff_filter_link(AVFilterLink *link)
#define AVFILTER_DEFINE_CLASS(fname)
#define FILTER_QUERY_FUNC2(func)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
void * av_calloc(size_t nmemb, size_t size)
Memory handling functions.
enum MovChannelLayoutTag * layouts
static const uint16_t table[]
An AVChannelLayout holds information about the channel layout of audio data.
Describe the class of an AVClass context structure.
A list of supported channel layouts.
A link between two filters.
AVFilterContext * src
source filter
AVRational time_base
Define the time base used by the PTS of the frames/samples which will pass through this link.
int sample_rate
samples per second
AVChannelLayout ch_layout
channel layout of current buffer (see libavutil/channel_layout.h)
AVFilterContext * dst
dest filter
int format
agreed upon media format
A filter pad used for either input or output.
enum AVMediaType type
AVFilterPad type.
int(* filter_frame)(AVFilterLink *link, AVFrame *frame)
Filtering callback.
const char * name
Pad name.
This structure describes decoded (raw) audio or video data.
int nb_samples
number of audio samples (per channel) described by this frame
uint8_t ** extended_data
pointers to the data planes/channels.
Rational number (pair of numerator and denominator).
Link properties exposed to filter code, but not external callers.
int min_samples
Minimum number of samples to filter at once.
int max_samples
Maximum number of samples to filter at once.
LilvNode * lv2_ControlPort
const LV2_Feature * features[5]
LV2_Atom_Sequence seq_in[2]
LV2_Atom_Sequence * seq_out
LilvNode * boundedBlockLength
LV2_Feature unmap_feature
LilvNode * powerOf2BlockLength
LilvNode * lv2_OutputPort
LilvNode * fixedBlockLength
unsigned nb_inputcontrols
const LilvPlugin * plugin
static AVFormatContext * ctx