[xiph-commits] r17297 - branches/lowmem-branch/Tremolo

robin at svn.xiph.org robin at svn.xiph.org
Sun Jun 20 15:18:14 PDT 2010


Author: robin
Date: 2010-06-20 15:18:14 -0700 (Sun, 20 Jun 2010)
New Revision: 17297

Modified:
   branches/lowmem-branch/Tremolo/mdct.c
Log:
Fix typo in end of mdct routine that was causing corruption of some
streams - thanks to Stuart Fisher for the pointer to the problem stream.



Modified: branches/lowmem-branch/Tremolo/mdct.c
===================================================================
--- branches/lowmem-branch/Tremolo/mdct.c	2010-06-18 09:53:51 UTC (rev 17296)
+++ branches/lowmem-branch/Tremolo/mdct.c	2010-06-20 22:18:14 UTC (rev 17297)
@@ -438,7 +438,7 @@
   mdct_step8(in,n,step>>2);
 #else
   step = ARM_SUFFIX(mdct_backward)(n, in);
-  if (step < 1)
+  if (step <= 1)
     mdct_step8(in,n,step);
 #endif
 }
@@ -570,4 +570,3 @@
 #endif
   }
 }
-



More information about the commits mailing list