search for: flac__no_sse_os

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

2016 Jun 20
2
FLAC__SSE_OS change
About the commit <http://git.xiph.org/?p=flac.git;a=commitdiff;h=e120037f3c67b23fd9eef7ccd04d2df57fa1a9a6> I admit I don't understand the following lines: #if !FLAC__SSE_OS /* assume user knows better than us; turn it off */ disable_sse(info); #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) ...... Probably it should be #if FLAC__SSE_OS /*
2016 Jun 21
2
FLAC__SSE_OS change
Erik de Castro Lopo wrote: > I actually think my change is correct. It should be easier to see if you > look at the github version of the change: > > https://github.com/xiph/flac/commit/e120037f3c67b23fd9eef7ccd04d2df57fa1a9a6#diff-9f048b83ff55071de36263cf0f403b2eL209 > FLAC__NO_SSE_OS was never defined anywhere, so I think that the following changes should be made: defined FLAC__NO_SSE_OS -> 0 !defined FLAC__NO_SSE_OS -> 1 defined FLAC__SSE_OS -> FLAC__SSE_OS !defined FLAC__SSE_OS -> !FLAC__SSE_OS So the code #if defined FLAC__NO_SSE_OS...