search for: splitcach

Displaying 1 result from an estimated 1 matches for "splitcach".

Did you mean: splitcache
2013 Apr 24
0
vorbis-psy compilation fix
...7.586436790 +0400 @@ -1231,17 +1231,17 @@ for(i=0;i<n;i++)c[i]=ch[i]; } -void spx_drft_forward(struct drft_lookup *l,float *data){ +EXPORT void spx_drft_forward(struct drft_lookup *l,float *data){ if(l->n==1)return; drftf1(l->n,data,l->trigcache,l->trigcache+l->n,l->splitcache); } -void spx_drft_backward(struct drft_lookup *l,float *data){ +EXPORT void spx_drft_backward(struct drft_lookup *l,float *data){ if (l->n==1)return; drftb1(l->n,data,l->trigcache,l->trigcache+l->n,l->splitcache); } -void spx_drft_init(struct drft_lookup *l,int n) +E...