changeset 277:0cf2cc6d0fe5 trunk

[svn] Ladspa host module for Audacious.
author nenolod
date Sat, 10 Dec 2005 13:54:12 -0800
parents 28b73b5595d1
children 37316876ef6e
files Plugins/Effect/Makefile.am Plugins/Effect/ladspa/Makefile.am Plugins/Effect/ladspa/ladspa.c Plugins/Effect/ladspa/ladspa.h Plugins/Makefile.am configure.ac
diffstat 6 files changed, 1620 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Effect/Makefile.am	Sat Dec 10 13:54:12 2005 -0800
@@ -0,0 +1,2 @@
+ALL_PLUGINS = ladspa
+SUBDIRS = $(GENERAL_PLUGINS)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Effect/ladspa/Makefile.am	Sat Dec 10 13:54:12 2005 -0800
@@ -0,0 +1,10 @@
+lib_LTLIBRARIES = libladspa.la
+
+libdir = $(plugindir)/$(EFFECT_PLUGIN_DIR)
+
+libladspa_la_LDFLAGS = @PLUGIN_LDFLAGS@
+libladspa_la_LIBADD = @GTK_LIBS@
+
+libladspa_la_SOURCES = ladspa.c ladspa.h
+
+INCLUDES = @GTK_CFLAGS@ -I$(top_builddir)/intl -I$(top_srcdir)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Effect/ladspa/ladspa.c	Sat Dec 10 13:54:12 2005 -0800
@@ -0,0 +1,998 @@
+/*  xmms_ladspa - use LADSPA plugins from XMMS
+    Copyright (C) 2002,2003  Nick Lamb <njl195@zepler.org.uk>
+
+    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
+*/
+
+/* BMP-ladspa port by Giacomo Lozito <city_hunter@users.sf.net> */
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <float.h>
+#include <dlfcn.h>
+#include <dirent.h>
+#include <sys/types.h>
+#include <gtk/gtk.h>
+
+#include <audacious/plugin.h>
+#include <audacious/configfile.h>
+
+#include "../../../config.h"
+#include "ladspa.h"
+
+#ifndef PATH_MAX
+#define PATH_MAX 4096
+#endif
+
+#define PLUGIN_NAME "LADSPA host " VERSION
+
+#define MAX_SAMPLES 8192
+#define MAX_KNOBS 64
+
+typedef struct {
+  char *name;
+  char *filename;
+  long int id;
+  long int unique_id;
+  gboolean stereo;
+} ladspa_plugin;
+
+typedef struct {
+  void *library;
+  char *filename;
+  gboolean stereo;
+  gboolean restored;
+  const LADSPA_Descriptor *descriptor;
+  LADSPA_Handle *handle; /* left or mono */
+  LADSPA_Handle *handle2; /* right stereo */
+  GtkWidget *window;
+  guint timeout;
+  GtkAdjustment *adjustments[MAX_KNOBS];
+  LADSPA_Data knobs[MAX_KNOBS];
+} plugin_instance;
+
+static void start (void);
+static void stop (void);
+static int apply_effect (gpointer *d, gint length, AFormat afmt,
+                        gint srate, gint nch);
+static void configure(void);
+
+static void restore (void);
+static plugin_instance * add_plugin (ladspa_plugin *plugin);
+static void find_all_plugins(void);
+static void find_plugins(char *path_entry);
+static ladspa_plugin *get_plugin_by_id(unsigned long id);
+static plugin_instance * load (char *filename, long int num);
+static void reboot_plugins (void);
+static void boot_plugin (plugin_instance *instance);
+static void port_assign(plugin_instance *instance);
+static void shutdown (plugin_instance *instance);
+static void unload (plugin_instance *instance);
+
+static GtkWidget * make_plugin_clist(void);
+static void make_run_clist(void);
+static void sort_column(GtkCList *clist, gint column, gpointer user_data);
+static void select_plugin(GtkCList *clist, gint row, gint column,
+                          GdkEventButton *event, gpointer user_data);
+static void unselect_plugin(GtkCList *clist, gint row, gint column,
+                            GdkEventButton *event, gpointer user_data);
+static void add_plugin_clicked (GtkButton *button, gpointer user_data);
+static void remove_plugin_clicked (GtkButton *button, gpointer user_data);
+static void configure_plugin_clicked (GtkButton *button, gpointer user_data);
+
+static void draw_plugin(plugin_instance *instance);
+
+static LADSPA_Data left[MAX_SAMPLES], right[MAX_SAMPLES], trash[MAX_SAMPLES];
+
+G_LOCK_DEFINE_STATIC(running_plugins);
+
+static GSList *plugin_list, *running_plugins;
+
+static ladspa_plugin * selected_plugin;
+static plugin_instance * selected_instance;
+
+static struct {
+  AFormat afmt;
+  gint srate;
+  gint nch;
+  gboolean ignore;
+  gboolean running;
+  gboolean initialised;
+} state = { 0, 0, 0, FALSE, FALSE};
+
+static GtkWidget *config_window = NULL, *run_clist = NULL;
+
+static EffectPlugin xmms_plugin = {
+  NULL, NULL,
+  PLUGIN_NAME,
+  start,
+  stop,
+  NULL,
+  configure,
+  apply_effect
+};
+
+EffectPlugin *get_eplugin_info (void)
+{
+  return &xmms_plugin;
+}
+
+static void start (void)
+{
+  if (state.initialised == FALSE) {
+    restore();
+  } else if (state.srate > 0) {
+    reboot_plugins();
+  }
+  state.running = TRUE;
+}
+
+static void restore (void)
+{
+  ConfigFile *cfg;
+  gchar *filename;
+  gint k, plugins= 0;
+
+  #ifdef BUILD_FOR_BMP
+    filename= g_strdup_printf("%s/%s", g_get_home_dir(), "/.bmp/ladsparc");
+  #else
+    filename= g_strdup_printf("%s/%s", g_get_home_dir(), "/.xmms/ladsparc");
+  #endif
+  cfg = xmms_cfg_open_file(filename);
+  if (cfg == NULL) {
+    state.initialised = TRUE;
+    return;
+  }
+
+  xmms_cfg_read_int(cfg, "session", "plugins", &plugins);
+  for (k= 0; k < plugins; ++k) {
+    gint id;
+    int port, ports= 0;
+    plugin_instance *instance;
+    gchar *section = g_strdup_printf("plugin%d", k);
+
+    xmms_cfg_read_int(cfg, section, "id", &id);
+    instance = add_plugin(get_plugin_by_id(id));
+    if (!instance) continue; /* couldn't load this plugin */
+    xmms_cfg_read_int(cfg, section, "ports", &ports);
+    for (port= 0; port < ports && port < MAX_KNOBS; ++port) {
+      gchar *key = g_strdup_printf("port%d", port);
+      xmms_cfg_read_float(cfg, section, key, &(instance->knobs[port]));
+    }
+    instance->restored = TRUE;
+    g_free(section);
+  }
+
+  state.initialised = TRUE;
+  xmms_cfg_free(cfg);
+  g_free(filename);
+}
+
+static ladspa_plugin *get_plugin_by_id(unsigned long id)
+{
+  GSList *list;
+  ladspa_plugin *plugin;
+
+  if (plugin_list == NULL) {
+    find_all_plugins();
+  }
+
+  for (list= plugin_list; list != NULL; list = g_slist_next(list)) {
+    plugin = (ladspa_plugin *) list->data;
+    if (plugin->unique_id == id) {
+      return plugin;
+    }
+  }
+
+  return NULL;
+}
+
+static void find_all_plugins (void)
+{
+  char *ladspa_path, *directory;
+
+  plugin_list = NULL; /* empty list */
+  ladspa_path= getenv("LADSPA_PATH");
+  if (ladspa_path == NULL) {
+    /* Fallback, look in obvious places */
+    find_plugins("/usr/lib/ladspa");
+    find_plugins("/usr/local/lib/ladspa");
+  } else {
+    ladspa_path = g_strdup(ladspa_path);
+
+    directory = strtok(ladspa_path, ":");
+    while (directory != NULL) {
+      find_plugins(directory);
+      directory = strtok(NULL, ":");
+    }
+    g_free(ladspa_path);
+  }
+}
+
+static plugin_instance * load (char *filename, long int num)
+{
+  LADSPA_Descriptor_Function descriptor_fn;
+  plugin_instance *instance;
+
+  instance = g_new0(plugin_instance, 1);
+  
+  instance->filename = filename;
+  instance->library = dlopen(filename, RTLD_NOW);
+  if (instance->library == NULL) {
+    g_free(instance);
+    return NULL;
+  }
+  descriptor_fn = dlsym(instance->library, "ladspa_descriptor");
+  if (descriptor_fn == NULL) {
+    g_free(instance);
+    return NULL;
+  }
+  instance->descriptor = descriptor_fn(num);
+
+  return instance;
+}
+
+static void unload (plugin_instance * instance)
+{
+  if (instance->window) {
+    gtk_widget_destroy(instance->window);
+    instance->window = NULL;
+  }
+
+  if (instance->timeout) {
+    gtk_timeout_remove(instance->timeout);
+  }
+
+  shutdown(instance);
+
+  if (instance->library) {
+    dlclose(instance->library);
+  }
+}
+
+static void stop (void)
+{
+  GSList *list;
+  ConfigFile *cfg = xmms_cfg_new();
+  gchar *filename;
+  gint plugins = 0;
+
+  if (state.running == FALSE) {
+    return;
+  }
+  state.running = FALSE;
+  G_LOCK (running_plugins);
+  for (list= running_plugins; list != NULL; list = g_slist_next(list)) {
+    const plugin_instance *instance = (plugin_instance *) list->data;
+    gchar *section = g_strdup_printf("plugin%d", plugins++);
+    int port, ports= 0;
+
+    xmms_cfg_write_int(cfg, section, "id", instance->descriptor->UniqueID);
+    xmms_cfg_write_string(cfg, section, "file", instance->filename);
+    xmms_cfg_write_string(cfg, section, "label", (gchar *)
+                                              instance->descriptor->Label);
+
+    ports = instance->descriptor->PortCount;
+    if (ports > MAX_KNOBS) ports = MAX_KNOBS;
+    for (port= 0; port < ports; ++port) {
+      gchar *key = g_strdup_printf("port%d", port);
+      xmms_cfg_write_float(cfg, section, key, instance->knobs[port]);
+      g_free(key);
+    }
+    xmms_cfg_write_int(cfg, section, "ports", ports);
+    g_free(section);
+    shutdown (instance);
+  }
+  G_UNLOCK (running_plugins);
+
+  xmms_cfg_write_int(cfg, "session", "plugins", plugins);
+  #ifdef BUILD_FOR_BMP
+    filename= g_strdup_printf("%s/%s", g_get_home_dir(), "/.bmp/ladsparc");
+  #else
+    filename= g_strdup_printf("%s/%s", g_get_home_dir(), "/.xmms/ladsparc");
+  #endif
+  xmms_cfg_write_file(cfg, filename);
+  g_free(filename);
+  xmms_cfg_free(cfg);
+}
+
+static void shutdown (plugin_instance *instance)
+{
+  const LADSPA_Descriptor * descriptor= instance->descriptor;
+
+  if (instance->handle) {
+    if (descriptor->deactivate) {
+      descriptor->deactivate(instance->handle);
+    }
+    descriptor->cleanup(instance->handle);
+    instance->handle = NULL;
+  }
+  if (instance->handle2) {
+    if (descriptor->deactivate) {
+      descriptor->deactivate(instance->handle2);
+    }
+    descriptor->cleanup(instance->handle2);
+    instance->handle2 = NULL;
+  }
+}
+
+static void boot_plugin (plugin_instance *instance)
+{
+  const LADSPA_Descriptor * descriptor = instance->descriptor;
+
+  shutdown(instance);
+  instance->handle = descriptor->instantiate(descriptor, state.srate);
+  if (state.nch > 1 && !instance->stereo) {
+    /* Create an additional instance */
+    instance->handle2 = descriptor->instantiate(descriptor, state.srate);
+  }
+
+  port_assign(instance);
+
+  if (descriptor->activate) {
+    descriptor->activate(instance->handle);
+    if (instance->handle2) {
+      descriptor->activate(instance->handle2);
+    }
+  }
+}
+
+static void reboot_plugins (void)
+{
+  GSList *list;
+
+  G_LOCK (running_plugins);
+  for (list= running_plugins; list != NULL; list = g_slist_next(list)) {
+    boot_plugin ((plugin_instance *) list->data);
+  }
+  G_UNLOCK (running_plugins);
+}
+
+static int apply_effect (gpointer *d, gint length, AFormat afmt,
+                        gint srate, gint nch)
+{
+  gint16 *raw16 = *d;
+  GSList *list;
+  plugin_instance *instance;
+  int k;
+
+  if (running_plugins == NULL || state.running == FALSE) {
+    return length;
+  }
+
+  if (state.afmt != afmt || state.srate != srate || state.nch != nch) {
+    state.afmt = afmt;
+    state.srate = srate;
+    state.nch = nch;
+
+    if (nch < 1 || nch > 2)
+      state.ignore = 1;
+    else if (afmt == FMT_S16_NE)
+      state.ignore = 0;
+#if G_BYTE_ORDER == G_LITTLE_ENDIAN
+    else if (afmt == FMT_S16_LE)
+      state.ignore = 0;
+#elif G_BYTE_ORDER == G_BIG_ENDIAN
+    else if (afmt == FMT_S16_BE)
+      state.ignore = 0;
+#endif
+    else
+      state.ignore = 1;
+
+    reboot_plugins();
+  }
+
+  if (state.ignore || length > MAX_SAMPLES * 2) {
+    return length;
+  }
+
+  if (state.nch == 1) {
+    for (k= 0; k < length / 2; ++k) {
+      left[k] = ((LADSPA_Data) raw16[k]) * (1.0f / 32768.0f);
+    }
+    G_LOCK (running_plugins);
+    for (list= running_plugins; list != NULL; list = g_slist_next(list)) {
+      instance = (plugin_instance *) list->data;
+      if (instance->handle) {
+        instance->descriptor->run(instance->handle, length / 2);
+      }
+    }
+    G_UNLOCK (running_plugins);
+    for (k= 0; k < length / 2; ++k) {
+      raw16[k] = CLAMP((int) (left[k] * 32768.0f), -32768, 32767);
+    }
+  } else {
+    for (k= 0; k < length / 2; k += 2) {
+      left[k/2] = ((LADSPA_Data) raw16[k]) * (1.0f / 32768.0f);
+    }
+    for (k= 1; k < length / 2; k += 2) {
+      right[k/2] = ((LADSPA_Data) raw16[k]) * (1.0f / 32768.0f);
+    }
+    G_LOCK (running_plugins);
+    for (list= running_plugins; list != NULL; list = g_slist_next(list)) {
+      instance = (plugin_instance *) list->data;
+      if (instance->handle) {
+        instance->descriptor->run(instance->handle, length / 4);
+      }
+      if (instance->handle2) {
+        instance->descriptor->run(instance->handle2, length / 4);
+      }
+    }
+    G_UNLOCK (running_plugins);
+    for (k= 0; k < length / 2; k += 2) {
+      raw16[k] = CLAMP((int) (left[k/2] * 32768.0f), -32768, 32767);
+    }
+    for (k= 1; k < length / 2; k += 2) {
+      raw16[k] = CLAMP((int) (right[k/2] * 32768.0f), -32768, 32767);
+    }
+  }
+
+  return length;
+}
+
+static void port_assign(plugin_instance * instance) {
+  unsigned long port;
+  unsigned long inputs= 0, outputs= 0;
+  const LADSPA_Descriptor * plugin = instance->descriptor;
+
+  for (port = 0; port < plugin->PortCount; ++port) {
+
+    if (LADSPA_IS_PORT_CONTROL(plugin->PortDescriptors[port])) {
+      if (port < MAX_KNOBS) {
+        plugin->connect_port(instance->handle, port, &(instance->knobs[port]));
+        if (instance->handle2)
+          plugin->connect_port(instance->handle2, port, &(instance->knobs[port]));
+      } else {
+        plugin->connect_port(instance->handle, port, trash);
+        if (instance->handle2)
+          plugin->connect_port(instance->handle2, port, trash);
+      }
+      
+    } else if (LADSPA_IS_PORT_AUDIO(plugin->PortDescriptors[port])) {
+
+      if (LADSPA_IS_PORT_INPUT(plugin->PortDescriptors[port])) {
+        if (inputs == 0) {
+          plugin->connect_port(instance->handle, port, left);
+          if (instance->handle2)
+            plugin->connect_port(instance->handle2, port, right);
+        } else if (inputs == 1 && instance->stereo) {
+          plugin->connect_port(instance->handle, port, right);
+        } else {
+          plugin->connect_port(instance->handle, port, trash);
+          if (instance->handle2)
+            plugin->connect_port(instance->handle2, port, trash);
+        }
+        inputs++;
+
+      } else if (LADSPA_IS_PORT_OUTPUT(plugin->PortDescriptors[port])) {
+        if (outputs == 0) {
+          plugin->connect_port(instance->handle, port, left);
+          if (instance->handle2)
+            plugin->connect_port(instance->handle2, port, right);
+        } else if (outputs == 1 && instance->stereo) {
+          plugin->connect_port(instance->handle, port, right);
+        } else {
+          plugin->connect_port(instance->handle, port, trash);
+          if (instance->handle2)
+            plugin->connect_port(instance->handle2, port, trash);
+        }
+        outputs++;
+
+      }
+    }
+  }
+
+}
+
+static void find_plugins(char *path_entry)
+{
+  ladspa_plugin *plugin;
+  void *library = NULL;
+  char lib_name[PATH_MAX];
+  LADSPA_Descriptor_Function descriptor_fn;
+  const LADSPA_Descriptor *descriptor;
+  DIR *dir;
+  struct dirent *dirent;
+  long int k;
+  long int port, input, output;
+  
+  dir= opendir(path_entry);
+  if (dir == NULL) return;
+
+  while ((dirent= readdir(dir))) {
+    snprintf(lib_name, PATH_MAX, "%s/%s", path_entry, dirent->d_name);
+    library = dlopen(lib_name, RTLD_LAZY);
+    if (library == NULL) {
+      continue;
+    }
+    descriptor_fn = dlsym(library, "ladspa_descriptor");
+    if (descriptor_fn == NULL) {
+      dlclose(library);
+      continue;
+    }
+
+    for (k= 0;; ++k) {
+      descriptor= descriptor_fn(k);
+      if (descriptor == NULL) {
+        break;
+      }
+      plugin = g_new(ladspa_plugin, 1);
+      plugin->name= g_strdup(descriptor->Name);
+      plugin->filename= g_strdup(lib_name);
+      plugin->id= k;
+      plugin->unique_id= descriptor->UniqueID;
+      for (input = output = port = 0; port < descriptor->PortCount; ++port) {
+        if (LADSPA_IS_PORT_AUDIO(descriptor->PortDescriptors[port])) {
+          if (LADSPA_IS_PORT_INPUT(descriptor->PortDescriptors[port]))
+            input++;
+          if (LADSPA_IS_PORT_OUTPUT(descriptor->PortDescriptors[port]))
+            output++;
+        } else if (LADSPA_IS_PORT_CONTROL(descriptor->PortDescriptors[port])) {
+        }
+      }
+      if (input >= 2 && output >= 2) {
+        plugin->stereo= TRUE;
+      } else {
+        plugin->stereo= FALSE;
+      }
+      plugin_list = g_slist_prepend(plugin_list, plugin);
+    }
+    dlclose(library);
+  }
+
+  closedir(dir);
+  return;
+}
+
+static void value_changed(GtkAdjustment *adjustment, gpointer *user_data)
+{
+  LADSPA_Data *data = (LADSPA_Data *) user_data;
+
+  G_LOCK (running_plugins);
+  *data = (LADSPA_Data) adjustment->value;
+  G_UNLOCK (running_plugins);
+}
+
+static void toggled(GtkToggleButton *togglebutton, gpointer *user_data)
+{
+  LADSPA_Data *data = (LADSPA_Data *) user_data;
+
+  if (gtk_toggle_button_get_active(togglebutton)) {
+    G_LOCK (running_plugins);
+    *data = (LADSPA_Data) 1.0f;
+    G_UNLOCK (running_plugins);
+  } else {
+    G_LOCK (running_plugins);
+    *data = (LADSPA_Data) -1.0f;
+    G_UNLOCK (running_plugins);
+  }
+}
+
+static int update_instance (gpointer data)
+{
+  plugin_instance *instance = (plugin_instance *) data;
+  unsigned long k;
+
+  G_LOCK (running_plugins);
+  for (k = 0; k < MAX_KNOBS && k < instance->descriptor->PortCount; ++k) {
+    if (LADSPA_IS_PORT_OUTPUT(instance->descriptor->PortDescriptors[k])
+     && LADSPA_IS_PORT_CONTROL(instance->descriptor->PortDescriptors[k])) {
+      instance->adjustments[k]->value = instance->knobs[k];
+      gtk_adjustment_value_changed(instance->adjustments[k]);
+    }
+  }
+  G_UNLOCK (running_plugins);
+  return TRUE;
+}
+
+static void draw_plugin(plugin_instance *instance)
+{
+  const LADSPA_Descriptor *plugin = instance->descriptor;
+  const LADSPA_PortRangeHint *hints = plugin->PortRangeHints;
+  LADSPA_Data fact, min, max, step, start;
+  int dp;
+  unsigned long k;
+  gboolean no_ui = TRUE;
+  GtkWidget *widget, *vbox, *hbox;
+  GtkObject *adjustment;
+
+  if (instance->window != NULL) {
+    /* Just show window */
+    gtk_widget_show(instance->window);
+    return;
+  }
+
+  instance->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+  gtk_window_set_title(GTK_WINDOW(instance->window), plugin->Name);
+
+  vbox= gtk_vbox_new(FALSE, 3);
+
+  for (k = 0; k < MAX_KNOBS && k < plugin->PortCount; ++k) {
+    if (! LADSPA_IS_PORT_CONTROL(plugin->PortDescriptors[k]))
+      continue;
+    no_ui = FALSE;
+    hbox = gtk_hbox_new(FALSE, 3);
+    widget = gtk_label_new(plugin->PortNames[k]);
+    gtk_container_add(GTK_CONTAINER(hbox), widget);
+
+    if (LADSPA_IS_HINT_TOGGLED(hints[k].HintDescriptor)) {
+      widget = gtk_toggle_button_new_with_label("Press");
+      gtk_signal_connect(GTK_OBJECT(widget), "toggled",
+                       toggled, &(instance->knobs[k]));
+      gtk_container_add(GTK_CONTAINER(hbox), widget);
+      gtk_container_add(GTK_CONTAINER(vbox), hbox);
+      continue;
+    }
+
+    if (LADSPA_IS_HINT_SAMPLE_RATE(hints[k].HintDescriptor)) {
+      fact = state.srate ? state.srate : 44100.0f;
+    } else {
+      fact = 1.0f;
+    }
+
+    if (LADSPA_IS_HINT_BOUNDED_BELOW(hints[k].HintDescriptor)) {
+      min= hints[k].LowerBound * fact;
+    } else {
+      min= -10000.0f;
+    }
+
+    if (LADSPA_IS_HINT_BOUNDED_ABOVE(hints[k].HintDescriptor)) {
+      max= hints[k].UpperBound * fact;
+    } else {
+      max= 10000.0f;
+    }
+
+    /* infinity */
+    if (10000.0f <= max - min) {
+      dp = 1;
+      step = 5.0f;
+
+    /* 100.0 ... lots */
+    } else if (100.0f < max - min) {
+      dp = 0;
+      step = 5.0f;
+
+    /* 10.0 ... 100.0 */
+    } else if (10.0f < max - min) {
+      dp = 1;
+      step = 0.5f;
+
+    /* 1.0 ... 10.0 */
+    } else if (1.0f < max - min) {
+      dp = 2;
+      step = 0.05f;
+
+    /* 0.0 ... 1.0 */
+    } else {
+      dp = 3;
+      step = 0.005f;
+    }
+
+    if (LADSPA_IS_HINT_INTEGER(hints[k].HintDescriptor)) {
+      dp = 0;
+      if (step < 1.0f) step = 1.0f;
+    }
+
+    if (LADSPA_IS_HINT_DEFAULT_MINIMUM(hints[k].HintDescriptor)) {
+      start = min;
+    } else if (LADSPA_IS_HINT_DEFAULT_LOW(hints[k].HintDescriptor)) {
+      start = min * 0.75f + max * 0.25f;
+    } else if (LADSPA_IS_HINT_DEFAULT_MIDDLE(hints[k].HintDescriptor)) {
+      start = min * 0.5f + max * 0.5f;
+    } else if (LADSPA_IS_HINT_DEFAULT_HIGH(hints[k].HintDescriptor)) {
+      start = min * 0.25f + max * 0.75f;
+    } else if (LADSPA_IS_HINT_DEFAULT_MAXIMUM(hints[k].HintDescriptor)) {
+      start = max;
+    } else if (LADSPA_IS_HINT_DEFAULT_0(hints[k].HintDescriptor)) {
+      start = 0.0f;
+    } else if (LADSPA_IS_HINT_DEFAULT_1(hints[k].HintDescriptor)) {
+      start = 1.0f;
+    } else if (LADSPA_IS_HINT_DEFAULT_100(hints[k].HintDescriptor)) {
+      start = 100.0f;
+    } else if (LADSPA_IS_HINT_DEFAULT_440(hints[k].HintDescriptor)) {
+      start = 440.0f;
+    } else if (LADSPA_IS_HINT_INTEGER(hints[k].HintDescriptor)) {
+      start = min;
+    } else if (max >= 0.0f && min <= 0.0f) {
+      start = 0.0f;
+    } else {
+      start = min * 0.5f + max * 0.5f;
+    }
+
+    if (instance->restored) {
+      start = instance->knobs[k];
+    } else {
+      instance->knobs[k] = start;
+    }
+    adjustment = gtk_adjustment_new(start, min, max, step, step * 10.0, 0.0);
+    instance->adjustments[k] = GTK_ADJUSTMENT(adjustment);
+    widget = gtk_spin_button_new(GTK_ADJUSTMENT(adjustment), step, dp);
+    if (LADSPA_IS_PORT_OUTPUT(plugin->PortDescriptors[k])) {
+      gtk_widget_set_sensitive(widget, FALSE);
+    } else {
+      gtk_signal_connect(adjustment, "value-changed",
+                   GTK_SIGNAL_FUNC(value_changed), &(instance->knobs[k]));
+    }
+    gtk_container_add(GTK_CONTAINER(hbox), widget);
+    widget = gtk_hscale_new(GTK_ADJUSTMENT(adjustment));
+    gtk_scale_set_digits(GTK_SCALE(widget), dp);
+    if (LADSPA_IS_PORT_OUTPUT(plugin->PortDescriptors[k])) {
+      gtk_widget_set_sensitive(widget, FALSE);
+    }
+    gtk_container_add(GTK_CONTAINER(hbox), widget);
+
+    gtk_container_add(GTK_CONTAINER(vbox), hbox);
+  }
+
+  if (no_ui) {
+    widget = gtk_label_new("This LADSPA plugin has no user controls");
+    gtk_container_add(GTK_CONTAINER(vbox), widget);
+  }
+
+  instance->timeout = gtk_timeout_add(100, update_instance, instance);
+
+  gtk_container_add(GTK_CONTAINER(instance->window), vbox);
+
+  gtk_signal_connect (GTK_OBJECT (instance->window), "delete_event",
+                      GTK_SIGNAL_FUNC (gtk_widget_hide_on_delete), NULL);
+  gtk_widget_show_all(instance->window);
+}
+
+static void sort_column(GtkCList *clist, gint column, gpointer user_data)
+{
+  gtk_clist_set_sort_column(clist, column);
+  gtk_clist_sort(clist);
+}
+
+static void unselect_instance(GtkCList *clist, gint row, gint column,
+                              GdkEventButton *event, gpointer user_data)
+{
+  selected_instance= NULL;
+}
+
+static void select_instance(GtkCList *clist, gint row, gint column,
+                            GdkEventButton *event, gpointer user_data)
+{
+  selected_instance= (plugin_instance *) gtk_clist_get_row_data(clist, row);
+}
+
+static void reorder_instance(GtkCList *clist, gint from, gint to,
+                             gpointer user_data)
+{
+  void *data;
+
+  G_LOCK (running_plugins);
+  data = g_slist_nth_data(running_plugins, from);
+  running_plugins= g_slist_remove(running_plugins, data);
+  running_plugins= g_slist_insert(running_plugins, data, to);
+  G_UNLOCK (running_plugins);
+}
+
+static void make_run_clist(void)
+{
+  char * titles[1] = { "Name" };
+  GSList *list;
+
+  run_clist = gtk_clist_new_with_titles(1, titles);
+  gtk_clist_column_titles_passive(GTK_CLIST (run_clist));
+  gtk_clist_set_reorderable(GTK_CLIST (run_clist), TRUE);
+  gtk_signal_connect(GTK_OBJECT(run_clist), "select-row",
+                     GTK_SIGNAL_FUNC(select_instance), NULL);
+  gtk_signal_connect(GTK_OBJECT(run_clist), "unselect-row",
+                     GTK_SIGNAL_FUNC(unselect_instance), NULL);
+  gtk_signal_connect(GTK_OBJECT(run_clist), "row-move",
+                     GTK_SIGNAL_FUNC(reorder_instance), NULL);
+
+  G_LOCK (running_plugins);
+  for (list= running_plugins; list != NULL; list = g_slist_next(list)) {
+    gint row;
+    gchar *line[1];
+    plugin_instance *instance = (plugin_instance *) list->data;
+
+    line[0] = (char *) instance->descriptor->Name;
+    row = gtk_clist_append(GTK_CLIST (run_clist), line);
+    gtk_clist_set_row_data(GTK_CLIST (run_clist), row, (gpointer) instance);
+    gtk_clist_select_row(GTK_CLIST(run_clist), row, 0);
+  }
+  G_UNLOCK (running_plugins);
+}
+
+static plugin_instance * add_plugin (ladspa_plugin *plugin)
+{
+  plugin_instance *instance;
+  char * line[1];
+  gint row;
+
+  if (plugin == NULL) {
+    return NULL;
+  }
+
+  instance = load(plugin->filename, plugin->id);
+  if (instance == NULL) {
+    return NULL;
+  }
+
+  instance->stereo = plugin->stereo;
+  if (state.srate && state.running) {
+    /* Jump right in */
+    boot_plugin(instance);
+  }
+
+  if (run_clist) {
+    line[0] = (char *) instance->descriptor->Name;
+    row = gtk_clist_append(GTK_CLIST (run_clist), line);
+    gtk_clist_set_row_data(GTK_CLIST (run_clist), row, (gpointer) instance);
+    gtk_clist_select_row(GTK_CLIST(run_clist), row, 0);
+    draw_plugin(instance);
+  }
+  G_LOCK (running_plugins);
+  running_plugins = g_slist_append(running_plugins, instance);
+  G_UNLOCK (running_plugins);
+
+  return instance;
+}
+
+
+static void unselect_plugin(GtkCList *clist, gint row, gint column,
+                            GdkEventButton *event, gpointer user_data)
+{
+  selected_plugin= NULL;
+}
+
+static void select_plugin(GtkCList *clist, gint row, gint column,
+                          GdkEventButton *event, gpointer user_data)
+{
+  selected_plugin = (ladspa_plugin *) gtk_clist_get_row_data(clist, row);
+  gtk_clist_unselect_all(GTK_CLIST(run_clist));
+  if (event->type == GDK_2BUTTON_PRESS) {
+    /* Double click */
+    add_plugin(selected_plugin);
+  }
+}
+
+static GtkWidget * make_plugin_clist(void)
+{
+  ladspa_plugin *plugin;
+  GSList *list;
+  GtkWidget *clist;
+  char number[14];
+  char * titles[2] = { "UID", "Name" };
+  char * line[2];
+  gint row;
+  
+  find_all_plugins();
+
+  clist = gtk_clist_new_with_titles(2, titles);
+  gtk_clist_column_titles_active(GTK_CLIST (clist));
+  gtk_clist_set_column_auto_resize (GTK_CLIST (clist), 0, TRUE);
+  gtk_clist_set_sort_column(GTK_CLIST (clist), 1);
+
+  for (list= plugin_list; list != NULL; list = g_slist_next(list)) {
+    plugin = (ladspa_plugin *) list->data;
+    snprintf(number, sizeof(number), "%ld", plugin->unique_id);
+    line[0] = number;
+    line[1] = plugin->name;
+    row = gtk_clist_append(GTK_CLIST (clist), line);
+    gtk_clist_set_row_data(GTK_CLIST (clist), row, (gpointer) plugin);
+  }
+  gtk_clist_sort(GTK_CLIST (clist));
+
+  gtk_signal_connect(GTK_OBJECT(clist), "click-column",
+                     GTK_SIGNAL_FUNC(sort_column), NULL);
+  gtk_signal_connect(GTK_OBJECT(clist), "select-row",
+                     GTK_SIGNAL_FUNC(select_plugin), NULL);
+  gtk_signal_connect(GTK_OBJECT(clist), "unselect-row",
+                     GTK_SIGNAL_FUNC(unselect_plugin), NULL);
+
+  return clist;
+}
+
+static void add_plugin_clicked (GtkButton *button, gpointer user_data)
+{
+  add_plugin(selected_plugin);
+}
+
+static void remove_plugin_clicked (GtkButton *button, gpointer user_data)
+{
+  plugin_instance *instance = selected_instance;
+  gint row;
+
+  if (instance == NULL) {
+    return;
+  }
+  row = gtk_clist_find_row_from_data(GTK_CLIST(run_clist), (gpointer) instance);
+  gtk_clist_remove(GTK_CLIST(run_clist), row);
+
+  G_LOCK (running_plugins);
+  running_plugins = g_slist_remove(running_plugins, instance);
+  unload(instance);
+  G_UNLOCK (running_plugins);
+  selected_instance= NULL;
+}
+
+static void configure_plugin_clicked (GtkButton *button, gpointer user_data)
+{
+  if (selected_instance) {
+    draw_plugin(selected_instance);
+  }
+}
+
+static void configure(void)
+{
+  GtkWidget *widget, *vbox, *hbox, *bbox, *frame;
+
+  if (config_window) {
+    /* just show the window */
+    gtk_widget_show(config_window);
+    return;
+  }
+
+  config_window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+  vbox= gtk_vbox_new(FALSE, 0);
+  hbox= gtk_hbox_new(TRUE, 0);
+
+  frame= gtk_frame_new("Installed plugins");
+  widget = gtk_scrolled_window_new(NULL, NULL);
+  gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(widget),
+                                 GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
+  gtk_container_add(GTK_CONTAINER(widget), make_plugin_clist());
+  gtk_container_add(GTK_CONTAINER(frame), widget);
+  gtk_container_add(GTK_CONTAINER(hbox), frame);
+
+
+  frame= gtk_frame_new("Running plugins");
+  widget = gtk_scrolled_window_new(NULL, NULL);
+  gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(widget),
+                                 GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
+  if (run_clist == NULL) {
+    make_run_clist();
+  }
+  gtk_container_add(GTK_CONTAINER(widget), run_clist);
+  gtk_container_add(GTK_CONTAINER(frame), widget);
+  gtk_container_add(GTK_CONTAINER(hbox), frame);
+  gtk_container_add(GTK_CONTAINER(vbox), hbox);
+
+  /* Buttons */
+  bbox = gtk_hbutton_box_new();
+  gtk_button_box_set_layout(GTK_BUTTON_BOX(bbox), GTK_BUTTONBOX_SPREAD);
+  widget = gtk_button_new_with_label("Add");
+  gtk_signal_connect(GTK_OBJECT(widget), "clicked",
+                     GTK_SIGNAL_FUNC(add_plugin_clicked), NULL);
+  gtk_box_pack_end_defaults(GTK_BOX(bbox), widget);
+  widget = gtk_button_new_with_label("Remove");
+  gtk_signal_connect(GTK_OBJECT(widget), "clicked",
+                     GTK_SIGNAL_FUNC(remove_plugin_clicked), NULL);
+  gtk_box_pack_end_defaults(GTK_BOX(bbox), widget);
+  widget = gtk_button_new_with_label("Configure");
+  gtk_signal_connect(GTK_OBJECT(widget), "clicked",
+                     GTK_SIGNAL_FUNC(configure_plugin_clicked), NULL);
+  gtk_box_pack_end_defaults(GTK_BOX(bbox), widget);
+
+  gtk_box_pack_end(GTK_BOX(vbox), bbox, FALSE, FALSE, 0);
+
+  gtk_container_add(GTK_CONTAINER(config_window), vbox);
+
+  #ifdef BUILD_FOR_BMP
+    gtk_window_set_title(GTK_WINDOW(config_window), "BMP " PLUGIN_NAME );
+  #else
+    gtk_window_set_title(GTK_WINDOW(config_window), "XMMS " PLUGIN_NAME );
+  #endif
+  gtk_widget_set_usize(config_window, 380, 400);
+  gtk_signal_connect (GTK_OBJECT (config_window), "delete_event",
+                      GTK_SIGNAL_FUNC (gtk_widget_hide_on_delete), NULL);
+
+  gtk_widget_show_all(config_window);
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/Effect/ladspa/ladspa.h	Sat Dec 10 13:54:12 2005 -0800
@@ -0,0 +1,603 @@
+/* ladspa.h
+
+   Linux Audio Developer's Simple Plugin API Version 1.1[LGPL].
+   Copyright (C) 2000-2002 Richard W.E. Furse, Paul Barton-Davis,
+   Stefan Westerfeld.
+   
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public License
+   as published by the Free Software Foundation; either version 2.1 of
+   the License, or (at your option) any later version.
+   
+   This library 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
+   Lesser General Public License for more details.
+   
+   You should have received a copy of the GNU Lesser General Public
+   License along with this library; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+   USA. */
+
+#ifndef LADSPA_INCLUDED
+#define LADSPA_INCLUDED
+
+#define LADSPA_VERSION "1.1"
+#define LADSPA_VERSION_MAJOR 1
+#define LADSPA_VERSION_MINOR 1
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*****************************************************************************/
+
+/* Overview: 
+
+   There is a large number of synthesis packages in use or development
+   on the Linux platform at this time. This API (`The Linux Audio
+   Developer's Simple Plugin API') attempts to give programmers the
+   ability to write simple `plugin' audio processors in C/C++ and link
+   them dynamically (`plug') into a range of these packages (`hosts').
+   It should be possible for any host and any plugin to communicate
+   completely through this interface.
+
+   This API is deliberately short and simple. To achieve compatibility
+   with a range of promising Linux sound synthesis packages it
+   attempts to find the `greatest common divisor' in their logical
+   behaviour. Having said this, certain limiting decisions are
+   implicit, notably the use of a fixed type (LADSPA_Data) for all
+   data transfer and absence of a parameterised `initialisation'
+   phase. See below for the LADSPA_Data typedef.
+
+   Plugins are expected to distinguish between control and audio
+   data. Plugins have `ports' that are inputs or outputs for audio or
+   control data and each plugin is `run' for a `block' corresponding
+   to a short time interval measured in samples. Audio data is
+   communicated using arrays of LADSPA_Data, allowing a block of audio
+   to be processed by the plugin in a single pass. Control data is
+   communicated using single LADSPA_Data values. Control data has a
+   single value at the start of a call to the `run()' or `run_adding()'
+   function, and may be considered to remain this value for its
+   duration. The plugin may assume that all its input and output ports
+   have been connected to the relevant data location (see the
+   `connect_port()' function below) before it is asked to run.
+
+   Plugins will reside in shared object files suitable for dynamic
+   linking by dlopen() and family. The file will provide a number of
+   `plugin types' that can be used to instantiate actual plugins
+   (sometimes known as `plugin instances') that can be connected
+   together to perform tasks.
+
+   This API contains very limited error-handling. */
+
+/*****************************************************************************/
+
+/* Fundamental data type passed in and out of plugin. This data type
+   is used to communicate audio samples and control values. It is
+   assumed that the plugin will work sensibly given any numeric input
+   value although it may have a preferred range (see hints below). 
+
+   For audio it is generally assumed that 1.0f is the `0dB' reference
+   amplitude and is a `normal' signal level. */
+
+typedef float LADSPA_Data;
+
+/*****************************************************************************/
+
+/* Special Plugin Properties: 
+ 
+   Optional features of the plugin type are encapsulated in the
+   LADSPA_Properties type. This is assembled by ORing individual
+   properties together. */
+
+typedef int LADSPA_Properties;
+
+/* Property LADSPA_PROPERTY_REALTIME indicates that the plugin has a
+   real-time dependency (e.g. listens to a MIDI device) and so its
+   output must not be cached or subject to significant latency. */
+#define LADSPA_PROPERTY_REALTIME        0x1
+
+/* Property LADSPA_PROPERTY_INPLACE_BROKEN indicates that the plugin
+   may cease to work correctly if the host elects to use the same data
+   location for both input and output (see connect_port()). This
+   should be avoided as enabling this flag makes it impossible for
+   hosts to use the plugin to process audio `in-place.' */
+#define LADSPA_PROPERTY_INPLACE_BROKEN  0x2
+
+/* Property LADSPA_PROPERTY_HARD_RT_CAPABLE indicates that the plugin
+   is capable of running not only in a conventional host but also in a
+   `hard real-time' environment. To qualify for this the plugin must
+   satisfy all of the following:
+
+   (1) The plugin must not use malloc(), free() or other heap memory
+   management within its run() or run_adding() functions. All new
+   memory used in run() must be managed via the stack. These
+   restrictions only apply to the run() function.
+
+   (2) The plugin will not attempt to make use of any library
+   functions with the exceptions of functions in the ANSI standard C
+   and C maths libraries, which the host is expected to provide.
+
+   (3) The plugin will not access files, devices, pipes, sockets, IPC
+   or any other mechanism that might result in process or thread
+   blocking.
+      
+   (4) The plugin will take an amount of time to execute a run() or
+   run_adding() call approximately of form (A+B*SampleCount) where A
+   and B depend on the machine and host in use. This amount of time
+   may not depend on input signals or plugin state. The host is left
+   the responsibility to perform timings to estimate upper bounds for
+   A and B. */
+#define LADSPA_PROPERTY_HARD_RT_CAPABLE 0x4
+
+#define LADSPA_IS_REALTIME(x)        ((x) & LADSPA_PROPERTY_REALTIME)
+#define LADSPA_IS_INPLACE_BROKEN(x)  ((x) & LADSPA_PROPERTY_INPLACE_BROKEN)
+#define LADSPA_IS_HARD_RT_CAPABLE(x) ((x) & LADSPA_PROPERTY_HARD_RT_CAPABLE)
+
+/*****************************************************************************/
+
+/* Plugin Ports: 
+
+   Plugins have `ports' that are inputs or outputs for audio or
+   data. Ports can communicate arrays of LADSPA_Data (for audio
+   inputs/outputs) or single LADSPA_Data values (for control
+   input/outputs). This information is encapsulated in the
+   LADSPA_PortDescriptor type which is assembled by ORing individual
+   properties together.
+
+   Note that a port must be an input or an output port but not both
+   and that a port must be a control or audio port but not both. */
+
+typedef int LADSPA_PortDescriptor;
+
+/* Property LADSPA_PORT_INPUT indicates that the port is an input. */
+#define LADSPA_PORT_INPUT   0x1
+
+/* Property LADSPA_PORT_OUTPUT indicates that the port is an output. */
+#define LADSPA_PORT_OUTPUT  0x2
+
+/* Property LADSPA_PORT_CONTROL indicates that the port is a control
+   port. */
+#define LADSPA_PORT_CONTROL 0x4
+
+/* Property LADSPA_PORT_AUDIO indicates that the port is a audio
+   port. */
+#define LADSPA_PORT_AUDIO   0x8
+
+#define LADSPA_IS_PORT_INPUT(x)   ((x) & LADSPA_PORT_INPUT)
+#define LADSPA_IS_PORT_OUTPUT(x)  ((x) & LADSPA_PORT_OUTPUT)
+#define LADSPA_IS_PORT_CONTROL(x) ((x) & LADSPA_PORT_CONTROL)
+#define LADSPA_IS_PORT_AUDIO(x)   ((x) & LADSPA_PORT_AUDIO)
+
+/*****************************************************************************/
+
+/* Plugin Port Range Hints: 
+
+   The host may wish to provide a representation of data entering or
+   leaving a plugin (e.g. to generate a GUI automatically). To make
+   this more meaningful, the plugin should provide `hints' to the host
+   describing the usual values taken by the data.
+   
+   Note that these are only hints. The host may ignore them and the
+   plugin must not assume that data supplied to it is meaningful. If
+   the plugin receives invalid input data it is expected to continue
+   to run without failure and, where possible, produce a sensible
+   output (e.g. a high-pass filter given a negative cutoff frequency
+   might switch to an all-pass mode).
+    
+   Hints are meaningful for all input and output ports but hints for
+   input control ports are expected to be particularly useful.
+   
+   More hint information is encapsulated in the
+   LADSPA_PortRangeHintDescriptor type which is assembled by ORing
+   individual hint types together. Hints may require further
+   LowerBound and UpperBound information.
+
+   All the hint information for a particular port is aggregated in the
+   LADSPA_PortRangeHint structure. */
+
+typedef int LADSPA_PortRangeHintDescriptor;
+
+/* Hint LADSPA_HINT_BOUNDED_BELOW indicates that the LowerBound field
+   of the LADSPA_PortRangeHint should be considered meaningful. The
+   value in this field should be considered the (inclusive) lower
+   bound of the valid range. If LADSPA_HINT_SAMPLE_RATE is also
+   specified then the value of LowerBound should be multiplied by the
+   sample rate. */
+#define LADSPA_HINT_BOUNDED_BELOW   0x1
+
+/* Hint LADSPA_HINT_BOUNDED_ABOVE indicates that the UpperBound field
+   of the LADSPA_PortRangeHint should be considered meaningful. The
+   value in this field should be considered the (inclusive) upper
+   bound of the valid range. If LADSPA_HINT_SAMPLE_RATE is also
+   specified then the value of UpperBound should be multiplied by the
+   sample rate. */
+#define LADSPA_HINT_BOUNDED_ABOVE   0x2
+
+/* Hint LADSPA_HINT_TOGGLED indicates that the data item should be
+   considered a Boolean toggle. Data less than or equal to zero should
+   be considered `off' or `false,' and data above zero should be
+   considered `on' or `true.' LADSPA_HINT_TOGGLED may not be used in
+   conjunction with any other hint except LADSPA_HINT_DEFAULT_0 or
+   LADSPA_HINT_DEFAULT_1. */
+#define LADSPA_HINT_TOGGLED         0x4
+
+/* Hint LADSPA_HINT_SAMPLE_RATE indicates that any bounds specified
+   should be interpreted as multiples of the sample rate. For
+   instance, a frequency range from 0Hz to the Nyquist frequency (half
+   the sample rate) could be requested by this hint in conjunction
+   with LowerBound = 0 and UpperBound = 0.5. Hosts that support bounds
+   at all must support this hint to retain meaning. */
+#define LADSPA_HINT_SAMPLE_RATE     0x8
+
+/* Hint LADSPA_HINT_LOGARITHMIC indicates that it is likely that the
+   user will find it more intuitive to view values using a logarithmic
+   scale. This is particularly useful for frequencies and gains. */
+#define LADSPA_HINT_LOGARITHMIC     0x10
+
+/* Hint LADSPA_HINT_INTEGER indicates that a user interface would
+   probably wish to provide a stepped control taking only integer
+   values. Any bounds set should be slightly wider than the actual
+   integer range required to avoid floating point rounding errors. For
+   instance, the integer set {0,1,2,3} might be described as [-0.1,
+   3.1]. */
+#define LADSPA_HINT_INTEGER         0x20
+
+/* The various LADSPA_HINT_HAS_DEFAULT_* hints indicate a `normal'
+   value for the port that is sensible as a default. For instance,
+   this value is suitable for use as an initial value in a user
+   interface or as a value the host might assign to a control port
+   when the user has not provided one. Defaults are encoded using a
+   mask so only one default may be specified for a port. Some of the
+   hints make use of lower and upper bounds, in which case the
+   relevant bound or bounds must be available and
+   LADSPA_HINT_SAMPLE_RATE must be applied as usual. The resulting
+   default must be rounded if LADSPA_HINT_INTEGER is present. Default
+   values were introduced in LADSPA v1.1. */
+#define LADSPA_HINT_DEFAULT_MASK    0x3C0
+
+/* This default values indicates that no default is provided. */
+#define LADSPA_HINT_DEFAULT_NONE    0x0
+
+/* This default hint indicates that the suggested lower bound for the
+   port should be used. */
+#define LADSPA_HINT_DEFAULT_MINIMUM 0x40
+
+/* This default hint indicates that a low value between the suggested
+   lower and upper bounds should be chosen. For ports with
+   LADSPA_HINT_LOGARITHMIC, this should be exp(log(lower) * 0.75 +
+   log(upper) * 0.25). Otherwise, this should be (lower * 0.75 + upper
+   * 0.25). */
+#define LADSPA_HINT_DEFAULT_LOW     0x80
+
+/* This default hint indicates that a middle value between the
+   suggested lower and upper bounds should be chosen. For ports with
+   LADSPA_HINT_LOGARITHMIC, this should be exp(log(lower) * 0.5 +
+   log(upper) * 0.5). Otherwise, this should be (lower * 0.5 + upper *
+   0.5). */
+#define LADSPA_HINT_DEFAULT_MIDDLE  0xC0
+
+/* This default hint indicates that a high value between the suggested
+   lower and upper bounds should be chosen. For ports with
+   LADSPA_HINT_LOGARITHMIC, this should be exp(log(lower) * 0.25 +
+   log(upper) * 0.75). Otherwise, this should be (lower * 0.25 + upper
+   * 0.75). */
+#define LADSPA_HINT_DEFAULT_HIGH    0x100
+
+/* This default hint indicates that the suggested upper bound for the
+   port should be used. */
+#define LADSPA_HINT_DEFAULT_MAXIMUM 0x140
+
+/* This default hint indicates that the number 0 should be used. Note
+   that this default may be used in conjunction with
+   LADSPA_HINT_TOGGLED. */
+#define LADSPA_HINT_DEFAULT_0       0x200
+
+/* This default hint indicates that the number 1 should be used. Note
+   that this default may be used in conjunction with
+   LADSPA_HINT_TOGGLED. */
+#define LADSPA_HINT_DEFAULT_1       0x240
+
+/* This default hint indicates that the number 100 should be used. */
+#define LADSPA_HINT_DEFAULT_100     0x280
+
+/* This default hint indicates that the Hz frequency of `concert A'
+   should be used. This will be 440 unless the host uses an unusual
+   tuning convention, in which case it may be within a few Hz. */
+#define LADSPA_HINT_DEFAULT_440     0x2C0
+
+#define LADSPA_IS_HINT_BOUNDED_BELOW(x)   ((x) & LADSPA_HINT_BOUNDED_BELOW)
+#define LADSPA_IS_HINT_BOUNDED_ABOVE(x)   ((x) & LADSPA_HINT_BOUNDED_ABOVE)
+#define LADSPA_IS_HINT_TOGGLED(x)         ((x) & LADSPA_HINT_TOGGLED)
+#define LADSPA_IS_HINT_SAMPLE_RATE(x)     ((x) & LADSPA_HINT_SAMPLE_RATE)
+#define LADSPA_IS_HINT_LOGARITHMIC(x)     ((x) & LADSPA_HINT_LOGARITHMIC)
+#define LADSPA_IS_HINT_INTEGER(x)         ((x) & LADSPA_HINT_INTEGER)
+
+#define LADSPA_IS_HINT_HAS_DEFAULT(x)     ((x) & LADSPA_HINT_DEFAULT_MASK)
+#define LADSPA_IS_HINT_DEFAULT_MINIMUM(x) (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_MINIMUM)
+#define LADSPA_IS_HINT_DEFAULT_LOW(x)     (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_LOW)
+#define LADSPA_IS_HINT_DEFAULT_MIDDLE(x)  (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_MIDDLE)
+#define LADSPA_IS_HINT_DEFAULT_HIGH(x)    (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_HIGH)
+#define LADSPA_IS_HINT_DEFAULT_MAXIMUM(x) (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_MAXIMUM)
+#define LADSPA_IS_HINT_DEFAULT_0(x)       (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_0)
+#define LADSPA_IS_HINT_DEFAULT_1(x)       (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_1)
+#define LADSPA_IS_HINT_DEFAULT_100(x)     (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                           == LADSPA_HINT_DEFAULT_100)
+#define LADSPA_IS_HINT_DEFAULT_440(x)     (((x) & LADSPA_HINT_DEFAULT_MASK)   \
+                                            == LADSPA_HINT_DEFAULT_440)
+
+typedef struct _LADSPA_PortRangeHint {
+
+  /* Hints about the port. */
+  LADSPA_PortRangeHintDescriptor HintDescriptor;
+
+  /* Meaningful when hint LADSPA_HINT_BOUNDED_BELOW is active. When
+     LADSPA_HINT_SAMPLE_RATE is also active then this value should be
+     multiplied by the relevant sample rate. */
+  LADSPA_Data LowerBound;
+
+  /* Meaningful when hint LADSPA_HINT_BOUNDED_ABOVE is active. When
+     LADSPA_HINT_SAMPLE_RATE is also active then this value should be
+     multiplied by the relevant sample rate. */
+  LADSPA_Data UpperBound;
+
+} LADSPA_PortRangeHint;
+
+/*****************************************************************************/
+
+/* Plugin Handles: 
+
+   This plugin handle indicates a particular instance of the plugin
+   concerned. It is valid to compare this to NULL (0 for C++) but
+   otherwise the host should not attempt to interpret it. The plugin
+   may use it to reference internal instance data. */
+
+typedef void * LADSPA_Handle;
+
+/*****************************************************************************/
+
+/* Descriptor for a Type of Plugin: 
+
+   This structure is used to describe a plugin type. It provides a
+   number of functions to examine the type, instantiate it, link it to
+   buffers and workspaces and to run it. */
+
+typedef struct _LADSPA_Descriptor { 
+
+  /* This numeric identifier indicates the plugin type
+     uniquely. Plugin programmers may reserve ranges of IDs from a
+     central body to avoid clashes. Hosts may assume that IDs are
+     below 0x1000000. */
+  unsigned long UniqueID;
+
+  /* This identifier can be used as a unique, case-sensitive
+     identifier for the plugin type within the plugin file. Plugin
+     types should be identified by file and label rather than by index
+     or plugin name, which may be changed in new plugin
+     versions. Labels must not contain white-space characters. */
+  const char * Label;
+
+  /* This indicates a number of properties of the plugin. */
+  LADSPA_Properties Properties;
+
+  /* This member points to the null-terminated name of the plugin
+     (e.g. "Sine Oscillator"). */
+  const char * Name;
+
+  /* This member points to the null-terminated string indicating the
+     maker of the plugin. This can be an empty string but not NULL. */
+  const char * Maker;
+
+  /* This member points to the null-terminated string indicating any
+     copyright applying to the plugin. If no Copyright applies the
+     string "None" should be used. */
+  const char * Copyright;
+
+  /* This indicates the number of ports (input AND output) present on
+     the plugin. */
+  unsigned long PortCount;
+
+  /* This member indicates an array of port descriptors. Valid indices
+     vary from 0 to PortCount-1. */
+  const LADSPA_PortDescriptor * PortDescriptors;
+
+  /* This member indicates an array of null-terminated strings
+     describing ports (e.g. "Frequency (Hz)"). Valid indices vary from
+     0 to PortCount-1. */
+  const char * const * PortNames;
+
+  /* This member indicates an array of range hints for each port (see
+     above). Valid indices vary from 0 to PortCount-1. */
+  const LADSPA_PortRangeHint * PortRangeHints;
+
+  /* This may be used by the plugin developer to pass any custom
+     implementation data into an instantiate call. It must not be used
+     or interpreted by the host. It is expected that most plugin
+     writers will not use this facility as LADSPA_Handle should be
+     used to hold instance data. */
+  void * ImplementationData;
+
+  /* This member is a function pointer that instantiates a plugin. A
+     handle is returned indicating the new plugin instance. The
+     instantiation function accepts a sample rate as a parameter. The
+     plugin descriptor from which this instantiate function was found
+     must also be passed. This function must return NULL if
+     instantiation fails. 
+
+     Note that instance initialisation should generally occur in
+     activate() rather than here. */
+  LADSPA_Handle (*instantiate)(const struct _LADSPA_Descriptor * Descriptor,
+                               unsigned long                     SampleRate);
+
+  /* This member is a function pointer that connects a port on an
+     instantiated plugin to a memory location at which a block of data
+     for the port will be read/written. The data location is expected
+     to be an array of LADSPA_Data for audio ports or a single
+     LADSPA_Data value for control ports. Memory issues will be
+     managed by the host. The plugin must read/write the data at these
+     locations every time run() or run_adding() is called and the data
+     present at the time of this connection call should not be
+     considered meaningful.
+
+     connect_port() may be called more than once for a plugin instance
+     to allow the host to change the buffers that the plugin is
+     reading or writing. These calls may be made before or after
+     activate() or deactivate() calls.
+
+     connect_port() must be called at least once for each port before
+     run() or run_adding() is called. When working with blocks of
+     LADSPA_Data the plugin should pay careful attention to the block
+     size passed to the run function as the block allocated may only
+     just be large enough to contain the block of samples.
+
+     Plugin writers should be aware that the host may elect to use the
+     same buffer for more than one port and even use the same buffer
+     for both input and output (see LADSPA_PROPERTY_INPLACE_BROKEN).
+     However, overlapped buffers or use of a single buffer for both
+     audio and control data may result in unexpected behaviour. */
+   void (*connect_port)(LADSPA_Handle Instance,
+                        unsigned long Port,
+                        LADSPA_Data * DataLocation);
+
+  /* This member is a function pointer that initialises a plugin
+     instance and activates it for use. This is separated from
+     instantiate() to aid real-time support and so that hosts can
+     reinitialise a plugin instance by calling deactivate() and then
+     activate(). In this case the plugin instance must reset all state
+     information dependent on the history of the plugin instance
+     except for any data locations provided by connect_port() and any
+     gain set by set_run_adding_gain(). If there is nothing for
+     activate() to do then the plugin writer may provide a NULL rather
+     than an empty function.
+
+     When present, hosts must call this function once before run() (or
+     run_adding()) is called for the first time. This call should be
+     made as close to the run() call as possible and indicates to
+     real-time plugins that they are now live. Plugins should not rely
+     on a prompt call to run() after activate(). activate() may not be
+     called again unless deactivate() is called first. Note that
+     connect_port() may be called before or after a call to
+     activate(). */
+  void (*activate)(LADSPA_Handle Instance);
+
+  /* This method is a function pointer that runs an instance of a
+     plugin for a block. Two parameters are required: the first is a
+     handle to the particular instance to be run and the second
+     indicates the block size (in samples) for which the plugin
+     instance may run.
+
+     Note that if an activate() function exists then it must be called
+     before run() or run_adding(). If deactivate() is called for a
+     plugin instance then the plugin instance may not be reused until
+     activate() has been called again.
+
+     If the plugin has the property LADSPA_PROPERTY_HARD_RT_CAPABLE
+     then there are various things that the plugin should not do
+     within the run() or run_adding() functions (see above). */
+  void (*run)(LADSPA_Handle Instance,
+              unsigned long SampleCount);
+
+  /* This method is a function pointer that runs an instance of a
+     plugin for a block. This has identical behaviour to run() except
+     in the way data is output from the plugin. When run() is used,
+     values are written directly to the memory areas associated with
+     the output ports. However when run_adding() is called, values
+     must be added to the values already present in the memory
+     areas. Furthermore, output values written must be scaled by the
+     current gain set by set_run_adding_gain() (see below) before
+     addition.
+
+     run_adding() is optional. When it is not provided by a plugin,
+     this function pointer must be set to NULL. When it is provided,
+     the function set_run_adding_gain() must be provided also. */
+  void (*run_adding)(LADSPA_Handle Instance,
+                     unsigned long SampleCount);
+
+  /* This method is a function pointer that sets the output gain for
+     use when run_adding() is called (see above). If this function is
+     never called the gain is assumed to default to 1. Gain
+     information should be retained when activate() or deactivate()
+     are called.
+
+     This function should be provided by the plugin if and only if the
+     run_adding() function is provided. When it is absent this
+     function pointer must be set to NULL. */
+  void (*set_run_adding_gain)(LADSPA_Handle Instance,
+                              LADSPA_Data   Gain);
+
+  /* This is the counterpart to activate() (see above). If there is
+     nothing for deactivate() to do then the plugin writer may provide
+     a NULL rather than an empty function.
+
+     Hosts must deactivate all activated units after they have been
+     run() (or run_adding()) for the last time. This call should be
+     made as close to the last run() call as possible and indicates to
+     real-time plugins that they are no longer live. Plugins should
+     not rely on prompt deactivation. Note that connect_port() may be
+     called before or after a call to deactivate().
+
+     Deactivation is not similar to pausing as the plugin instance
+     will be reinitialised when activate() is called to reuse it. */
+  void (*deactivate)(LADSPA_Handle Instance);
+
+  /* Once an instance of a plugin has been finished with it can be
+     deleted using the following function. The instance handle passed
+     ceases to be valid after this call.
+  
+     If activate() was called for a plugin instance then a
+     corresponding call to deactivate() must be made before cleanup()
+     is called. */
+  void (*cleanup)(LADSPA_Handle Instance);
+
+} LADSPA_Descriptor;
+
+/**********************************************************************/
+
+/* Accessing a Plugin: */
+
+/* The exact mechanism by which plugins are loaded is host-dependent,
+   however all most hosts will need to know is the name of shared
+   object file containing the plugin types. To allow multiple hosts to
+   share plugin types, hosts may wish to check for environment
+   variable LADSPA_PATH. If present, this should contain a
+   colon-separated path indicating directories that should be searched
+   (in order) when loading plugin types.
+
+   A plugin programmer must include a function called
+   "ladspa_descriptor" with the following function prototype within
+   the shared object file. This function will have C-style linkage (if
+   you are using C++ this is taken care of by the `extern "C"' clause
+   at the top of the file).
+
+   A host will find the plugin shared object file by one means or
+   another, find the ladspa_descriptor() function, call it, and
+   proceed from there.
+
+   Plugin types are accessed by index (not ID) using values from 0
+   upwards. Out of range indexes must result in this function
+   returning NULL, so the plugin count can be determined by checking
+   for the least index that results in NULL being returned. */
+
+const LADSPA_Descriptor * ladspa_descriptor(unsigned long Index);
+
+/* Datatype corresponding to the ladspa_descriptor() function. */
+typedef const LADSPA_Descriptor * 
+(*LADSPA_Descriptor_Function)(unsigned long Index);
+
+/**********************************************************************/
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* LADSPA_INCLUDED */
+
+/* EOF */
--- a/Plugins/Makefile.am	Sat Dec 10 08:42:49 2005 -0800
+++ b/Plugins/Makefile.am	Sat Dec 10 13:54:12 2005 -0800
@@ -1,1 +1,1 @@
-SUBDIRS = Input Output Visualization General
+SUBDIRS = Input Output Visualization General Effect
--- a/configure.ac	Sat Dec 10 08:42:49 2005 -0800
+++ b/configure.ac	Sat Dec 10 13:54:12 2005 -0800
@@ -745,6 +745,8 @@
 	Plugins/General/Makefile
 	Plugins/General/song_change/Makefile
 	Plugins/General/lirc/Makefile
+	Plugins/Effect/Makefile
+	Plugins/Effect/ladspa/Makefile
         po/Makefile.in
         intl/Makefile
         icons/Makefile
@@ -806,6 +808,10 @@
 echo "  Song Change:                            yes"
 echo "  LIRC:                                   $have_lirc"
 echo
+echo "  Effect"
+echo "  ------"
+echo "  LADSPA effects host (ladspa):           yes"
+echo
 echo "  Visualization"
 echo "  -------------"
 echo "  Blur Scope:                             yes"