changeset 2520:b210d1ea2084 trunk

[svn] ui_main.h:92: warning: comma at end of enumerator list configdb.h:197:8: warning: C++ style comments are not allowed in ISO C90 iir = same
author nenolod
date Wed, 14 Feb 2007 11:41:11 -0800
parents 793ede082399
children cbf88a0a2b58
files ChangeLog src/audacious/build_stamp.c src/audacious/iir_cfs.h src/audacious/iir_fpu.c src/audacious/ui_main.h
diffstat 5 files changed, 17 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Feb 14 11:24:39 2007 -0800
+++ b/ChangeLog	Wed Feb 14 11:41:11 2007 -0800
@@ -1,3 +1,11 @@
+2007-02-14 19:24:39 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [4048]
+  - fix: vfs_buffer.c:218: warning: pointer of type 'void *' used in arithmetic
+  
+  trunk/src/audacious/vfs_buffer.c |    2 +-
+  1 file changed, 1 insertion(+), 1 deletion(-)
+
+
 2007-02-14 19:05:36 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
   revision [4046]
   - fix signed vs unsigned comparisons and missing initializer warnings
--- a/src/audacious/build_stamp.c	Wed Feb 14 11:24:39 2007 -0800
+++ b/src/audacious/build_stamp.c	Wed Feb 14 11:41:11 2007 -0800
@@ -1,2 +1,2 @@
 #include <glib.h>
-const gchar *svn_stamp = "20070214-4046";
+const gchar *svn_stamp = "20070214-4048";
--- a/src/audacious/iir_cfs.h	Wed Feb 14 11:24:39 2007 -0800
+++ b/src/audacious/iir_cfs.h	Wed Feb 14 11:41:11 2007 -0800
@@ -30,7 +30,7 @@
     float beta;
     float alpha; 
     float gamma;
-    float dummy; // Word alignment
+    float dummy; /* Word alignment */
 }sIIRCoefficients;
 
 sIIRCoefficients* get_coeffs(gint *bands, gint sfreq, 
--- a/src/audacious/iir_fpu.c	Wed Feb 14 11:24:39 2007 -0800
+++ b/src/audacious/iir_fpu.c	Wed Feb 14 11:41:11 2007 -0800
@@ -54,7 +54,7 @@
 
 __inline__ int iir(gpointer * d, gint length, gint nch)
 {
-//  FTZ_ON;
+/*  FTZ_ON; */
   gint16 *data = (gint16 *) * d;
   /* Indexes for the history arrays
    * These have to be kept between calls to this function
@@ -66,7 +66,7 @@
   sample_t out[EQ_CHANNELS], pcm[EQ_CHANNELS];
 
 #if 0
-  // Load the correct filter table according to the sampling rate if needed
+  /* Load the correct filter table according to the sampling rate if needed */
   if (srate != rate)
   {
     band_count = eqcfg.band_num;
@@ -78,7 +78,7 @@
 
 #ifdef BENCHMARK
   start_counter();
-#endif //BENCHMARK
+#endif /* BENCHMARK */
 
   /**
    * IIR filter equation is
@@ -127,7 +127,7 @@
          * The multiplication by 2.0 was 'moved' into the coefficients to save
          * CPU cycles here */
         /* Apply the gain  */
-        out[channel] +=  data_history[band][channel].y[i]*gain[band][channel]; // * 2.0;
+        out[channel] += data_history[band][channel].y[i]*gain[band][channel]; /* * 2.0; */
       } /* For each band */
 
       if (cfg.eq_extra_filtering)
@@ -203,8 +203,8 @@
     timex = 0.;
     count = 0;
   }
-#endif // BENCHMARK
+#endif /* BENCHMARK */
 
-//  FTZ_OFF;
+/*  FTZ_OFF; */
   return length;
 }
--- a/src/audacious/ui_main.h	Wed Feb 14 11:24:39 2007 -0800
+++ b/src/audacious/ui_main.h	Wed Feb 14 11:41:11 2007 -0800
@@ -88,7 +88,7 @@
 
     MAINWIN_GENERAL_NEXT_PL,
     MAINWIN_GENERAL_PREV_PL,
-    MAINWIN_GENERAL_NEW_PL,
+    MAINWIN_GENERAL_NEW_PL
 };
 
 extern GtkWidget *mainwin;