Les articles publiés sur le site
-
28 juin 2014, par Erik de Castro Lopo
Fix VS project file for iffscan.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] src/flac/iffscan.vcproj
-
28 juin 2014, par Erik de Castro Lopo
replaygain_analysis: Add include guard for <stdint.h>.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] src/share/replaygain_analysis/replaygain_analysis.c
-
28 juin 2014, par Erik de Castro Lopo
Vcprojs : Remove include/share from include paths.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] src/share/replaygain_analysis/replaygain_analysis_static.vcproj
- [DH] src/share/replaygain_synthesis/replaygain_synthesis_static.vcproj
- [DH] src/share/utf8/utf8_static.vcproj
- [DH] src/share/win_utf8_io/win_utf8_io_static.vcproj
-
27 juin 2014, par Erik de Castro Lopo
test_libFLAC/md5.c: Add tests for MD5 calculation.
Test all channel counts from 1 to 8 inclusive and all byte widths
from 1 to 4 inclusive.
- [DH] src/test_libFLAC/md5.c
-
27 juin 2014, par Erik de Castro Lopo
src/flac/decode.c : Fix a cast-align warning from GCC.
The old code was creating an array of FLAC__int8, and then casting
that to a set of signed and unsigned 16 and 32 bit integers. This
was replaced with a single union containing all the requred array.
This solution means that there are fewer pointer casts and actually
gives the compiler more information with which to generate fast code.