Les articles publiés sur le site
-
13 juillet 2014, par Erik de Castro Lopo
include/share/endswap.h : Fix default ENDSWAP_16.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] include/share/endswap.h
-
13 juillet 2014, par Erik de Castro Lopo
build/config.mk : Define CPU_IS_LITTLE_ENDIAN as needed.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
-
9 juillet 2014, par Erik de Castro Lopo
Makefile.ams: Add MSVS project files to EXTRA_DIST.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] Makefile.am
- [DH] examples/c/decode/file/Makefile.am
- [DH] examples/c/encode/file/Makefile.am
- [DH] examples/cpp/decode/file/Makefile.am
- [DH] examples/cpp/encode/file/Makefile.am
- [DH] src/flac/Makefile.am
- [DH] src/libFLAC++/Makefile.am
- [DH] src/libFLAC/Makefile.am
- [DH] src/metaflac/Makefile.am
- [DH] src/plugin_common/Makefile.am
- [DH] src/share/Makefile.am
- [DH] src/share/utf8/Makefile.am
- [DH] src/test_grabbag/cuesheet/Makefile.am
- [DH] src/test_grabbag/picture/Makefile.am
- [DH] src/test_libFLAC++/Makefile.am
- [DH] src/test_libFLAC/Makefile.am
- [DH] src/test_libs_common/Makefile.am
- [DH] src/test_seeking/Makefile.am
- [DH] src/test_streams/Makefile.am
- [DH] src/utils/flacdiff/Makefile.am
- [DH] src/utils/flactimer/Makefile.am
-
8 juillet 2014, par Erik de Castro Lopo
test_replaygain.sh : Add --force-raw-format option.
This test was failing due to the lack of this option.
Patch-from: lvqcl <lvqcl.mail@gmail.com>
- [DH] test/test_replaygain.sh
-
8 juillet 2014, par Erik de Castro Lopo
src/flac/utils.c : Make sure get_console_width() returns value > 0.
Previous version of get_console_width() may return 0 which will result in
a division by 0 in stats_print_name():
console_width = get_console_width();
len = strlen_console(name)+2;
console_chars_left = console_width - (len % console_width);
Bug-report: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739613
Patch-from: lvqcl <lvqcl.mail@gmail.com>