From 5be21dcc4c11e702b7c809c2413927ad203033cd Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 9 Feb 2008 18:23:57 +0000 Subject: 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 --- src/formant_filter_4300.c | 2 +- src/waveguide_mesh_2670.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit v1.2.1