# HG changeset patch # User nenolod # Date 1171482071 28800 # Node ID b210d1ea2084ac12c6b48fbdaab17e2a0c35aa7d # Parent 793ede082399c9545935d741084043d41679f556 [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 diff -r 793ede082399 -r b210d1ea2084 ChangeLog --- 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 + 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 revision [4046] - fix signed vs unsigned comparisons and missing initializer warnings diff -r 793ede082399 -r b210d1ea2084 src/audacious/build_stamp.c --- 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 -const gchar *svn_stamp = "20070214-4046"; +const gchar *svn_stamp = "20070214-4048"; diff -r 793ede082399 -r b210d1ea2084 src/audacious/iir_cfs.h --- 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, diff -r 793ede082399 -r b210d1ea2084 src/audacious/iir_fpu.c --- 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; } diff -r 793ede082399 -r b210d1ea2084 src/audacious/ui_main.h --- 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;