summaryrefslogtreecommitdiff
path: root/extra/dssi
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-10-17 14:16:38 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-10-17 14:16:38 +0000
commite1b3d592f43a99f4ed7c91971deda6ce8414dd69 (patch)
tree38fecdc19b201d4d28df13c22e9b3b45bb469e4b /extra/dssi
parentd286d980d2ff42151e9bc81ec348c864c24f9cc4 (diff)
Mon Oct 17 14:16:38 UTC 2011
Diffstat (limited to 'extra/dssi')
-rw-r--r--extra/dssi/LICENSE77
1 files changed, 0 insertions, 77 deletions
diff --git a/extra/dssi/LICENSE b/extra/dssi/LICENSE
deleted file mode 100644
index ddef4f23b..000000000
--- a/extra/dssi/LICENSE
+++ /dev/null
@@ -1,77 +0,0 @@
-Licensing
----------
-
-The DSSI API itself (dssi.h) is licensed under the GNU Lesser General
-Public License. See COPYING for details.
-
-The jack-dssi-host is provided under a BSD-style license. This means
-you can do anything you want with it so long as you retain the
-copyright attribution and license information. See the source files
-for details.
-
-Licensing for the files in the examples directory may vary: please
-check the individual files for details. Most of them are in the
-public domain, which means you can use them for anything you want.
-
-
-
-/* jack-dssi-host.c
- *
- * DSSI Soft Synth Interface
- *
- * This is a host for DSSI plugins. It listens for MIDI events on an
- * ALSA sequencer port, delivers them to DSSI synths and outputs the
- * result via JACK.
- *
- * This program expects the names of up to 16 DSSI synth plugins, in
- * the form '<dll-name>:<label>',* to be provided on the command line.
- * If just '<dll-name>' is provided, the first plugin in the DLL is
- * is used. MIDI channels are assigned to each plugin instance, in
- * order, beginning with channel 0 (zero-based). A plugin may be
- * easily instantiated multiple times by preceding its name and label
- * with a dash followed immediately by the desired number of instances,
- * e.g. '-3 my_plugins.so:zoomy' would create three instances of the
- * 'zoomy' plugin.
- */
-
-/*
- * Copyright 2004, 2009 Chris Cannam, Steve Harris and Sean Bolton.
- *
- * Permission to use, copy, modify, distribute, and sell this software
- * for any purpose is hereby granted without fee, provided that the
- * above copyright notice and this permission notice are included in
- * all copies or substantial portions of the software.
- */
-
-
-/*
- * This program is in the public domain
- *
- * $Id: dssi_osc_send.c,v 1.5 2004/07/04 22:24:51 smbolton Exp $
- */
-
-/*
- * This program is in the public domain
- *
- * $Id: dssi_osc_update.c,v 1.6 2005/10/12 17:08:26 smbolton Exp $
- */
-
-/* less_trivial_synth.c
-
- DSSI Soft Synth Interface
- Constructed by Chris Cannam, Steve Harris and Sean Bolton
-
- This is an example DSSI synth plugin written by Steve Harris.
-
- This example file is in the public domain.
-*/
-
-/* trivial_sampler.c
-
- DSSI Soft Synth Interface
- Constructed by Chris Cannam, Steve Harris and Sean Bolton
-
- A straightforward DSSI plugin sampler.
-
- This example file is in the public domain.
-*/