Displaying 3 results from an estimated 3 matches for "steps_per_db".
2005 Jun 05
0
[PATCH] line endings fix
...10
-#define BUTTER_ORDER 2
-#define RMS_PERCENTILE 0.95 /* percentile which is louder than the proposed level */
-#define MAX_SAMP_FREQ 48000. /* maximum allowed sample frequency [Hz] */
-#define RMS_WINDOW_TIME 0.050 /* Time slice size [s] */
-#define STEPS_per_dB 100. /* Table entries per dB */
-#define MAX_dB 120. /* Table entries for 0...MAX_dB (normal max. values are 70...80 dB) */
-
-#define MAX_ORDER (BUTTER_ORDER > YULE_ORDER ? BUTTER_ORDER : YULE_ORDER)
-/* [JEC] the following was originally #defined...
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
...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
>>
>> /* for each filter:
>> [0] 48 kHz, [1] 44.1 k...