Les articles publiés sur le site
-
11 octobre 2015, par lvqcl
stream_encoder.c: Fix subframe_bps comparison
libFLAC limits the value of qlp_coeff_precision to make sure that
32-bit math is enough for decoding of 16-bit audio.
subframe_bps can be equal to 17 for 16-bit input (for side channel)
so the value of subframe_bps should be compared with 17, not 16.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
- [DH] src/libFLAC/stream_encoder.c
-
11 octobre 2015, par Thomas Zander
Let Makefile.lite build succeed on FreeBSD amd64
- build/config.mk: some OS call x86_64 amd64
- build/config.mk: FreeBSD needs -DHAVE_SYS_PARAM_H in CFLAGS
- build/exe.mk and lib.mk: default compilers on FreeBSD are cc/c++
- src/libFLAC++/Makefile.lite: $(OS) is not defined
- src/libFLAC++/Makefile.lite: Link -lstdc++ on FreeBSD
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
- [DH] build/config.mk
- [DH] build/exe.mk
- [DH] build/lib.mk
- [DH] src/libFLAC++/Makefile.lite
-
4 octobre 2015, par Erik de Castro Lopo
flac: Error out if decoding RAW with bits != (8|16|24)
Suggested by Christopher Key.
Closes: https://sourceforge.net/p/flac/patches/43/
-
4 octobre 2015, par Erik de Castro Lopo
test/ : Use more portable echo constructs
Fix suggested by Daniel Macks.
Closes: https://sourceforge.net/p/flac/bugs/433/
- [DH] test/Makefile.am
- [DH] test/test_bins.sh
- [DH] test/test_flac.sh
- [DH] test/test_metaflac.sh
- [DH] test/test_replaygain.sh
- [DH] test/test_seeking.sh
- [DH] test/test_streams.sh
-
30 septembre 2015, par Tristan Matthews
microbench: remove duplicate define
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>