[xiph-commits] r7952 - trunk/postfish

xiphmont at motherfish-iii.xiph.org xiphmont at motherfish-iii.xiph.org
Sat Oct 9 22:44:14 PDT 2004


Author: xiphmont
Date: 2004-10-09 22:44:13 -0700 (Sat, 09 Oct 2004)
New Revision: 7952

Modified:
   trunk/postfish/Makefile
   trunk/postfish/mix.c
   trunk/postfish/version.h
Log:
Fix a cosmetic feedback bug in the master mix attenuation panel;
reverb was not being reported correctly to the display.



Modified: trunk/postfish/Makefile
===================================================================
--- trunk/postfish/Makefile	2004-10-10 02:38:05 UTC (rev 7951)
+++ trunk/postfish/Makefile	2004-10-10 05:44:13 UTC (rev 7952)
@@ -10,7 +10,7 @@
 
 # use the below for x86 and most other platforms where 'float' is 32 bit IEEE754
 
-ADD_DEF= -DUGLY_IEEE754_FLOAT32_HACK=1 
+ADD_DEF= -DUGLY_IEEE754_FLOAT32_HACK=1 -march=athlon-mp
 
 # use the below for anything without IEE754 floats (eg, VAX)
 

Modified: trunk/postfish/mix.c
===================================================================
--- trunk/postfish/mix.c	2004-10-10 02:38:05 UTC (rev 7951)
+++ trunk/postfish/mix.c	2004-10-10 05:44:13 UTC (rev 7952)
@@ -315,7 +315,7 @@
       acc=0.;
       if(inA && !mute_channel_muted(inA->active,i)){
 	memset(mix,0,sizeof(mix));
-	mixwork(inA->data[i],ms.cacheP[i],ms.cachePP[i],
+	mixwork(inA->data[i],ms.cachePA[i],ms.cachePPA[i],
 		mix,att,del,0,att,del,0);
 	
 	bypass=0;
@@ -331,7 +331,7 @@
       acc=0.;
       if(inB && !mute_channel_muted(inB->active,i)){
 	memset(mix,0,sizeof(mix));
-	mixwork(inB->data[i],ms.cacheP[i],ms.cachePP[i],
+	mixwork(inB->data[i],ms.cachePB[i],ms.cachePPB[i],
 		mix,att,del,0,att,del,0);
 	
 	bypass=0;

Modified: trunk/postfish/version.h
===================================================================
--- trunk/postfish/version.h	2004-10-10 02:38:05 UTC (rev 7951)
+++ trunk/postfish/version.h	2004-10-10 05:44:13 UTC (rev 7952)
@@ -1,2 +1,2 @@
 #define VERSION "$Id$ "
-/* DO NOT EDIT: Automated versioning hack [Fri Oct  8 01:27:25 EDT 2004] */
+/* DO NOT EDIT: Automated versioning hack [Sun Oct 10 02:03:37 EDT 2004] */



More information about the commits mailing list