search for: flac__ssen_supported

Displaying 2 results from an estimated 2 matches for "flac__ssen_supported".

Did you mean: flac__sse2_supported
2014 Jan 03
2
PATCH: add FLAC__SSE_SUPPORTED and FLAC__SSE2_SUPPORTED
...asm_optimisation" = "xyes" ; then XIPH_ADD_CFLAGS([-msse2]) fi Also it's not possible to enable SSE4.1 intrinsic functions even with -msse4.1 option. The patch fixes both problems. --------------- BTW: I'm not sure that share/compat.h is the best place to define these FLAC__SSEN_SUPPORTED macros. Maybe it's better to move them to some libFLAC .h file? E.g. to src/libFLAC/include/private/cpu.h? -------------- next part -------------- A non-text attachment was scrubbed... Name: sse_support.patch Type: application/octet-stream Size: 10488 bytes Desc: not available Url : http://list...
2017 Feb 15
3
about "cpu.h: Fix compiler detection" patch
After this patch, all FLAC__SSEN_SUPPORTED variables are undefined for GCC, so intrinsic versions of functions are not compiled into libFLAC. Previously, the code was: #if defined __INTEL_COMPILER // definitions for ICC #elif defined _MSC_VER // definitions for MSVC #elif defined __GNUC__ || defined __clang__ #if defined __clang_...