aboutsummaryrefslogtreecommitdiffstats
path: root/src/prob_switch_2667.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit0a004fcb5b09812e3a6d4d7ed237034650b90d45 (patch)
treebfde8e2fb4e81ea1913f67ed72b5e54bdcb63193 /src/prob_switch_2667.c
parent2cb99396df0ee23d0c7fa12bb70d69ed45775978 (diff)
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/omins@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/prob_switch_2667.c')
-rw-r--r--src/prob_switch_2667.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/prob_switch_2667.c b/src/prob_switch_2667.c
index fe35fdc..2d34a43 100644
--- a/src/prob_switch_2667.c
+++ b/src/prob_switch_2667.c
@@ -34,7 +34,6 @@
#define PROBSWITCH_PROB 2
#define PROBSWITCH_OUTPUT 3
-
/* All state information for plugin */
typedef struct
{
@@ -45,7 +44,6 @@ typedef struct
LADSPA_Data* output;
} ProbSwitch;
-
/* Construct a new plugin instance */
LADSPA_Handle
probswitch_instantiate(const LADSPA_Descriptor* descriptor,
@@ -54,7 +52,6 @@ probswitch_instantiate(const LADSPA_Descriptor* descriptor,
return (LADSPA_Handle)malloc(sizeof(ProbSwitch));
}
-
/* Connect a port to a data location */
void
probswitch_connect_port(LADSPA_Handle instance,
@@ -80,7 +77,6 @@ probswitch_connect_port(LADSPA_Handle instance,
}
}
-
void
probswitch_run_cr(LADSPA_Handle instance, unsigned long nframes)
{
@@ -107,7 +103,6 @@ probswitch_run_cr(LADSPA_Handle instance, unsigned long nframes)
}
-
void
probswitch_run_ar(LADSPA_Handle instance, unsigned long nframes)
{
@@ -131,18 +126,15 @@ probswitch_run_ar(LADSPA_Handle instance, unsigned long nframes)
}
}
-
void
probswitch_cleanup(LADSPA_Handle instance)
{
free(instance);
}
-
LADSPA_Descriptor* prob_switch_cr_desc = NULL;
LADSPA_Descriptor* prob_switch_ar_desc = NULL;
-
/* Called automatically when the plugin library is first loaded. */
void
_init()
@@ -231,7 +223,6 @@ _init()
}
}
-
void
probswitch_delete_descriptor(LADSPA_Descriptor* psDescriptor)
{
@@ -250,7 +241,6 @@ probswitch_delete_descriptor(LADSPA_Descriptor* psDescriptor)
}
}
-
/* Called automatically when the library is unloaded. */
void
_fini()
@@ -259,7 +249,6 @@ _fini()
probswitch_delete_descriptor(prob_switch_ar_desc);
}
-
/* Return a descriptor of the requested plugin type. */
const LADSPA_Descriptor*
ladspa_descriptor(unsigned long Index)