forked from pool/ladspa
This commit is contained in:
56
swh-readonly.dif
Normal file
56
swh-readonly.dif
Normal file
@@ -0,0 +1,56 @@
|
||||
--- delay_1898.c
|
||||
+++ delay_1898.c
|
||||
@@ -218,7 +218,7 @@
|
||||
Delay_n *plugin_data = (Delay_n *)instance;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
||||
@@ -312,7 +312,7 @@
|
||||
LADSPA_Data run_adding_gain = plugin_data->run_adding_gain;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
||||
@@ -493,7 +493,7 @@
|
||||
Delay_l *plugin_data = (Delay_l *)instance;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
||||
@@ -575,7 +575,7 @@
|
||||
LADSPA_Data run_adding_gain = plugin_data->run_adding_gain;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
||||
@@ -744,7 +744,7 @@
|
||||
Delay_c *plugin_data = (Delay_c *)instance;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
||||
@@ -828,7 +828,7 @@
|
||||
LADSPA_Data run_adding_gain = plugin_data->run_adding_gain;
|
||||
|
||||
/* Input (array of floats of length sample_count) */
|
||||
- const LADSPA_Data * const in = plugin_data->in;
|
||||
+ const LADSPA_Data * in = plugin_data->in;
|
||||
|
||||
/* Output (array of floats of length sample_count) */
|
||||
LADSPA_Data * const out = plugin_data->out;
|
Reference in New Issue
Block a user