1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
#include <stdlib.h>
#include <string.h>
#ifndef WIN32
#include "config.h"
#endif
#ifdef ENABLE_NLS
#include <libintl.h>
#endif
#define _ISOC9X_SOURCE 1
#define _ISOC99_SOURCE 1
#define __USE_ISOC99 1
#define __USE_ISOC9X 1
#include <math.h>
#include "ladspa.h"
#ifdef WIN32
#define _WINDOWS_DLL_EXPORT_ __declspec(dllexport)
int bIsFirstTime = 1;
void _init(); // forward declaration
#else
#define _WINDOWS_DLL_EXPORT_
#endif
#line 9 "highpass_iir_1890.xml"
#include "config.h"
#include "util/iir.h"
#define HIGHPASS_IIR_CUTOFF 0
#define HIGHPASS_IIR_STAGES 1
#define HIGHPASS_IIR_INPUT 2
#define HIGHPASS_IIR_OUTPUT 3
static LADSPA_Descriptor *highpass_iirDescriptor = NULL;
typedef struct {
LADSPA_Data *cutoff;
LADSPA_Data *stages;
LADSPA_Data *input;
LADSPA_Data *output;
iir_stage_t* gt;
iirf_t* iirf;
long sample_rate;
LADSPA_Data run_adding_gain;
} Highpass_iir;
_WINDOWS_DLL_EXPORT_
const LADSPA_Descriptor *ladspa_descriptor(unsigned long index) {
#ifdef WIN32
if (bIsFirstTime) {
_init();
bIsFirstTime = 0;
}
#endif
switch (index) {
case 0:
return highpass_iirDescriptor;
default:
return NULL;
}
}
static void activateHighpass_iir(LADSPA_Handle instance) {
Highpass_iir *plugin_data = (Highpass_iir *)instance;
iir_stage_t*gt = plugin_data->gt;
iirf_t*iirf = plugin_data->iirf;
long sample_rate = plugin_data->sample_rate;
#line 32 "highpass_iir_1890.xml"
gt = init_iir_stage(IIR_STAGE_HIGHPASS,10,3,2);
iirf = init_iirf_t(gt);
chebyshev(iirf, gt, 2*CLAMP((int)(*(plugin_data->stages)),1,10), IIR_STAGE_HIGHPASS, *(plugin_data->cutoff)/(float)sample_rate, 0.5f);
plugin_data->gt = gt;
plugin_data->iirf = iirf;
plugin_data->sample_rate = sample_rate;
}
static void cleanupHighpass_iir(LADSPA_Handle instance) {
#line 38 "highpass_iir_1890.xml"
Highpass_iir *plugin_data = (Highpass_iir *)instance;
free_iirf_t(plugin_data->iirf, plugin_data->gt);
free_iir_stage(plugin_data->gt);
free(instance);
}
static void connectPortHighpass_iir(
LADSPA_Handle instance,
unsigned long port,
LADSPA_Data *data) {
Highpass_iir *plugin;
plugin = (Highpass_iir *)instance;
switch (port) {
case HIGHPASS_IIR_CUTOFF:
plugin->cutoff = data;
break;
case HIGHPASS_IIR_STAGES:
plugin->stages = data;
break;
case HIGHPASS_IIR_INPUT:
plugin->input = data;
break;
case HIGHPASS_IIR_OUTPUT:
plugin->output = data;
break;
}
}
static LADSPA_Handle instantiateHighpass_iir(
const LADSPA_Descriptor *descriptor,
unsigned long s_rate) {
Highpass_iir *plugin_data = (Highpass_iir *)malloc(sizeof(Highpass_iir));
iir_stage_t*gt = NULL;
iirf_t*iirf = NULL;
long sample_rate;
#line 24 "highpass_iir_1890.xml"
sample_rate = s_rate;
plugin_data->gt = gt;
plugin_data->iirf = iirf;
plugin_data->sample_rate = sample_rate;
return (LADSPA_Handle)plugin_data;
}
#undef buffer_write
#undef RUN_ADDING
#undef RUN_REPLACING
#define buffer_write(b, v) (b = v)
#define RUN_ADDING 0
#define RUN_REPLACING 1
static void runHighpass_iir(LADSPA_Handle instance, unsigned long sample_count) {
Highpass_iir *plugin_data = (Highpass_iir *)instance;
/* Cutoff Frequency (float value) */
const LADSPA_Data cutoff = *(plugin_data->cutoff);
/* Stages(2 poles per stage) (float value) */
const LADSPA_Data stages = *(plugin_data->stages);
/* Input (array of floats of length sample_count) */
const LADSPA_Data * const input = plugin_data->input;
/* Output (array of floats of length sample_count) */
LADSPA_Data * const output = plugin_data->output;
iir_stage_t* gt = plugin_data->gt;
iirf_t* iirf = plugin_data->iirf;
long sample_rate = plugin_data->sample_rate;
#line 27 "highpass_iir_1890.xml"
chebyshev(iirf, gt, 2*CLAMP((int)stages,1,10), IIR_STAGE_HIGHPASS, cutoff/(float)sample_rate, 0.5f);
iir_process_buffer_ns_5(iirf, gt, input, output, sample_count,RUN_ADDING);
}
#undef buffer_write
#undef RUN_ADDING
#undef RUN_REPLACING
#define buffer_write(b, v) (b += (v) * run_adding_gain)
#define RUN_ADDING 1
#define RUN_REPLACING 0
static void setRunAddingGainHighpass_iir(LADSPA_Handle instance, LADSPA_Data gain) {
((Highpass_iir *)instance)->run_adding_gain = gain;
}
static void runAddingHighpass_iir(LADSPA_Handle instance, unsigned long sample_count) {
Highpass_iir *plugin_data = (Highpass_iir *)instance;
LADSPA_Data run_adding_gain = plugin_data->run_adding_gain;
/* Cutoff Frequency (float value) */
const LADSPA_Data cutoff = *(plugin_data->cutoff);
/* Stages(2 poles per stage) (float value) */
const LADSPA_Data stages = *(plugin_data->stages);
/* Input (array of floats of length sample_count) */
const LADSPA_Data * const input = plugin_data->input;
/* Output (array of floats of length sample_count) */
LADSPA_Data * const output = plugin_data->output;
iir_stage_t* gt = plugin_data->gt;
iirf_t* iirf = plugin_data->iirf;
long sample_rate = plugin_data->sample_rate;
#line 27 "highpass_iir_1890.xml"
chebyshev(iirf, gt, 2*CLAMP((int)stages,1,10), IIR_STAGE_HIGHPASS, cutoff/(float)sample_rate, 0.5f);
iir_process_buffer_ns_5(iirf, gt, input, output, sample_count,RUN_ADDING);
}
void _init() {
char **port_names;
LADSPA_PortDescriptor *port_descriptors;
LADSPA_PortRangeHint *port_range_hints;
#ifdef ENABLE_NLS
#define D_(s) dgettext(PACKAGE, s)
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, PACKAGE_LOCALE_DIR);
#else
#define D_(s) (s)
#endif
highpass_iirDescriptor =
(LADSPA_Descriptor *)malloc(sizeof(LADSPA_Descriptor));
if (highpass_iirDescriptor) {
highpass_iirDescriptor->UniqueID = 1890;
highpass_iirDescriptor->Label = "highpass_iir";
highpass_iirDescriptor->Properties =
LADSPA_PROPERTY_HARD_RT_CAPABLE;
highpass_iirDescriptor->Name =
D_("Glame Highpass Filter");
highpass_iirDescriptor->Maker =
"Alexander Ehlert <mag@glame.de>";
highpass_iirDescriptor->Copyright =
"GPL";
highpass_iirDescriptor->PortCount = 4;
port_descriptors = (LADSPA_PortDescriptor *)calloc(4,
sizeof(LADSPA_PortDescriptor));
highpass_iirDescriptor->PortDescriptors =
(const LADSPA_PortDescriptor *)port_descriptors;
port_range_hints = (LADSPA_PortRangeHint *)calloc(4,
sizeof(LADSPA_PortRangeHint));
highpass_iirDescriptor->PortRangeHints =
(const LADSPA_PortRangeHint *)port_range_hints;
port_names = (char **)calloc(4, sizeof(char*));
highpass_iirDescriptor->PortNames =
(const char **)port_names;
/* Parameters for Cutoff Frequency */
port_descriptors[HIGHPASS_IIR_CUTOFF] =
LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL;
port_names[HIGHPASS_IIR_CUTOFF] =
D_("Cutoff Frequency");
port_range_hints[HIGHPASS_IIR_CUTOFF].HintDescriptor =
LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_LOW | LADSPA_HINT_SAMPLE_RATE | LADSPA_HINT_LOGARITHMIC;
port_range_hints[HIGHPASS_IIR_CUTOFF].LowerBound = 0.0001;
port_range_hints[HIGHPASS_IIR_CUTOFF].UpperBound = 0.45;
/* Parameters for Stages(2 poles per stage) */
port_descriptors[HIGHPASS_IIR_STAGES] =
LADSPA_PORT_INPUT | LADSPA_PORT_CONTROL;
port_names[HIGHPASS_IIR_STAGES] =
D_("Stages(2 poles per stage)");
port_range_hints[HIGHPASS_IIR_STAGES].HintDescriptor =
LADSPA_HINT_BOUNDED_BELOW | LADSPA_HINT_BOUNDED_ABOVE | LADSPA_HINT_DEFAULT_1 | LADSPA_HINT_INTEGER;
port_range_hints[HIGHPASS_IIR_STAGES].LowerBound = 1.0;
port_range_hints[HIGHPASS_IIR_STAGES].UpperBound = 10.0;
/* Parameters for Input */
port_descriptors[HIGHPASS_IIR_INPUT] =
LADSPA_PORT_INPUT | LADSPA_PORT_AUDIO;
port_names[HIGHPASS_IIR_INPUT] =
D_("Input");
port_range_hints[HIGHPASS_IIR_INPUT].HintDescriptor = 0;
/* Parameters for Output */
port_descriptors[HIGHPASS_IIR_OUTPUT] =
LADSPA_PORT_OUTPUT | LADSPA_PORT_AUDIO;
port_names[HIGHPASS_IIR_OUTPUT] =
D_("Output");
port_range_hints[HIGHPASS_IIR_OUTPUT].HintDescriptor = 0;
highpass_iirDescriptor->activate = activateHighpass_iir;
highpass_iirDescriptor->cleanup = cleanupHighpass_iir;
highpass_iirDescriptor->connect_port = connectPortHighpass_iir;
highpass_iirDescriptor->deactivate = NULL;
highpass_iirDescriptor->instantiate = instantiateHighpass_iir;
highpass_iirDescriptor->run = runHighpass_iir;
highpass_iirDescriptor->run_adding = runAddingHighpass_iir;
highpass_iirDescriptor->set_run_adding_gain = setRunAddingGainHighpass_iir;
}
}
void _fini() {
if (highpass_iirDescriptor) {
free((LADSPA_PortDescriptor *)highpass_iirDescriptor->PortDescriptors);
free((char **)highpass_iirDescriptor->PortNames);
free((LADSPA_PortRangeHint *)highpass_iirDescriptor->PortRangeHints);
free(highpass_iirDescriptor);
}
}
|