From 0a004fcb5b09812e3a6d4d7ed237034650b90d45 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 16 Apr 2011 19:02:36 +0000 Subject: Squeeze blank lines and delete trailing whitespace. git-svn-id: http://svn.drobilla.net/lad/trunk/omins@3152 a436a847-0d15-0410-975c-d299462d15a1 --- src/comparison_4440.c | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'src/comparison_4440.c') diff --git a/src/comparison_4440.c b/src/comparison_4440.c index e377223..7c4e15c 100644 --- a/src/comparison_4440.c +++ b/src/comparison_4440.c @@ -33,7 +33,6 @@ #define COMP_A_LARGER 4 #define COMP_EQUAL 5 - /* All state information for plugin */ typedef struct { /* Ports */ @@ -45,7 +44,6 @@ typedef struct { LADSPA_Data *equal_buffer; } Comp; - /* Construct a new plugin instance */ LADSPA_Handle comp_instantiate(const LADSPA_Descriptor* descriptor, @@ -61,7 +59,6 @@ comp_instantiate(const LADSPA_Descriptor* descriptor, return (LADSPA_Handle)plugin; } - /* Connect a port to a data location */ void comp_connect_port(LADSPA_Handle instance, @@ -93,7 +90,6 @@ comp_connect_port(LADSPA_Handle instance, } } - void comp_run_ac(LADSPA_Handle instance, unsigned long nframes) { @@ -114,7 +110,6 @@ comp_run_ac(LADSPA_Handle instance, unsigned long nframes) } } - void comp_run_aa(LADSPA_Handle instance, unsigned long nframes) { @@ -135,18 +130,15 @@ comp_run_aa(LADSPA_Handle instance, unsigned long nframes) } } - void comp_cleanup(LADSPA_Handle instance) { free(instance); } - LADSPA_Descriptor* comp_ac_desc = NULL; LADSPA_Descriptor* comp_aa_desc = NULL; - /* Called automatically when the plugin library is first loaded. */ void _init() @@ -247,7 +239,6 @@ _init() } } - void comp_delete_descriptor(LADSPA_Descriptor* psDescriptor) { @@ -266,7 +257,6 @@ comp_delete_descriptor(LADSPA_Descriptor* psDescriptor) } } - /* Called automatically when the library is unloaded. */ void _fini() @@ -275,7 +265,6 @@ _fini() comp_delete_descriptor(comp_aa_desc); } - /* Return a descriptor of the requested plugin type. */ const LADSPA_Descriptor* ladspa_descriptor(unsigned long Index) -- cgit v1.2.1