[xiph-commits] r19022 - trunk/squishyball

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Mon Nov 25 15:13:00 PST 2013


Author: xiphmont
Date: 2013-11-25 15:13:00 -0800 (Mon, 25 Nov 2013)
New Revision: 19022

Modified:
   trunk/squishyball/audio.c
   trunk/squishyball/configure.ac
Log:
Correct a serious bug in squishyball stereo downmix that was blackholing entire channels.



Modified: trunk/squishyball/audio.c
===================================================================
--- trunk/squishyball/audio.c	2013-11-22 15:20:17 UTC (rev 19021)
+++ trunk/squishyball/audio.c	2013-11-25 23:13:00 UTC (rev 19022)
@@ -163,7 +163,7 @@
 }
 
 /* non-normalized */
-static const int left_mix[33]={
+static const float left_mix[33]={
   1.,    /* A: M */
   1.,    /* B: L */
   0.,    /* C: R */
@@ -179,7 +179,7 @@
   0
 };
 
-static const int right_mix[33]={
+static const float right_mix[33]={
   1.,    /* A: M */
   0.,    /* B: L */
   1.,    /* C: R */

Modified: trunk/squishyball/configure.ac
===================================================================
--- trunk/squishyball/configure.ac	2013-11-22 15:20:17 UTC (rev 19021)
+++ trunk/squishyball/configure.ac	2013-11-25 23:13:00 UTC (rev 19022)
@@ -4,7 +4,7 @@
 cflags_save="$CFLAGS"
 AC_PREREQ(2.57)
 AC_INIT(main.c)
-AM_INIT_AUTOMAKE(squishyball, 20131114, [vorbis-dev at xiph.org])
+AM_INIT_AUTOMAKE(squishyball, 20131125, [vorbis-dev at xiph.org])
 AC_CONFIG_FILES([Makefile])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
 



More information about the commits mailing list