From c656a4ffdd98eb870916e2adcb9d74fc4b592043 Mon Sep 17 00:00:00 2001 From: musil Date: Wed, 24 Oct 2007 15:57:05 +0000 Subject: union tabfudge_d instead tabfudge svn path=/trunk/externals/iemlib/; revision=8873 --- iemlib1/src/iem_cot4~.c | 4 ++-- iemlib2/src/fade~.c | 4 ++-- iemlib2/src/m2f~.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/iemlib1/src/iem_cot4~.c b/iemlib1/src/iem_cot4~.c index b4f7d52..c4e5dc7 100644 --- a/iemlib1/src/iem_cot4~.c +++ b/iemlib1/src/iem_cot4~.c @@ -36,7 +36,7 @@ static t_int *iem_cot4_tilde_perform(t_int *w) double dphase; int normhipart; int32 mytfi; - union tabfudge tf; + union tabfudge_d tf; tf.tf_d = UNITBIT32; normhipart = tf.tf_i[HIOFFSET]; @@ -128,7 +128,7 @@ static void iem_cot4_tilde_maketable(void) { int i; t_float *fp, phase, fff, phsinc = 0.5*3.141592653 / ((t_float)COSTABSIZE); - union tabfudge tf; + union tabfudge_d tf; if(!iem_cot4_tilde_table_sin) { diff --git a/iemlib2/src/fade~.c b/iemlib2/src/fade~.c index 5ff4fa5..011ab56 100644 --- a/iemlib2/src/fade~.c +++ b/iemlib2/src/fade~.c @@ -63,7 +63,7 @@ static t_int *fade_tilde_perform(t_int *w) t_float *tab = x->x_table, *addr, f1, f2, frac; double dphase; int normhipart; - union tabfudge tf; + union tabfudge_d tf; tf.tf_d = UNITBIT32; normhipart = tf.tf_i[HIOFFSET]; @@ -114,7 +114,7 @@ static void fade_tilde_maketable(void) { int i; t_float *fp, phase, fff,phsinc = 0.5*3.141592653 / ((t_float)COSTABSIZE*0.99999); - union tabfudge tf; + union tabfudge_d tf; if(!iem_fade_tilde_table_sin) { diff --git a/iemlib2/src/m2f~.c b/iemlib2/src/m2f~.c index 47060e5..5968b3e 100644 --- a/iemlib2/src/m2f~.c +++ b/iemlib2/src/m2f~.c @@ -40,7 +40,7 @@ static t_int *m2f_tilde_perform(t_int *w) t_float *tab = iem_m2f_tilde_table, *addr, f1, f2, frac, iinn; double dphase; int normhipart; - union tabfudge tf; + union tabfudge_d tf; tf.tf_d = UNITBIT32; normhipart = tf.tf_i[HIOFFSET]; @@ -92,7 +92,7 @@ static void m2f_tilde_dsp(t_m2f_tilde *x, t_signal **sp) static void m2f_tilde_maketable(void) { - union tabfudge tf; + union tabfudge_d tf; if(!iem_m2f_tilde_table) { -- cgit v1.2.1