Author: remi
Date: 2009-02-15 20:05:11 +0100 (Sun, 15 Feb 2009)
New Revision: 3643

Modified:
   software_suite_v2/tuxware/tuxosl-ose/trunk/include/config.h
   software_suite_v2/tuxware/tuxosl-ose/trunk/src/mixer.cpp
Log:
* fixed a constant name

Modified: software_suite_v2/tuxware/tuxosl-ose/trunk/include/config.h
===================================================================
--- software_suite_v2/tuxware/tuxosl-ose/trunk/include/config.h 2009-02-15 
19:02:45 UTC (rev 3642)
+++ software_suite_v2/tuxware/tuxosl-ose/trunk/include/config.h 2009-02-15 
19:05:11 UTC (rev 3643)
@@ -103,7 +103,7 @@
  * @{
  */
 /** Indicates if the equalizer is used or not */
-#define EQUALIZED_IS_USED               (1)
+#define EQUALIZER_IS_USED               (1)
 /** Global volume gain */
 #define EQUALIZER_GLOBAL_GAIN           1.8
 /** Volume gain to the bass frequencies */

Modified: software_suite_v2/tuxware/tuxosl-ose/trunk/src/mixer.cpp
===================================================================
--- software_suite_v2/tuxware/tuxosl-ose/trunk/src/mixer.cpp    2009-02-15 
19:02:45 UTC (rev 3642)
+++ software_suite_v2/tuxware/tuxosl-ose/trunk/src/mixer.cpp    2009-02-15 
19:05:11 UTC (rev 3643)
@@ -53,7 +53,7 @@
     {
         _workBuff[i] = new unsigned char[PLAYBACK_FRAME_SIZE];
     }
-#if EQUALIZED_IS_USED
+#if EQUALIZER_IS_USED
     /* Initialize the equalizer */
     equalizerInitialization();
 #endif
@@ -76,7 +76,7 @@
     {
         delete &_channels[i];
     }
-#if EQUALIZED_IS_USED
+#if EQUALIZER_IS_USED
     /* Finalize the equalizer */
     equalizerFinalization();
 #endif
@@ -294,7 +294,7 @@
             }
        }
 
-#if EQUALIZED_IS_USED
+#if EQUALIZER_IS_USED
         /* Equalize the sound before to release it */
         /* TODO : Only apply the equalizer to the TTS channel */
         /* TODO : Add equalizer buffer flushing on TTS off */


------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Tux-droid-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tux-droid-svn

Reply via email to