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 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
|
/*
* LADSPA meta plugin for
* Sweep, a sound wave editor.
*
* Copyright (C) 2000 Conrad Parker
*
* 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.
*/
/*
* This file assumes that both LADSPA and Sweep are built with
* an audio datatype of 'float'.
*/
#include <stdlib.h>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <math.h> /* for ceil() */
#include <glib.h>
#include <dlfcn.h>
#include <gdk/gdkkeysyms.h>
#include <sweep/sweep.h>
#include "../src/sweep_app.h"
#include "ladspa.h"
/* Compile in support for inplace processing? */
#define _PROCESS_INPLACE
#ifdef _PROCESS_INPLACE
#define LADSPA_META_IS_INPLACE_BROKEN(x) LADSPA_IS_INPLACE_BROKEN(x)
#else
#define LADSPA_META_IS_INPLACE_BROKEN(x) (1L)
#endif
#define LADSPA_IS_CONTROL_INPUT(x) (LADSPA_IS_PORT_INPUT(x) && LADSPA_IS_PORT_CONTROL(x))
#define LADSPA_IS_AUDIO_INPUT(x) (LADSPA_IS_PORT_INPUT(x) && LADSPA_IS_PORT_AUDIO(x))
#define LADSPA_IS_CONTROL_OUTPUT(x) (LADSPA_IS_PORT_OUTPUT(x) && LADSPA_IS_PORT_CONTROL(x))
#define LADSPA_IS_AUDIO_OUTPUT(x) (LADSPA_IS_PORT_OUTPUT(x) && LADSPA_IS_PORT_AUDIO(x))
#define LADSPA_frames_to_bytes(f) (f * sizeof(LADSPA_Data))
static char * default_ladspa_path = "/usr/lib/ladspa:/usr/local/lib/ladspa:/opt/ladspa/lib";
static GList * modules_list = NULL;
static gboolean ladspa_meta_initialised = FALSE;
/*
* is_usable (d)
*
* Determine if a LADSPA_Descriptor * d is usable by this ladspameta
* sweep plugin. Currently this means that:
* 1. there is at least one audio output
* 2. the number of audio inputs must equal the number of audio outputs.
*/
static gboolean
is_usable(const LADSPA_Descriptor * d)
{
LADSPA_PortDescriptor pd;
gint i;
gint
nr_ai=0, /* audio inputs */
nr_ao=0; /* audio outputs */
for (i=0; i < d->PortCount; i++) {
pd = d->PortDescriptors[i];
if (LADSPA_IS_AUDIO_INPUT(pd))
nr_ai++;
if (LADSPA_IS_AUDIO_OUTPUT(pd))
nr_ao++;
}
if (nr_ao == 0) return FALSE;
/* Sanity checks */
if (! d->run) return FALSE; /* plugin does nothing! */
if (! d->instantiate) return FALSE; /* plugin cannot be instantiated */
if (! d->connect_port) return FALSE; /* plugin cannot be wired up */
return (nr_ai == nr_ao);
}
static sw_param_type
convert_type (const LADSPA_PortRangeHintDescriptor prhd)
{
if (LADSPA_IS_HINT_TOGGLED(prhd))
return SWEEP_TYPE_BOOL;
else if (LADSPA_IS_HINT_INTEGER(prhd))
return SWEEP_TYPE_INT;
else
return SWEEP_TYPE_FLOAT;
}
static int
get_valid_mask (const LADSPA_PortRangeHintDescriptor prhd)
{
int ret=0;
if (LADSPA_IS_HINT_BOUNDED_BELOW(prhd))
ret |= SW_RANGE_LOWER_BOUND_VALID;
if (LADSPA_IS_HINT_BOUNDED_ABOVE(prhd))
ret |= SW_RANGE_UPPER_BOUND_VALID;
return ret;
}
static sw_param_range *
convert_constraint ( /* sw_format * format, */
const LADSPA_PortRangeHint * prh)
{
sw_param_range * pr;
LADSPA_PortRangeHintDescriptor prhd = prh->HintDescriptor;
LADSPA_Data lower, upper;
if (LADSPA_IS_HINT_TOGGLED(prhd))
return NULL;
pr = g_malloc0 (sizeof (*pr));
pr->valid_mask = get_valid_mask (prhd);
lower = prh->LowerBound;
upper = prh->UpperBound;
if LADSPA_IS_HINT_SAMPLE_RATE (prhd) {
#if 0
lower *= format->rate;
upper *= format->rate;
#else
lower *= 44100;
upper *= 44100;
#endif
}
if (LADSPA_IS_HINT_INTEGER(prhd)) {
if (LADSPA_IS_HINT_BOUNDED_BELOW(prhd))
pr->lower.i = (sw_int)lower;
if (LADSPA_IS_HINT_BOUNDED_ABOVE(prhd))
pr->upper.i = (sw_int)upper;
} else {
if (LADSPA_IS_HINT_BOUNDED_BELOW(prhd))
pr->lower.f = (sw_float)lower;
if (LADSPA_IS_HINT_BOUNDED_ABOVE(prhd))
pr->upper.f = (sw_float)upper;
}
return pr;
}
typedef struct _lm_custom lm_custom;
struct _lm_custom {
const LADSPA_Descriptor * d;
sw_param_spec * param_specs;
};
static lm_custom *
lm_custom_new (const LADSPA_Descriptor * d, sw_param_spec * param_specs)
{
lm_custom * lmc;
lmc = g_malloc (sizeof (*lmc));
if (lmc) {
lmc->d = d;
lmc->param_specs = param_specs;
}
return lmc;
}
static sw_param
convert_default (sw_format * format, const LADSPA_PortRangeHint * prh)
{
LADSPA_PortRangeHintDescriptor prhd = prh->HintDescriptor;
LADSPA_Data lower, upper;
gboolean bounded = FALSE;
sw_float def = 0.0;
sw_param param;
/* Cache whether or not this port is bounded */
bounded = LADSPA_IS_HINT_BOUNDED_BELOW (prhd) &&
LADSPA_IS_HINT_BOUNDED_ABOVE (prhd);
lower = prh->LowerBound;
upper = prh->UpperBound;
if LADSPA_IS_HINT_SAMPLE_RATE (prhd) {
lower *= format->rate;
upper *= format->rate;
}
/* Determine default value, as sw_float */
if (!LADSPA_IS_HINT_HAS_DEFAULT (prhd)) {
def = 0.0;
} else if (LADSPA_IS_HINT_DEFAULT_MINIMUM (prhd)) {
def = prh->LowerBound;
} else if (bounded && LADSPA_IS_HINT_DEFAULT_LOW (prhd)) {
if (LADSPA_IS_HINT_LOGARITHMIC (prhd)) {
def = exp(log(lower) * 0.75 + log(upper) * 0.25);
} else {
def = lower * 0.75 + upper * 0.25;
}
} else if (bounded && LADSPA_IS_HINT_DEFAULT_MIDDLE (prhd)) {
if (LADSPA_IS_HINT_LOGARITHMIC (prhd)) {
exp(log(lower) * 0.5 + log(upper) * 0.5);
} else {
def = lower * 0.5 + upper * 0.5;
}
} else if (bounded && LADSPA_IS_HINT_DEFAULT_HIGH (prhd)) {
if (LADSPA_IS_HINT_LOGARITHMIC (prhd)) {
exp(log(lower) * 0.25 + log(upper) * 0.75);
} else {
def = lower * 0.25 + upper * 0.75;
}
} else if (LADSPA_IS_HINT_DEFAULT_MAXIMUM (prhd)) {
def = prh->UpperBound;
} else if (LADSPA_IS_HINT_DEFAULT_0 (prhd)) {
def = 0.0;
} else if (LADSPA_IS_HINT_DEFAULT_1 (prhd)) {
def = 1.0;
} else if (LADSPA_IS_HINT_DEFAULT_100 (prhd)) {
def = 100.0;
} else if (LADSPA_IS_HINT_DEFAULT_440 (prhd)) {
def = 440.0;
} else {
def = 0.0;
}
/* Convert to sw_param type */
if (LADSPA_IS_HINT_TOGGLED (prhd)) {
param.b = (sw_bool)def;
} else if (LADSPA_IS_HINT_INTEGER (prhd)) {
param.i = (sw_int)def;
} else {
param.f = (sw_float)def;
}
return param;
}
static void
ladspa_meta_suggest (sw_sample * sample, sw_param_set pset,
gpointer custom_data)
{
sw_sounddata * sounddata;
lm_custom * lm = (lm_custom *)custom_data;
const LADSPA_Descriptor * d = lm->d;
LADSPA_PortDescriptor pd;
int i, pset_i = 0;
sounddata = sample_get_sounddata (sample);
for (i=0; i < d->PortCount; i++) {
pd = d->PortDescriptors[i];
if (LADSPA_IS_CONTROL_INPUT(pd)) {
pset[pset_i] = convert_default (sounddata->format,
&d->PortRangeHints[i]);
pset_i++;
}
}
}
#define BLOCK_SIZE 1024
static sw_sample *
ladspa_meta_apply_filter (sw_sample * sample, sw_param_set pset,
gpointer custom_data)
{
lm_custom * lm = (lm_custom *)custom_data;
const LADSPA_Descriptor * d = lm->d;
sw_param_spec * param_specs = lm->param_specs;
sw_sounddata * sounddata;
sw_format * format;
sw_framecount_t op_total, run_total;
sw_framecount_t offset, remaining, n;
GList * gl;
sw_sel * sel;
gpointer pcmdata;
/* The number of times the plugin will be run; ie. if the number of
* channels in the input pcmdata is greater than the number of
* audio ports on the ladspa plugin, the plugin will be run
* multiple times until enough output channels have been calculated.
*/
gint nr_handles;
LADSPA_Handle ** handles;
LADSPA_Data ** input_buffers, ** output_buffers;
LADSPA_Data * mono_input_buffers[1], * mono_output_buffers[1];
LADSPA_Data * p;
LADSPA_Data * control_inputs;
LADSPA_Data dummy_control_output;
LADSPA_PortDescriptor pd;
glong length_b;
gulong port_i; /* counter for iterating over ports */
gint h, i, j, c;
/* Enumerate the numbers of each type of port on the ladspa plugin */
gint
nr_ci=0, /* control inputs */
nr_ai=0, /* audio inputs */
nr_co=0, /* control outputs */
nr_ao=0; /* audio outputs */
/* The number of audio channels to be processed */
gint nr_channels;
/* The number of input and output buffers to use */
gint nr_i=0, nr_o=0;
/* Counters for allocating input and output buffers */
gint ibi=0, obi=0;
gboolean active = TRUE;
g_return_val_if_fail (d != NULL, NULL);
sounddata = sample_get_sounddata (sample);
format = sounddata->format;
nr_channels = format->channels;
op_total = sounddata_selection_nr_frames (sounddata) / 100;
if (op_total == 0) op_total = 1;
run_total = 0;
/* Cache how many of each type of port this ladspa plugin has */
for (port_i=0; port_i < d->PortCount; port_i++) {
pd = d->PortDescriptors[(int)port_i];
if (LADSPA_IS_CONTROL_INPUT(pd))
nr_ci++;
if (LADSPA_IS_AUDIO_INPUT(pd))
nr_ai++;
if (LADSPA_IS_CONTROL_OUTPUT(pd))
nr_co++;
if (LADSPA_IS_AUDIO_OUTPUT(pd))
nr_ao++;
}
/* Basic assumption of this meta plugin, which was
* checked above in is_usable(); nb. for future expansion
* much of this routine is written to accomodate this
* assumption being incorrect.
*/
g_assert (nr_ai == nr_ao);
/* Basic assumption that this plugin has audio output.
* Also important as we are about to divide by nr_ao.
*/
g_assert (nr_ao > 0);
nr_handles = (gint) ceil(((double)nr_channels) / ((double)nr_ao));
/* Numbers of input and output buffers: ensure
* nr_i >= nr_channels && nr_o >= nr_channels
*/
nr_i = nr_handles * nr_ai;
nr_o = nr_handles * nr_ao;
/* Create all input and output buffers */
if ((nr_channels == 1) && (nr_ai == 1) && (nr_ao >= 1)) {
/*
* Processing a mono sample with a mono filter.
* Attempt to do this in place.
*/
/* Create an input buffer if this ladspa plugin cannot work inplace */
if (LADSPA_META_IS_INPLACE_BROKEN(d->Properties)) {
length_b = frames_to_bytes (format, BLOCK_SIZE);
mono_input_buffers[0] = g_malloc (length_b);
} else {
/* Input directly from sample data; mark as NULL */
mono_input_buffers[0] = NULL;
}
input_buffers = mono_input_buffers;
/* Always output directly into the sample data; mark as NULL */
mono_output_buffers[0] = NULL;
output_buffers = mono_output_buffers;
} else {
length_b = LADSPA_frames_to_bytes (BLOCK_SIZE);
/* Allocate zeroed input buffers; these will remain zeroed
* if there aren't enough channels in the input pcmdata
* to use them.
*/
input_buffers = g_malloc (sizeof(LADSPA_Data *) * nr_i);
for (i=0; i < nr_i; i++) {
input_buffers[i] = g_malloc0 (length_b);
}
output_buffers = g_malloc(sizeof(LADSPA_Data *) * nr_o);
/* Create separate output buffers if this ladspa plugin cannot
* work inplace */
if (LADSPA_META_IS_INPLACE_BROKEN(d->Properties)) {
for (i=0; i < nr_o; i++) {
output_buffers[i] = g_malloc (length_b);
}
} else {
/* Re-use the input buffers, directly mapping them to
* corresponding output buffers
*/
for (i=0; i < MIN(nr_i, nr_o); i++) {
output_buffers[i] = input_buffers[i];
}
/* Create some extra output buffers if nr_o > nr_i */
for (; i < nr_o; i++) {
output_buffers[i] = g_malloc (length_b);
}
}
}
/* instantiate the ladspa plugin */
handles = g_malloc (sizeof (LADSPA_Handle *) * nr_handles);
for (h = 0; h < nr_handles; h++) {
handles[h] = d->instantiate (d, (long)format->rate);
}
/* connect control ports */
control_inputs = g_malloc (nr_ci * sizeof(LADSPA_Data));
j=0;
for (port_i=0; port_i < d->PortCount; port_i++) {
pd = d->PortDescriptors[(int)port_i];
if (LADSPA_IS_CONTROL_INPUT(pd)) {
/* do something with pset! */
switch (param_specs[j].type) {
case SWEEP_TYPE_BOOL:
/* from ladspa.h:
* Data less than or equal to zero should be considered
* `off' or `false,'
* and data above zero should be considered `on' or `true.'
*/
control_inputs[j] = pset[j].b ? 1.0 : 0.0;
break;
case SWEEP_TYPE_INT:
control_inputs[j] = (LADSPA_Data)pset[j].i;
break;
case SWEEP_TYPE_FLOAT:
control_inputs[j] = pset[j].f;
break;
default:
/* This plugin should produce no other types */
g_assert_not_reached ();
break;
}
for (h = 0; h < nr_handles; h++) {
d->connect_port (handles[h], port_i, &control_inputs[j]);
}
j++;
}
if (LADSPA_IS_CONTROL_OUTPUT(pd)) {
for (h = 0; h < nr_handles; h++) {
d->connect_port (handles[h], port_i, &dummy_control_output);
}
}
}
/* activate the ladspa plugin */
if (d->activate) {
for (h = 0; h < nr_handles; h++) {
d->activate (handles[h]);
}
}
/* run the plugin on selection regions */
for (gl = sounddata->sels; active && gl; gl = gl->next) {
sel = (sw_sel *)gl->data;
offset = 0;
remaining = sel->sel_end - sel->sel_start;
while (active && remaining > 0) {
g_mutex_lock (sample->ops_mutex);
if (sample->edit_state == SWEEP_EDIT_STATE_CANCEL) {
active = FALSE;
} else { /* cancel */
pcmdata = sounddata->data +
frames_to_bytes (format, sel->sel_start + offset);
n = MIN(remaining, BLOCK_SIZE);
/* Copy data into input buffers */
if (nr_channels == 1) {
if (LADSPA_META_IS_INPLACE_BROKEN(d->Properties)) {
length_b = frames_to_bytes (format, n);
memcpy (input_buffers[0], pcmdata, length_b);
} else {
/* we're processing in-place, so we haven't needed to set
* up a separate input buffer; input_buffers[0] actually
* points to pcmdata hence we don't do any copying here.
*/
input_buffers[0] = (LADSPA_Data *)pcmdata;
}
output_buffers[0] = (LADSPA_Data *)pcmdata;
} else {
/* de-interleave multichannel data */
p = (LADSPA_Data *)pcmdata;
for (i=0; i < n; i++) {
for (c=0; c < nr_channels; c++) {
input_buffers[c][i] = *p++;
}
}
}
g_assert (input_buffers[0] != NULL);
g_assert (output_buffers[0] != NULL);
/* connect input and output audio buffers to the
* audio ports of the ladspa plugin */
ibi = 0; obi = 0;
for (h = 0; h < nr_handles; h++) {
for (port_i=0; port_i < d->PortCount; port_i++) {
pd = d->PortDescriptors[(int)port_i];
if (LADSPA_IS_AUDIO_INPUT(pd)) {
d->connect_port (handles[h], port_i, input_buffers[ibi++]);
}
if (LADSPA_IS_AUDIO_OUTPUT(pd)) {
d->connect_port (handles[h], port_i, output_buffers[obi++]);
}
}
}
/* run the ladspa plugin */
for (h = 0; h < nr_handles; h++) {
d->run (handles[h], n);
}
/* re-interleave data */
if (nr_channels > 1) {
p = (LADSPA_Data *)pcmdata;
for (i=0; i < n; i++) {
for (c=0; c < nr_channels; c++) {
*p++ = output_buffers[c][i];
}
}
}
remaining -= n;
offset += n;
run_total += n;
sample_set_progress_percent (sample, run_total / op_total);
}
g_mutex_unlock (sample->ops_mutex);
}
}
/* deactivate the ladspa plugin */
if (d->deactivate) {
for (h = 0; h < nr_handles; h++) {
d->deactivate (handles[h]);
}
}
/* let the ladspa plugin clean up after itself */
if (d->cleanup) {
for (h = 0; h < nr_handles; h++) {
d->cleanup (handles[h]);
}
}
/* free the array of handles */
g_free (handles);
/* free the input and output buffers */
if (control_inputs) g_free (control_inputs);
if ((nr_channels == 1) && (nr_ai == 1) && (nr_ao >= 1)) {
if (LADSPA_META_IS_INPLACE_BROKEN(d->Properties)) {
g_free (mono_input_buffers[0]);
}
} else {
/* free the output buffers */
for (i=0; i < nr_o; i++) {
g_free (output_buffers[i]);
}
g_free (output_buffers);
/* free the input buffers, if we created some */
if (LADSPA_META_IS_INPLACE_BROKEN(d->Properties)) {
for (i=0; i < nr_i; i++) {
g_free (input_buffers[i]);
}
} else {
/* inplace worked, but if (nr_i > nr_o), then
* we still need to free the last input buffers
**/
for (i=nr_o; i < nr_i; i++) {
g_free (input_buffers[i]);
}
}
g_free (input_buffers);
}
return sample;
}
static sw_op_instance *
ladspa_meta_apply (sw_sample * sample,
sw_param_set pset, gpointer custom_data)
{
lm_custom * lm = (lm_custom *)custom_data;
const LADSPA_Descriptor * d = lm->d;
return
perform_filter_op (sample, (char *)d->Name,
(SweepFilter)ladspa_meta_apply_filter,
pset, custom_data);
}
/*
* ladspa_meta_add_procs (dir, name, gl)
*
* form sweep procs to describe the ladspa plugin functions that
* are in the shared library file "dir/name",
* and add these procs to the GList * (*gl)
*/
static void
ladspa_meta_add_procs (gchar * dir, gchar * name, GList ** gl)
{
#define PATH_LEN 256
gchar path[PATH_LEN];
void * module;
LADSPA_Descriptor_Function desc_func;
const LADSPA_Descriptor * d;
LADSPA_PortDescriptor pd;
gint i, j, k, nr_params;
int valid_mask;
sw_procedure * proc;
snprintf (path, PATH_LEN, "%s/%s", dir, name);
module = dlopen (path, RTLD_NOW);
if (!module) return;
modules_list = g_list_append (modules_list, module);
if ((desc_func = dlsym (module, "ladspa_descriptor"))) {
for (i=0; (d = desc_func (i)) != NULL; i++) {
if (!is_usable(d))
continue;
proc = g_malloc0 (sizeof (*proc));
proc->name = (gchar *)d->Name;
proc->author = (gchar *)d->Maker;
proc->copyright = (gchar *)d->Copyright;
nr_params=0;
for (j=0; j < d->PortCount; j++) {
pd = d->PortDescriptors[j];
if (LADSPA_IS_CONTROL_INPUT(pd)) {
nr_params++;
}
}
proc->nr_params = nr_params;
proc->param_specs =
(sw_param_spec *)g_malloc0 (nr_params * sizeof (sw_param_spec));
k=0;
for (j=0; j < d->PortCount; j++) {
pd = d->PortDescriptors[j];
if (LADSPA_IS_CONTROL_INPUT(pd)) {
proc->param_specs[k].name = (gchar *)d->PortNames[j];
proc->param_specs[k].desc = (gchar *)d->PortNames[j];
proc->param_specs[k].type =
convert_type (d->PortRangeHints[j].HintDescriptor);
valid_mask = get_valid_mask (d->PortRangeHints[j].HintDescriptor);
if (valid_mask == 0) {
proc->param_specs[k].constraint_type = SW_PARAM_CONSTRAINED_NOT;
} else {
proc->param_specs[k].constraint_type = SW_PARAM_CONSTRAINED_RANGE;
proc->param_specs[k].constraint.range =
convert_constraint (&d->PortRangeHints[j]);
}
k++;
}
}
proc->suggest = ladspa_meta_suggest;
proc->apply = ladspa_meta_apply;
proc->custom_data = lm_custom_new (d, proc->param_specs);
*gl = g_list_append (*gl, proc);
}
}
}
/*
* ladspa_meta_init_dir (dir, gl)
*
* scan a directory "dirname" for LADSPA plugins, and attempt to load
* each of them.
*/
static void
ladspa_meta_init_dir (gchar * dirname, GList ** gl)
{
DIR * dir;
struct dirent * dirent;
char * name;
if (!dirname) return;
dir = opendir (dirname);
if (!dir) {
return;
}
while ((dirent = readdir (dir)) != NULL) {
name = dirent->d_name;
if (strcmp (name, ".") && strcmp (name, ".."))
ladspa_meta_add_procs (dirname, dirent->d_name, gl);
}
}
static GList *
ladspa_meta_init (void)
{
GList * gl = NULL;
char * ladspa_path=NULL;
char * next_sep=NULL;
char * saved_lp=NULL;
/* If this ladspa_meta module has already been initialised, don't
* initialise again until cleaned up.
*/
if (ladspa_meta_initialised)
return NULL;
ladspa_path = getenv ("LADSPA_PATH");
if (!ladspa_path)
ladspa_path = saved_lp = strdup(default_ladspa_path);
do {
next_sep = strchr (ladspa_path, ':');
if (next_sep != NULL) *next_sep = '\0';
ladspa_meta_init_dir (ladspa_path, &gl);
if (next_sep != NULL) ladspa_path = ++next_sep;
} while ((next_sep != NULL) && (*next_sep != '\0'));
ladspa_meta_initialised = TRUE;
/* free string if dup'd for ladspa_path */
if (saved_lp != NULL) free(saved_lp);
return gl;
}
static void
ladspa_meta_cleanup (void)
{
GList * gl;
if (!ladspa_meta_initialised) return;
for (gl = modules_list; gl; gl = gl->next) {
dlclose(gl->data);
}
}
sw_plugin plugin = {
ladspa_meta_init, /* plugin_init */
ladspa_meta_cleanup, /* plugin_cleanup */
};
|