search for: freqindex

Displaying 3 results from an estimated 3 matches for "freqindex".

Did you mean: free_index
2005 Jun 05
0
[PATCH] line endings fix
...* rout; -static unsigned int sampleWindow; /* number of samples required to reach number of milliseconds required for RMS window */ -static unsigned long totsamp; -static double lsum; -static double rsum; -static int freqindex; -static Uint32_t A [(size_t)(STEPS_per_dB * MAX_dB)]; -static Uint32_t B [(size_t)(STEPS_per_dB * MAX_dB)]; - -/* for each filter: - [0] 48 kHz, [1] 44.1 kHz, [2] 32 kHz, [3] 24 kHz, [4] 22050 Hz, [5] 16 kHz, [6] 12 kHz, [7] is 11025 Hz, [8] 8 kHz */ - -#ifdef WIN32 -#pragma warning ( disable...
2005 Jun 04
2
[PATCH] line endings fix
The replay gain code has dos line endings in CVS, which causes problems for the Sun compiler, among others. Attached is a patch for the lazy, but it's probably easier to fix locally and commit. -r
2007 Aug 24
0
Fixes to make flac build on Solaris
...64.82 /* 298640883795 */ >> /* calibration value */ >> >> static Float_t linprebuf [MAX_ORDER * 2]; >> @@ -142,8 +149,13 @@ >> static double lsum; >> static double rsum; >> static int freqindex; >> +#ifndef __sun >> static Uint32_t A [(size_t)(STEPS_per_dB * MAX_dB)]; >> static Uint32_t B [(size_t)(STEPS_per_dB * MAX_dB)]; >> +#else >> +static Uint32_t A [(size_t)(UINT32_T_FORTE)]; >> +static Uint32_t B [(size_t)(UINT32_T_FORTE)]; >> +#endif...