[flac-dev] PATCH for configure.ac

2013-09-24 Thread lvqcl
1) adds FLAC__ALIGN_MALLOC_DATA for x86_64 arch 2) removes XIPH_ADD_CFLAGS([-msse]) (-msse2 implies -msse) 3) fixes a typo conf_ac.patch Description: Binary data ___ flac-dev mailing list flac-dev@xiph.org http://lists.xiph.org/mailman/listinfo/flac-de

[flac-dev] A small PATCH for replaygain_synthesis

2013-09-24 Thread lvqcl
a) replaces float literal by double (there's no point to multiply double variable 'sample' by float const) b) replaces ifdef __ICL --> if 0 (even intel compiler doesn't have mathf.h) rg_synth.patch Description: Binary data ___ flac-dev mailing list fla

[flac-dev] PATCHES for cpu.h/cpu.c

2013-09-24 Thread lvqcl
The first patch adds SSE4.1/SSE4.2 detection. The second patch removes union data in struct FLAC__CPUInfo and replaces it with #ifdefs. Reason: currently it's possible to set or get data.ia32.sse3 value from x86-64 code, etc. It's a potential source of errors (at least that's true for me). (the