Les articles publiés sur le site
-
27 juillet 2014, par Erik de Castro Lopo
libFLAC/bitreader.c : Remove redundant/incorrect comment.
This comment should have been removed in commit eb0c5a37.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] src/libFLAC/bitreader.c
-
27 juillet 2014, par Erik de Castro Lopo
libFLAC/bitreader : Remove un-needed FLAC__CPUInfo field from FLAC__BitReader.
In FLAC 1.2.0, a new field 'FLAC__CPUInfo cpu_info' was added to the
FLAC__BitReader struct. It became useless in 1.3.0 because of various
bitreader optimizations.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] src/libFLAC/bitreader.c
- [DH] src/libFLAC/include/private/bitreader.h
- [DH] src/libFLAC/stream_decoder.c
-
27 juillet 2014, par Erik de Castro Lopo
configure.ac : Fix --disable-sse option.
Based on a patch from lvqcl <lvqcl.mail@gmail.com>.
-
27 juillet 2014, par Erik de Castro Lopo
configure.ac : Erase default -O2 when setting -O3.
Previously CFLAGS had a -O3 at the start and a -O2 at the end. According
to the GCC docs:
https://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/Optimize-Options.html
"If you use multiple -O options, with or without level numbers,
the last such option is the one that is effective" which means that
GCC doesn't try to use SIMD to vectorize the code, etc."
-
26 juillet 2014, par Erik de Castro Lopo
configure.ac : Set default CFLAGS to something sensible.
Preserve the CFLAGS value from the time the configure script is run.