search for: flac__use_3dnow

Displaying 12 results from an estimated 12 matches for "flac__use_3dnow".

2014 Jun 01
2
Typos in the FLAC codebase
...t;> we use the prefix FLaC__ instead of FLAC__ since autoconf triggers off 'AC_' in strings". > > I this was was a bug in and earlier version of autoconf, but I fixed > it anyway, just for the sake of uniformity. But such names (FLaC__NO_ASM, FLaC__CPU_IA32, FLaC__CPU_PPC, FLaC__USE_3DNOW, ...) begin with 'FLaC__' only in configure.ac. In all source files (.c, .h, .cpp) they begin with 'FLAC__' (all caps).
2013 Aug 21
2
PATCH for cpu.c
...er/msvc_inline_asm.html */ __asm { -# if _MSC_VER <= 1200 - /* VC6 assembler doesn't know SSE, have to emit bytecode instead */ - _emit 0x0F - _emit 0x57 - _emit 0xC0 -# else xorps xmm0,xmm0 -# endif inc sse nop nop 2) MSVC produces warnings if FLAC__USE_3DNOW is not defined : "variable "FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_xxxxxxx" of static storage duration was declared but never referenced" --- a\src\libFLAC\cpu.c 2013-08-16 21:46:42.177485300 +0400 +++ b\src\libFLAC\cpu.c 2013-08-16 22:18:34.549866800 +0400 @@ -96,10 +96,12 @@...
2014 Mar 23
2
PATCH for cpu.c
> Oliver St?neberg wrote: > > > This is simply fixed by putting those unused constants into the > > proper defines. I attached a patch against git 70b078c. > > Unfortunately it breaks x86_64 build (where FLAC__CPU_X86_64 is defined, and > FLAC__CPU_IA32 isn't). Maybe it's simpler to turn them into #defines such as > > #define
2012 Mar 23
2
Trying to link against libFLAC_static.lib (windows)
..."Additional Dependencies" appropriately. Both the main app and the flac libs are build using the "runtime library" Multi-Threaded /MT (or /MTd for debug mode) The flac project is using the preprocessor definitions: WIN32 NDEBUG _LIB FLAC__HAS_OGG FLAC__CPU_IA32 FLAC__HAS_NASM FLAC__USE_3DNOW VERSION="1.2.0" FLAC__NO_DLL I'm not sure what else to try at this stage. I've reached the point where I start going in circles and accessing the same internet search results. Has anyone got any suggestions? Thanks Glenn
2004 Sep 10
5
autoheader failing?
With these versions: ii autoconf 2.54-2 automatic configure script builder ii automake1.6 1.6.3-2 A tool for generating GNU Standards-complian I am unable to build the autoconfiscations. autoheader gives: autoheader2.50: error: AC_CONFIG_HEADERS not found in configure.in What versions are you using? (btw, I do think it would be a very good idea to start using
2005 Feb 11
1
FreeBSD 4.x problem resolved
...false; +#else +#if defined(__FreeBSD__) + { + int sse; + size_t len = sizeof(sse); + if (sysctlbyname("hw.instruction_sse", &sse, &len, NULL, 0) || !sse) + info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = false; + } +#endif #endif #ifdef FLAC__USE_3DNOW -- Christian "naddy" Weisgerber naddy@mips.inka.de
2012 Mar 23
0
Trying to link against libFLAC_static.lib (windows)
...ild using the "runtime > library" Multi-Threaded /MT (or /MTd for debug mode) > That is the MSVCR* library settings. > The flac project is using the preprocessor definitions: > > WIN32 > NDEBUG > _LIB > FLAC__HAS_OGG > FLAC__CPU_IA32 > FLAC__HAS_NASM > FLAC__USE_3DNOW > VERSION="1.2.0" > FLAC__NO_DLL > > I'm not sure what else to try at this stage. I've reached the point > where I start going in circles and accessing the same internet search > results. Has anyone got any suggestions? > Did you compile the dll earlier? If...
2014 Mar 23
0
PATCH for cpu.c
...unsigned FLAC__CPUINFO_IA32_CPUID_SSE3 = 0x00000001; static const unsigned FLAC__CPUINFO_IA32_CPUID_SSSE3 = 0x00000200; static const unsigned FLAC__CPUINFO_IA32_CPUID_SSE41 = 0x00080000; static const unsigned FLAC__CPUINFO_IA32_CPUID_SSE42 = 0x00100000; #if defined FLAC__HAS_NASM && defined FLAC__USE_3DNOW /* these are flags in EDX of CPUID AX=80000001 */ static const unsigned FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_3DNOW = 0x80000000; static const unsigned FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_EXT3DNOW = 0x40000000; static const unsigned FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_EXTMMX = 0x00400000; #endi...
2014 May 30
3
Typos in the FLAC codebase
1) src/share/grabbag/snprintf.c, line 42: 'on systems with a norrmal ISO C99' 'norrmal' -> 'normal' 2) src/flac/encode.c, line 1661: '(eg, very short files, < 10000 fames)' 'fames' -> frames? samples? bytes? 3) configure.ac, line 140: 'AM_CONDITIONAL(FLAC__CPU_X86_64, test "x$cpu_x86_64" = xtrue)' Not sure about this, but
2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to get it. Here's what I have: -a new file, lpc_asm.s, which has the assembly routines -changes to cpu.h, cpu.c, and stream_decoder.c to enable them -changes to configure.in to support the new cpu stuff -a preliminary Makefile.am -maybe something else I'm forgetting Now automake complains that configure.in
2004 Sep 10
2
Altivec, automake
...=============================================== RCS file: /cvsroot/flac/flac/configure.in,v retrieving revision 1.82 diff -c -r1.82 configure.in *** configure.in 19 May 2003 23:59:49 -0000 1.82 --- configure.in 25 Jul 2004 23:13:35 -0000 *************** *** 208,213 **** --- 208,225 ---- AC_DEFINE(FLAC__USE_3DNOW) fi + AC_ARG_ENABLE(altivec, + [ --disable-altivec Disable Altivec optimizations], + [case "${enableval}" in + yes) use_altivec=true ;; + no) use_altivec=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-altivec) ;; + esac],[use_altivec=true]) + AM_COND...
2012 Mar 25
2
Trying to link against libFLAC_static.lib (windows)
...i-Threaded /MT (or /MTd for debug mode) >> > > That is the MSVCR* library settings. > >> The flac project is using the preprocessor definitions: >> >> WIN32 >> NDEBUG >> _LIB >> FLAC__HAS_OGG >> FLAC__CPU_IA32 >> FLAC__HAS_NASM >> FLAC__USE_3DNOW >> VERSION="1.2.0" >> FLAC__NO_DLL >> >> I'm not sure what else to try at this stage. I've reached the point >> where I start going in circles and accessing the same internet search >> results. Has anyone got any suggestions? >> > >...