Beispiel #1
0
static void cleanupGong(LADSPA_Handle instance) {
	Gong *plugin_data = (Gong *)instance;
	unsigned int i;

	for (i = 0; i < 8; i++) {
	  waveguide_nl_free(plugin_data->w[i]);
	}
	free(plugin_data->w);
	free(plugin_data->out);
	free(instance);
}
Beispiel #2
0
static void cleanupPlate(LADSPA_Handle instance) {
#line 85 "plate_1423.xml"
	Plate *plugin_data = (Plate *)instance;
	unsigned int i;

	for (i = 0; i < 8; i++) {
	  waveguide_nl_free(plugin_data->w[i]);
	}
	free(plugin_data->w);
	free(plugin_data->out);
	free(instance);
}