Converted a few double-precision constants to single precision

This commit is contained in:
Jean-Marc Valin 2010-04-16 20:57:56 -04:00
parent 3ff5e4c2dc
commit 628c025373
6 changed files with 31 additions and 31 deletions

View file

@ -83,7 +83,7 @@ void clt_mdct_init(mdct_lookup *l,int N)
#endif
#else
for (i=0;i<N2;i++)
l->trig[i] = cos(2*M_PI*(i+1./8.)/N);
l->trig[i] = cos(2*M_PI*(i+.125f)/N);
#endif
}