diff options
author | Tim Angus <tim.angus@roslin.ed.ac.uk> | 2014-08-27 12:40:45 +0100 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2014-08-28 11:20:29 +0100 |
commit | d8a3ee41876d988698fbe350eb09a5bbc01a2dca (patch) | |
tree | 3ccaf0cf2ba59ec1c8f6dbccf21c277247409fd0 | |
parent | 346af6847163601e4e38aa316924996e6841988c (diff) |
There have been 0 days since the last compiler warning
-rw-r--r-- | src/libvorbis-1.3.4/lib/lsp.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/libvorbis-1.3.4/lib/lsp.c b/src/libvorbis-1.3.4/lib/lsp.c index c7860351..b1b3aa6e 100644 --- a/src/libvorbis-1.3.4/lib/lsp.c +++ b/src/libvorbis-1.3.4/lib/lsp.c @@ -309,7 +309,6 @@ static int comp(const void *a,const void *b){ #define EPSILON 10e-7 static int Laguerre_With_Deflation(float *a,int ord,float *r){ int i,m; - double lastdelta; double *defl=alloca(sizeof(*defl)*(ord+1)); for(i=0;i<=ord;i++)defl[i]=a[i]; @@ -346,7 +345,6 @@ static int Laguerre_With_Deflation(float *a,int ord,float *r){ if(delta<0.f)delta*=-1; if(fabs(delta/new)<10e-12)break; - lastdelta=delta; } r[m-1]=new; |