search for: ia32_cpu_info

Displaying 4 results from an estimated 4 matches for "ia32_cpu_info".

2016 Jun 26
2
FLAC__SSE_OS change
lvqcl wrote: > No, FLAC__AVX_SUPPORTED is 0 (initially it's undefined, then inside cpu.h > it's defined as 0). > > MSVC cannot discard unused references in debug builds and when LTCG is on, > for example: <http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2016-April/193437.html> > > And currently LTCG is enabled for release builds. Ok, I think I've fixed it
2017 Jan 09
2
1.3.2: FLAC__CPUINFO_IA32_CPUID_SSE3 undeclared
Building 1.3.2 on OpenBSD/i386, I get this error: cpu.c: In function 'ia32_cpu_info': cpu.c:128: error: 'FLAC__CPUINFO_IA32_CPUID_SSE3' undeclared (first use in this function) cpu.c:128: error: (Each undeclared identifier is reported only once cpu.c:128: error: for each function it appears in.) cpu.c:129: error: 'FLAC__CPUINFO_IA32_CPUID_SSSE3' undeclared (firs...
2017 Feb 14
2
Flac build issue in debug win x32
Hi Guys, The following code in CPU.c (line 155) won't link if you don't have NASM code built even if FLAC__HAS_X86INTRIN is true as FLAC__cpu_info_asm_ia32 don't exists and the else is compiled if there is no dead code stripping if (FLAC__HAS_X86INTRIN) { FLAC__cpu_info_x86(0, &flags_eax, &flags_ebx, &flags_ecx, &flags_edx); info->ia32.intel =
2017 Feb 20
0
Flac build issue in debug win x32
...er Tristan Research & Development www.uvi.net -------------- next part -------------- src/libFLAC/cpu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libFLAC/cpu.c b/src/libFLAC/cpu.c index 5f86809..4bad89c 100644 --- a/src/libFLAC/cpu.c +++ b/src/libFLAC/cpu.c @@ -118,7 +118,9 @@ ia32_cpu_info (FLAC__CPUInfo *info) FLAC__cpu_info_x86(1, &flags_eax, &flags_ebx, &flags_ecx, &flags_edx); } else { +#if FLAC__HAS_NASM FLAC__cpu_info_asm_ia32(&flags_edx, &flags_ecx); +#endif } info->ia32.cmov = (flags_edx & FLAC__CPUINFO_IA32_CPUID_CMOV ) ? true...