Re: [flac-dev] PATCH for replaygain_synthesis

2014-05-18 Thread John Edwards
I've not benchmarked to know if their is any real benefit, but changing the include in fast_float_math_hack.h to mathimf.h is all that is required to use the latest ICC. John On 17/05/2014 10:26, lvqcl wrote: The file src/share/replaygain_synthesis/include/private/fast_float_math_hack.h

[flac-dev] PATCH for replaygain_synthesis

2014-05-17 Thread lvqcl
The file src/share/replaygain_synthesis/include/private/fast_float_math_hack.h redefines 'tanh' as 'tanhf'. This file is intended for Intel Compiler only, but it includes outdated mathf.h and doesn't work with current versions of ICC. The fixes are trivial though, and I compiled 2 versions of

Re: [flac-dev] PATCH for replaygain_synthesis

2014-05-17 Thread Erik de Castro Lopo
lvqcl wrote: The file src/share/replaygain_synthesis/include/private/fast_float_math_hack.h redefines 'tanh' as 'tanhf'. This file is intended for Intel Compiler only, but it includes outdated mathf.h and doesn't work with current versions of ICC. The fixes are trivial though, and I

Re: [flac-dev] PATCH for replaygain_synthesis

2014-05-11 Thread Erik de Castro Lopo
lvqcl wrote: flac.exe crashes if I try to decode multichannel flac file with RG tags using the following command line: flac.exe -d --apply-replaygain-which-is-not-lossless test_6ch.flac The code in replaygain_synthesis project uses FLAC_SHARE__MAX_SUPPORTED_CHANNELS which is equal to

[flac-dev] PATCH for replaygain_synthesis

2014-05-10 Thread lvqcl
flac.exe crashes if I try to decode multichannel flac file with RG tags using the following command line: flac.exe -d --apply-replaygain-which-is-not-lossless test_6ch.flac The code in replaygain_synthesis project uses FLAC_SHARE__MAX_SUPPORTED_CHANNELS which is equal to 2. The fix just changes