Displaying 5 results from an estimated 5 matches for "disable_ss".
Did you mean:
disable_ssl
2016 Jun 21
2
FLAC__SSE_OS change
...g 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
/* assume user knows better than us; turn it off */
disable_sse(info);
#elif defined FLAC__SSE_OS
/* assume user knows better than us; leave as detected above */
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) ...
becomes
#if 0
/* assume user knows better than us; turn it off */
disable_sse(info);
#elif FLAC__SSE_OS
/* a...
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
/* assume user knows better than us; leave as detected above */
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) ......
?
2014 Aug 07
1
[PATCH] for cpu.c
This patch moves all
info->ia32.fxsr = info->ia32.sse = info->ia32.sse2 = info->ia32.sse3 = info->ia32.ssse3 = info->ia32.sse41 = info->ia32.sse42 = false;
expressions into a static function disable_sse(FLAC__CPUInfo *info).
-------------- next part --------------
A non-text attachment was scrubbed...
Name: simplify_cpu_c.zip
Type: application/zip
Size: 1163 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/flac-dev/attachments/20140807/e17308ce/attachment.zip
2016 Jun 23
0
FLAC__SSE_OS change
...5: 'EXCEPTION_EXECUTE_HANDLER': undeclared identifier
cpu.c(279): error C2065: 'STATUS_ILLEGAL_INSTRUCTION': undeclared identifier
2) the current code (simplified):
if(info->ia32.sse) {
#if !FLAC__SSE_OS
/* assume user knows better than us; turn it off */
disable_sse(info);
#elif ...
#elif defined(__linux__) && !FLAC__SSE_OS
#elif ...
#else
#endif
}
means that the __linux__ part is never compiled: if FLAC__SSE_OS==0 then
this code becomes just "disable_sse(info);" and if FLAC__SSE_OS==1
then "defined(__linux__) && !FLAC__SS...
2016 Jun 25
2
FLAC__SSE_OS change
...undeclared identifier
> cpu.c(279): error C2065: 'STATUS_ILLEGAL_INSTRUCTION': undeclared identifier
>
> 2) the current code (simplified):
>
> if(info->ia32.sse) {
> #if !FLAC__SSE_OS
> /* assume user knows better than us; turn it off */
> disable_sse(info);
> #elif ...
> #elif defined(__linux__) && !FLAC__SSE_OS
> #elif ...
> #else
> #endif
> }
>
> means that the __linux__ part is never compiled: if FLAC__SSE_OS==0 then
> this code becomes just "disable_sse(info);" and if FLAC__SSE_OS==1
>...