/* An LV2 plugin to calculate the product 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/ext/morph/morph.h" #include "lv2/lv2plug.in/ns/lv2core/lv2.h" #include "uris.h" #define PRODUCT_MULTIPLICAND 0 #define PRODUCT_MULTIPLIER 1 #define PRODUCT_PRODUCT 2 typedef struct { float* input1; float* input2; float* output; uint32_t input1_is_cv; uint32_t input2_is_cv; uint32_t output_is_cv; URIs uris; } Product; static void cleanup(LV2_Handle instance) { free(instance); } static void connect_port(LV2_Handle instance, uint32_t port, void* data) { Product* plugin = (Product*)instance; switch (port) { case PRODUCT_MULTIPLICAND: plugin->input1 = data; break; case PRODUCT_MULTIPLIER: plugin->input2 = data; break; case PRODUCT_PRODUCT: plugin->output = data; break; } } static LV2_Morph_Status morph_port(LV2_Handle instance, uint32_t port, LV2_URID type, const LV2_Morph_Property*const* properties) { Product* plugin = (Product*)instance; if (type != plugin->uris.lv2_ControlPort && type != plugin->uris.lv2_CVPort) { return LV2_MORPH_ERR_BAD_TYPE; } switch (port) { case PRODUCT_MULTIPLICAND: plugin->input1_is_cv = (type == plugin->uris.lv2_CVPort); break; case PRODUCT_MULTIPLIER: plugin->input2_is_cv = (type == plugin->uris.lv2_CVPort); break; default: return LV2_MORPH_ERR_BAD_PORT; } plugin->output_is_cv = plugin->input1_is_cv || plugin->input2_is_cv; return LV2_MORPH_SUCCESS; } static LV2_URID port_type(LV2_Handle instance, uint32_t port, LV2_Morph_Property*const* properties) { Product* plugin = (Product*)instance; switch (port) { case PRODUCT_PRODUCT: return (plugin->output_is_cv ? plugin->uris.lv2_CVPort : plugin->uris.lv2_ControlPort); default: return 0; } } static LV2_Handle instantiate(const LV2_Descriptor* descriptor, double sample_rate, const char* bundle_path, const LV2_Feature* const* features) { Product* plugin = (Product*)malloc(sizeof(Product)); if (!plugin) { return NULL; } plugin->input1_is_cv = 0; plugin->input2_is_cv = 0; plugin->output_is_cv = 0; map_uris(&plugin->uris, features); return (LV2_Handle)plugin; } static void run(LV2_Handle instance, uint32_t sample_count) { Product* plugin = (Product*)instance; /* First Input (array of floats of length 1 or sample_count) */ const float* input1 = plugin->input1; /* Second Input (array of floats of length 1 or sample_count) */ const float* input2 = plugin->input2; /* Output (array of floats of length sample_count) */ float* output = plugin->output; if (!plugin->output_is_cv) { /* TODO: Avoid this branch */ sample_count = 1; } for (uint32_t s = 0; s < sample_count; ++s) { const float in1 = input1[s * plugin->input1_is_cv]; const float in2 = input2[s * plugin->input2_is_cv]; output[s] = in1 * in2; } } static const void* extension_data(const char* uri) { static const LV2_Morph_Interface morph = { morph_port, port_type }; if (!strcmp(uri, LV2_MORPH__interface)) { return &morph; } return NULL; } static const LV2_Descriptor descriptor = { "http://drobilla.net/plugins/blop/product", instantiate, connect_port, NULL, run, NULL, cleanup, extension_data, }; LV2_SYMBOL_EXPORT const LV2_Descriptor* lv2_descriptor(uint32_t index) { switch (index) { case 0: return &descriptor; default: return NULL; } }