/*
An LV2 plugin to calculate the sum of two signals.
Copyright 2011 David Robillard
Copyright 2002 Mike Rawes
This is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This software is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this software. If not, see .
*/
#include
#include "lv2/lv2plug.in/ns/lv2core/lv2.h"
#include "include/lv2_features.h"
#define SUM_INPUT1 0
#define SUM_INPUT2 1
#define SUM_OUTPUT 2
typedef struct {
float* input1;
float* input2;
float* output;
} Sum;
static void
cleanup(LV2_Handle instance)
{
free(instance);
}
static void
connect_port(LV2_Handle instance,
uint32_t port,
void* data)
{
Sum* plugin = (Sum*)instance;
switch (port) {
case SUM_INPUT1:
plugin->input1 = data;
break;
case SUM_INPUT2:
plugin->input2 = data;
break;
case SUM_OUTPUT:
plugin->output = data;
break;
}
}
static LV2_Handle
instantiate(const LV2_Descriptor* descriptor,
double sample_rate,
const char* bundle_path,
const LV2_Feature* const* features)
{
Sum* plugin = (Sum*)malloc(sizeof(Sum));
return (LV2_Handle)plugin;
}
static void
runSum_iaia_oa(LV2_Handle instance,
uint32_t sample_count)
{
Sum* plugin = (Sum*)instance;
/* First Input (array of floats of length sample_count) */
float* input1 = plugin->input1;
/* Second Input (array of floats of length sample_count) */
float* input2 = plugin->input2;
/* Output (array of floats of length sample_count) */
float* output = plugin->output;
float in1;
float in2;
for (uint32_t s = 0; s < sample_count; ++s) {
in1 = input1[s];
in2 = input2[s];
output[s] = in1 + in2;
}
}
static void
runSum_iaic_oa(LV2_Handle instance,
uint32_t sample_count)
{
Sum* plugin = (Sum*)instance;
/* First Input (array of floats of length sample_count) */
float* input1 = plugin->input1;
/* Second Input (float value) */
float input2 = *(plugin->input2);
/* Output (array of floats of length sample_count) */
float* output = plugin->output;
float in1;
for (uint32_t s = 0; s < sample_count; ++s) {
in1 = input1[s];
output[s] = in1 + input2;
}
}
static void
runSum_icic_oc(LV2_Handle instance,
uint32_t sample_count)
{
Sum* plugin = (Sum*)instance;
/* First Input (float value) */
float input1 = *(plugin->input1);
/* Second Input (float value) */
float input2 = *(plugin->input2);
/* Output (pointer to float value) */
float* output = plugin->output;
output[0] = input1 + input2;
}
static const LV2_Descriptor descriptor = {
"http://drobilla.net/plugins/blip/sum",
instantiate,
connect_port,
NULL,
runSum_icic_oc,
NULL,
cleanup,
NULL,
};
LV2_SYMBOL_EXPORT const LV2_Descriptor*
lv2_descriptor(uint32_t index)
{
switch (index) {
case 0: return &descriptor;
default: return NULL;
}
}