From 8dea83a40c846893ff92567be829a94c7909c437 Mon Sep 17 00:00:00 2001 From: Monty Date: Sat, 8 Mar 2003 07:15:32 +0000 Subject: My lpc filter stability fix introduced a new, stupid uninitialized data bug. Fix that. Monty svn path=/trunk/vorbis/; revision=4448 --- lib/lpc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/lpc.c') diff --git a/lib/lpc.c b/lib/lpc.c index cb41d2d5..7fabe84f 100644 --- a/lib/lpc.c +++ b/lib/lpc.c @@ -11,7 +11,7 @@ ******************************************************************** function: LPC low level routines - last mod: $Id: lpc.c,v 1.36 2003/03/07 09:13:30 xiphmont Exp $ + last mod: $Id: lpc.c,v 1.37 2003/03/08 07:15:32 xiphmont Exp $ ********************************************************************/ @@ -80,7 +80,7 @@ float vorbis_lpc_from_data(float *data,float *lpci,int n,int m){ double r= -aut[i+1]; if(error==0){ - memset(lpc,0,m*sizeof(*lpc)); + memset(lpci,0,m*sizeof(*lpci)); return 0; } -- cgit v1.2.1