aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-02-09 18:23:57 +0000
committerDavid Robillard <d@drobilla.net>2008-02-09 18:23:57 +0000
commit5be21dcc4c11e702b7c809c2413927ad203033cd (patch)
treee22facf60328643e614630e0f3ee841e91928417 /src
parent6b79d8992d323845bb982f205c9b170ac8da4432 (diff)
Use Raul::TimeStamp (LV2 compatible typed 32:32 fixed timestamp) everywhere.
Fix initial size of Patchage messages window. Machina disabled for now (transitioning to generic timestamps). git-svn-id: http://svn.drobilla.net/lad/omins@1133 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/formant_filter_4300.c2
-rw-r--r--src/waveguide_mesh_2670.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/formant_filter_4300.c b/src/formant_filter_4300.c
index aa16762..ab7dbc7 100644
--- a/src/formant_filter_4300.c
+++ b/src/formant_filter_4300.c
@@ -75,7 +75,7 @@ typedef struct
/* Linear interpolation */
-inline float
+inline static float
linear(float bot, float top, float pos, float val1, float val2)
{
float t = (pos - bot) / (top - bot);
diff --git a/src/waveguide_mesh_2670.c b/src/waveguide_mesh_2670.c
index 4d19e67..4f9fc42 100644
--- a/src/waveguide_mesh_2670.c
+++ b/src/waveguide_mesh_2670.c
@@ -146,7 +146,7 @@ wgmesh_connect_port(LADSPA_Handle instance,
}
-inline void excite_mesh(WgMesh* plugin, LADSPA_Data power, LADSPA_Data ex_x, LADSPA_Data ex_y)
+inline static void excite_mesh(WgMesh* plugin, LADSPA_Data power, LADSPA_Data ex_x, LADSPA_Data ex_y)
{
int i=ex_x,j=ex_y;
LADSPA_Data temp;