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

Michael Smith msmith at xiph.org
Sun Jul 1 09:10:08 PDT 2001



msmith      01/07/01 09:10:08

  Modified:    lib      psy.c
  Log:
  Silence warning due to bad cast.

Revision  Changes    Path
1.49      +2 -2      vorbis/lib/psy.c

Index: psy.c
===================================================================
RCS file: /usr/local/cvsroot/vorbis/lib/psy.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- psy.c	2001/06/18 22:19:26	1.48
+++ psy.c	2001/07/01 16:10:07	1.49
@@ -11,7 +11,7 @@
  ********************************************************************
 
  function: psychoacoustics not including preecho
- last mod: $Id: psy.c,v 1.48 2001/06/18 22:19:26 xiphmont Exp $
+ last mod: $Id: psy.c,v 1.49 2001/07/01 16:10:07 msmith Exp $
 
  ********************************************************************/
 
@@ -693,7 +693,7 @@
                       p->vi->noisewindowhimin,
                       p->noisemedian,
                       p->noiseoffset,
-		      (const long *)(p->vi->noisewindowfixed));
+		      p->vi->noisewindowfixed);
     /* suppress any noise curve > specmax+p->vi->noisemaxsupp */
     for(i=0;i<n;i++)
       if(mask[i]>specmax+p->vi->noisemaxsupp)

--- >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