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 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
|
/* Xsynth DSSI software synthesizer plugin
*
* Copyright (C) 2004 Sean Bolton and others.
*
* Portions of this file may have come from Steve Brookes'
* Xsynth, copyright (C) 1999 S. J. Brookes.
* Portions of this file may have come from Peter Hanappe's
* Fluidsynth, copyright (C) 2003 Peter Hanappe and others.
* Portions of this file may have come from Chris Cannam and Steve
* Harris's public domain DSSI example code.
*
* This program 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 2 of
* the License, or (at your option) any later version.
*
* This program 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 program; if not, write to the Free
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307, USA.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <pthread.h>
#include <ladspa.h>
#include "dssi.h"
#include "xsynth_types.h"
#include "xsynth.h"
#include "xsynth_ports.h"
#include "xsynth_synth.h"
#include "xsynth_voice.h"
static LADSPA_Descriptor *xsynth_LADSPA_descriptor = NULL;
static DSSI_Descriptor *xsynth_DSSI_descriptor = NULL;
static void xsynth_cleanup(LADSPA_Handle instance);
static void xsynth_run_synth(LADSPA_Handle instance, unsigned long sample_count,
snd_seq_event_t *events, unsigned long event_count);
// extern float *wavetable;
/* ---- mutual exclusion ---- */
static inline int
dssp_voicelist_mutex_trylock(xsynth_synth_t *synth)
{
int rc;
/* Attempt the mutex lock */
rc = pthread_mutex_trylock(&synth->voicelist_mutex);
if (rc) {
synth->voicelist_mutex_grab_failed = 1;
return rc;
}
/* Clean up if a previous mutex grab failed */
if (synth->voicelist_mutex_grab_failed) {
xsynth_synth_all_voices_off(synth);
synth->voicelist_mutex_grab_failed = 0;
}
return 0;
}
inline int
dssp_voicelist_mutex_lock(xsynth_synth_t *synth)
{
return pthread_mutex_lock(&synth->voicelist_mutex);
}
inline int
dssp_voicelist_mutex_unlock(xsynth_synth_t *synth)
{
return pthread_mutex_unlock(&synth->voicelist_mutex);
}
/* ---- LADSPA interface ---- */
/*
* xsynth_instantiate
*
* implements LADSPA (*instantiate)()
*/
static LADSPA_Handle
xsynth_instantiate(const LADSPA_Descriptor *descriptor, unsigned long sample_rate)
{
xsynth_synth_t *synth = (xsynth_synth_t *)calloc(1, sizeof(xsynth_synth_t));
int i;
if (!synth) return NULL;
for (i = 0; i < XSYNTH_MAX_POLYPHONY; i++) {
synth->voice[i] = xsynth_voice_new(synth);
if (!synth->voice[i]) {
// XDB_MESSAGE(-1, " xsynth_instantiate: out of memory!\n");
xsynth_cleanup(synth);
return NULL;
}
}
if (!(synth->patches = (xsynth_patch_t *)malloc(128 * sizeof(xsynth_patch_t)))) {
XDB_MESSAGE(-1, " xsynth_instantiate: out of memory!\n");
xsynth_cleanup(synth);
return NULL;
}
/* do any per-instance one-time initialization here */
synth->sample_rate = sample_rate;
synth->deltat = 1.0f / (float)synth->sample_rate;
synth->polyphony = XSYNTH_DEFAULT_POLYPHONY;
synth->voices = XSYNTH_DEFAULT_POLYPHONY;
synth->monophonic = 0;
synth->glide = 0;
synth->last_noteon_pitch = 0.0f;
pthread_mutex_init(&synth->voicelist_mutex, NULL);
synth->voicelist_mutex_grab_failed = 0;
pthread_mutex_init(&synth->patches_mutex, NULL);
synth->pending_program_change = -1;
synth->current_program = -1;
xsynth_data_friendly_patches(synth);
xsynth_synth_init_controls(synth);
return (LADSPA_Handle)synth;
}
/*
* xsynth_connect_port
*
* implements LADSPA (*connect_port)()
*/
static void
xsynth_connect_port(LADSPA_Handle instance, unsigned long port, LADSPA_Data *data)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
switch (port) {
case XSYNTH_PORT_OUTPUT: synth->output = data; break;
case XSYNTH_PORT_OSC1_COARSE: synth->osc1_pitch = data; break;
case XSYNTH_PORT_OSC1_WAVEA: synth->osc1_wavea = data; break;
case XSYNTH_PORT_OSC1_WAVEB: synth->osc1_waveb = data; break;
case XSYNTH_PORT_OSC2_COARSE: synth->osc2_pitch = data; break;
case XSYNTH_PORT_OSC2_WAVEA: synth->osc2_wavea = data; break;
case XSYNTH_PORT_OSC2_WAVEB: synth->osc2_waveb = data; break;
case XSYNTH_PORT_OSC_BALANCE: synth->osc_balance = data; break;
case XSYNTH_PORT_LFO_FREQUENCY: synth->lfo_frequency = data; break;
case XSYNTH_PORT_LFO_WAVEFORM: synth->lfo_waveform = data; break;
case XSYNTH_PORT_LFO_AMOUNT_O: synth->lfo_amount_o = data; break;
case XSYNTH_PORT_LFO_AMOUNT_F: synth->lfo_amount_f = data; break;
case XSYNTH_PORT_EG1_ATTACK_TIME: synth->eg1_attack_time = data; break;
case XSYNTH_PORT_EG1_DECAY_TIME: synth->eg1_decay_time = data; break;
case XSYNTH_PORT_EG1_SUSTAIN_LEVEL: synth->eg1_sustain_level = data; break;
case XSYNTH_PORT_EG1_RELEASE_TIME: synth->eg1_release_time = data; break;
case XSYNTH_PORT_EG1_VEL_SENS: synth->eg1_vel_sens = data; break;
case XSYNTH_PORT_EG1_AMOUNT_O: synth->eg1_amount_o = data; break;
case XSYNTH_PORT_EG1_AMOUNT_F: synth->eg1_amount_f = data; break;
case XSYNTH_PORT_EG2_ATTACK_TIME: synth->eg2_attack_time = data; break;
case XSYNTH_PORT_EG2_DECAY_TIME: synth->eg2_decay_time = data; break;
case XSYNTH_PORT_EG2_SUSTAIN_LEVEL: synth->eg2_sustain_level = data; break;
case XSYNTH_PORT_EG2_RELEASE_TIME: synth->eg2_release_time = data; break;
case XSYNTH_PORT_EG2_VEL_SENS: synth->eg2_vel_sens = data; break;
case XSYNTH_PORT_EG2_AMOUNT_O: synth->eg2_amount_o = data; break;
case XSYNTH_PORT_EG2_AMOUNT_F: synth->eg2_amount_f = data; break;
case XSYNTH_PORT_VCF_CUTOFF: synth->vcf_cutoff = data; break;
case XSYNTH_PORT_VCF_QRES: synth->vcf_qres = data; break;
case XSYNTH_PORT_VCF_MODE: synth->vcf_mode = data; break;
case XSYNTH_PORT_GLIDE_TIME: synth->glide_time = data; break;
case XSYNTH_PORT_VOLUME: synth->volume = data; break;
case XSYNTH_PORT_TUNING: synth->tuning = data; break;
default:
break;
}
}
/*
* xsynth_activate
*
* implements LADSPA (*activate)()
*/
static void
xsynth_activate(LADSPA_Handle instance)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
synth->nugget_remains = 0;
synth->note_id = 0;
xsynth_synth_all_voices_off(synth);
}
/*
* xsynth_ladspa_run_wrapper
*
* implements LADSPA (*run)() by calling xsynth_run_synth() with no events
*/
static void
xsynth_ladspa_run_wrapper(LADSPA_Handle instance, unsigned long sample_count)
{
xsynth_run_synth(instance, sample_count, NULL, 0);
}
// optional:
// void (*run_adding)(LADSPA_Handle Instance,
// unsigned long SampleCount);
// void (*set_run_adding_gain)(LADSPA_Handle Instance,
// LADSPA_Data Gain);
/*
* xsynth_deactivate
*
* implements LADSPA (*deactivate)()
*/
void
xsynth_deactivate(LADSPA_Handle instance)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
xsynth_synth_all_voices_off(synth); /* stop all sounds immediately */
}
/*
* xsynth_cleanup
*
* implements LADSPA (*cleanup)()
*/
static void
xsynth_cleanup(LADSPA_Handle instance)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
int i;
for (i = 0; i < XSYNTH_MAX_POLYPHONY; i++)
if (synth->voice[i]) free(synth->voice[i]);
if (synth->patches) free(synth->patches);
free(synth);
}
/* ---- DSSI interface ---- */
/*
* dssi_configure_message
*/
char *
dssi_configure_message(const char *fmt, ...)
{
va_list args;
char buffer[256];
va_start(args, fmt);
vsnprintf(buffer, 256, fmt, args);
va_end(args);
return strdup(buffer);
}
/*
* xsynth_configure
*
* implements DSSI (*configure)()
*/
char *
xsynth_configure(LADSPA_Handle instance, const char *key, const char *value)
{
XDB_MESSAGE(XDB_DSSI, " xsynth_configure called with '%s' and '%s'\n", key, value);
if (strlen(key) == 8 && !strncmp(key, "patches", 7)) {
return xsynth_synth_handle_patches((xsynth_synth_t *)instance, key, value);
} else if (!strcmp(key, "polyphony")) {
return xsynth_synth_handle_polyphony((xsynth_synth_t *)instance, value);
} else if (!strcmp(key, "monophonic")) {
return xsynth_synth_handle_monophonic((xsynth_synth_t *)instance, value);
} else if (!strcmp(key, "glide")) {
return xsynth_synth_handle_glide((xsynth_synth_t *)instance, value);
} else if (!strcmp(key, "bendrange")) {
return xsynth_synth_handle_bendrange((xsynth_synth_t *)instance, value);
} else if (!strcmp(key, DSSI_PROJECT_DIRECTORY_KEY)) {
return NULL; /* plugin has no use for project directory key, ignore it */
} else if (!strcmp(key, "load")) {
return dssi_configure_message("warning: host sent obsolete 'load' key with filename '%s'", value);
}
return strdup("error: unrecognized configure key");
}
/*
* xsynth_get_program
*
* implements DSSI (*get_program)()
*/
const DSSI_Program_Descriptor *
xsynth_get_program(LADSPA_Handle instance, unsigned long index)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
static DSSI_Program_Descriptor pd;
XDB_MESSAGE(XDB_DSSI, " xsynth_get_program called with %lu\n", index);
if (index < 128) {
xsynth_synth_set_program_descriptor(synth, &pd, 0, index);
return &pd;
}
return NULL;
}
/*
* xsynth_select_program
*
* implements DSSI (*select_program)()
*/
void
xsynth_select_program(LADSPA_Handle handle, unsigned long bank,
unsigned long program)
{
xsynth_synth_t *synth = (xsynth_synth_t *)handle;
XDB_MESSAGE(XDB_DSSI, " xsynth_select_program called with %lu and %lu\n", bank, program);
/* ignore invalid program requests */
if (bank || program >= 128)
return;
/* Attempt the patch mutex, return if lock fails. */
if (pthread_mutex_trylock(&synth->patches_mutex)) {
synth->pending_program_change = program;
return;
}
xsynth_synth_select_program(synth, bank, program);
pthread_mutex_unlock(&synth->patches_mutex);
}
/*
* dssp_handle_pending_program_change
*/
static inline void
dssp_handle_pending_program_change(xsynth_synth_t *synth)
{
/* Attempt the patch mutex, return if lock fails. */
if (pthread_mutex_trylock(&synth->patches_mutex))
return;
xsynth_synth_select_program(synth, 0, synth->pending_program_change);
synth->pending_program_change = -1;
pthread_mutex_unlock(&synth->patches_mutex);
}
/*
* xsynth_get_midi_controller
*
* implements DSSI (*get_midi_controller_for_port)()
*/
int
xsynth_get_midi_controller(LADSPA_Handle instance, unsigned long port)
{
XDB_MESSAGE(XDB_DSSI, " xsynth_get_midi_controller called for port %lu\n", port);
switch (port) {
case XSYNTH_PORT_GLIDE_TIME:
return DSSI_CC(MIDI_CTL_MSB_PORTAMENTO_TIME);
case XSYNTH_PORT_OSC_BALANCE:
return DSSI_CC(MIDI_CTL_MSB_BALANCE);
default:
break;
}
return DSSI_NONE;
}
/*
* xsynth_handle_event
*/
static inline void
xsynth_handle_event(xsynth_synth_t *synth, snd_seq_event_t *event)
{
XDB_MESSAGE(XDB_DSSI, " xsynth_handle_event called with event type %d\n", event->type);
switch (event->type) {
case SND_SEQ_EVENT_NOTEOFF:
xsynth_synth_note_off(synth, event->data.note.note, event->data.note.velocity);
break;
case SND_SEQ_EVENT_NOTEON:
if (event->data.note.velocity > 0)
xsynth_synth_note_on(synth, event->data.note.note, event->data.note.velocity);
else
xsynth_synth_note_off(synth, event->data.note.note, 64); /* shouldn't happen, but... */
break;
case SND_SEQ_EVENT_KEYPRESS:
xsynth_synth_key_pressure(synth, event->data.note.note, event->data.note.velocity);
break;
case SND_SEQ_EVENT_CONTROLLER:
xsynth_synth_control_change(synth, event->data.control.param, event->data.control.value);
break;
case SND_SEQ_EVENT_CHANPRESS:
xsynth_synth_channel_pressure(synth, event->data.control.value);
break;
case SND_SEQ_EVENT_PITCHBEND:
xsynth_synth_pitch_bend(synth, event->data.control.value);
break;
/* SND_SEQ_EVENT_PGMCHANGE - shouldn't happen */
/* SND_SEQ_EVENT_SYSEX - shouldn't happen */
/* SND_SEQ_EVENT_CONTROL14? */
/* SND_SEQ_EVENT_NONREGPARAM? */
/* SND_SEQ_EVENT_REGPARAM? */
default:
break;
}
}
/*
* xsynth_run_synth
*
* implements DSSI (*run_synth)()
*/
static void
xsynth_run_synth(LADSPA_Handle instance, unsigned long sample_count,
snd_seq_event_t *events, unsigned long event_count)
{
xsynth_synth_t *synth = (xsynth_synth_t *)instance;
unsigned long samples_done = 0;
unsigned long event_index = 0;
unsigned long burst_size;
/* attempt the mutex, return only silence if lock fails. */
if (dssp_voicelist_mutex_trylock(synth)) {
memset(synth->output, 0, sizeof(LADSPA_Data) * sample_count);
return;
}
if (synth->pending_program_change > -1)
dssp_handle_pending_program_change(synth);
while (samples_done < sample_count) {
if (!synth->nugget_remains)
synth->nugget_remains = XSYNTH_NUGGET_SIZE;
/* process any ready events */
while (event_index < event_count
&& samples_done == events[event_index].time.tick) {
xsynth_handle_event(synth, &events[event_index]);
event_index++;
}
/* calculate the sample count (burst_size) for the next
* xsynth_voice_render() call to be the smallest of:
* - control calculation quantization size (XSYNTH_NUGGET_SIZE, in
* samples)
* - the number of samples remaining in an already-begun nugget
* (synth->nugget_remains)
* - the number of samples until the next event is ready
* - the number of samples left in this run
*/
burst_size = XSYNTH_NUGGET_SIZE;
if (synth->nugget_remains < burst_size) {
/* we're still in the middle of a nugget, so reduce the burst size
* to end when the nugget ends */
burst_size = synth->nugget_remains;
}
if (event_index < event_count
&& events[event_index].time.tick - samples_done < burst_size) {
/* reduce burst size to end when next event is ready */
burst_size = events[event_index].time.tick - samples_done;
}
if (sample_count - samples_done < burst_size) {
/* reduce burst size to end at end of this run */
burst_size = sample_count - samples_done;
}
/* render the burst */
xsynth_synth_render_voices(synth, synth->output + samples_done, burst_size,
(burst_size == synth->nugget_remains));
samples_done += burst_size;
synth->nugget_remains -= burst_size;
}
#if defined(XSYNTH_DEBUG) && (XSYNTH_DEBUG & XDB_AUDIO)
*synth->output += 0.10f; /* add a 'buzz' to output so there's something audible even when quiescent */
#endif /* defined(XSYNTH_DEBUG) && (XSYNTH_DEBUG & XDB_AUDIO) */
dssp_voicelist_mutex_unlock(synth);
}
// optional:
// void (*run_synth_adding)(LADSPA_Handle Instance,
// unsigned long SampleCount,
// snd_seq_event_t *Events,
// unsigned long EventCount);
/* ---- export ---- */
const LADSPA_Descriptor *ladspa_descriptor(unsigned long index)
{
switch (index) {
case 0:
return xsynth_LADSPA_descriptor;
default:
return NULL;
}
}
const DSSI_Descriptor *dssi_descriptor(unsigned long index)
{
switch (index) {
case 0:
return xsynth_DSSI_descriptor;
default:
return NULL;
}
}
void _init()
{
int i;
char **port_names;
LADSPA_PortDescriptor *port_descriptors;
LADSPA_PortRangeHint *port_range_hints;
XSYNTH_DEBUG_INIT("wsynth-dssi.so");
xsynth_init_tables();
xsynth_LADSPA_descriptor =
(LADSPA_Descriptor *) malloc(sizeof(LADSPA_Descriptor));
if (xsynth_LADSPA_descriptor) {
xsynth_LADSPA_descriptor->UniqueID = 2941;
xsynth_LADSPA_descriptor->Label = "Wsynth";
xsynth_LADSPA_descriptor->Properties = 0;
xsynth_LADSPA_descriptor->Name = "Wsynth DSSI plugin";
xsynth_LADSPA_descriptor->Maker = "Gordon JC Pearce <gordon@gjcp.net>";
xsynth_LADSPA_descriptor->Copyright = "GNU General Public License version 2 or later";
xsynth_LADSPA_descriptor->PortCount = XSYNTH_PORTS_COUNT;
port_descriptors = (LADSPA_PortDescriptor *)
calloc(xsynth_LADSPA_descriptor->PortCount, sizeof
(LADSPA_PortDescriptor));
xsynth_LADSPA_descriptor->PortDescriptors =
(const LADSPA_PortDescriptor *) port_descriptors;
port_range_hints = (LADSPA_PortRangeHint *)
calloc(xsynth_LADSPA_descriptor->PortCount, sizeof
(LADSPA_PortRangeHint));
xsynth_LADSPA_descriptor->PortRangeHints =
(const LADSPA_PortRangeHint *) port_range_hints;
port_names = (char **) calloc(xsynth_LADSPA_descriptor->PortCount, sizeof(char *));
xsynth_LADSPA_descriptor->PortNames = (const char **) port_names;
for (i = 0; i < XSYNTH_PORTS_COUNT; i++) {
port_descriptors[i] = xsynth_port_description[i].port_descriptor;
port_names[i] = xsynth_port_description[i].name;
port_range_hints[i].HintDescriptor = xsynth_port_description[i].hint_descriptor;
port_range_hints[i].LowerBound = xsynth_port_description[i].lower_bound;
port_range_hints[i].UpperBound = xsynth_port_description[i].upper_bound;
}
xsynth_LADSPA_descriptor->instantiate = xsynth_instantiate;
xsynth_LADSPA_descriptor->connect_port = xsynth_connect_port;
xsynth_LADSPA_descriptor->activate = xsynth_activate;
xsynth_LADSPA_descriptor->run = xsynth_ladspa_run_wrapper;
xsynth_LADSPA_descriptor->run_adding = NULL;
xsynth_LADSPA_descriptor->set_run_adding_gain = NULL;
xsynth_LADSPA_descriptor->deactivate = xsynth_deactivate;
xsynth_LADSPA_descriptor->cleanup = xsynth_cleanup;
}
xsynth_DSSI_descriptor = (DSSI_Descriptor *) malloc(sizeof(DSSI_Descriptor));
if (xsynth_DSSI_descriptor) {
xsynth_DSSI_descriptor->DSSI_API_Version = 1;
xsynth_DSSI_descriptor->LADSPA_Plugin = xsynth_LADSPA_descriptor;
xsynth_DSSI_descriptor->configure = xsynth_configure;
xsynth_DSSI_descriptor->get_program = xsynth_get_program;
xsynth_DSSI_descriptor->select_program = xsynth_select_program;
xsynth_DSSI_descriptor->get_midi_controller_for_port = xsynth_get_midi_controller;
xsynth_DSSI_descriptor->run_synth = xsynth_run_synth;
xsynth_DSSI_descriptor->run_synth_adding = NULL;
xsynth_DSSI_descriptor->run_multiple_synths = NULL;
xsynth_DSSI_descriptor->run_multiple_synths_adding = NULL;
}
}
void _fini()
{
if (xsynth_LADSPA_descriptor) {
free((LADSPA_PortDescriptor *) xsynth_LADSPA_descriptor->PortDescriptors);
free((char **) xsynth_LADSPA_descriptor->PortNames);
free((LADSPA_PortRangeHint *) xsynth_LADSPA_descriptor->PortRangeHints);
free(xsynth_LADSPA_descriptor);
}
if (xsynth_DSSI_descriptor) {
free(xsynth_DSSI_descriptor);
}
}
|