[xiph-cvs] cvs commit: vorbis/lib lpc.c

Monty xiphmont at xiph.org
Fri Mar 7 23:15:32 PST 2003



xiphmont    03/03/08 02:15:32

  Modified:    lib      lpc.c
  Log:
  My lpc filter stability fix introduced a new, stupid uninitialized data bug.
  Fix that.
  
  Monty

Revision  Changes    Path
1.37      +2 -2      vorbis/lib/lpc.c

Index: lpc.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/lpc.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- lpc.c	7 Mar 2003 09:13:30 -0000	1.36
+++ lpc.c	8 Mar 2003 07:15:32 -0000	1.37
@@ -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 @@
     double r= -aut[i+1];
 
     if(error==0){
-      memset(lpc,0,m*sizeof(*lpc));
+      memset(lpci,0,m*sizeof(*lpci));
       return 0;
     }
 

<p><p>--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list