aboutsummaryrefslogtreecommitdiffstats
path: root/src/fast_crossfade_4410.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fast_crossfade_4410.c')
-rw-r--r--src/fast_crossfade_4410.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/fast_crossfade_4410.c b/src/fast_crossfade_4410.c
index 1898175..50dc3b0 100644
--- a/src/fast_crossfade_4410.c
+++ b/src/fast_crossfade_4410.c
@@ -43,7 +43,6 @@ typedef struct {
LADSPA_Data *output_buffer;
} XFADE;
-
/* Construct a new plugin instance */
LADSPA_Handle
XFADE_instantiate(const LADSPA_Descriptor * descriptor, unsigned long srate)
@@ -51,7 +50,6 @@ XFADE_instantiate(const LADSPA_Descriptor * descriptor, unsigned long srate)
return (LADSPA_Handle)malloc(sizeof(XFADE));
}
-
/* Connect a port to a data location */
void
XFADE_connect_port(LADSPA_Handle instance,
@@ -76,7 +74,6 @@ XFADE_connect_port(LADSPA_Handle instance,
}
}
-
void
XFADE_run_ar(LADSPA_Handle instance, unsigned long nframes)
{
@@ -109,14 +106,12 @@ XFADE_run_ar(LADSPA_Handle instance, unsigned long nframes)
}
}
-
void
XFADE_cleanup(LADSPA_Handle instance)
{
free(instance);
}
-
LADSPA_Descriptor *xfade_descriptor = NULL;
/* Called automatically when the plugin library is first loaded. */
@@ -175,7 +170,6 @@ _init()
}
-
void
XFADE_delete_descriptors(LADSPA_Descriptor * psdescriptors)
{
@@ -195,7 +189,6 @@ XFADE_delete_descriptors(LADSPA_Descriptor * psdescriptors)
}
}
-
/* Called automatically when the library is unloaded. */
void
_fini()
@@ -203,7 +196,6 @@ _fini()
XFADE_delete_descriptors(xfade_descriptor);
}
-
/* Return a descriptor of the requested plugin type. */
const LADSPA_Descriptor *
ladspa_descriptor(unsigned long index)