diff --git a/Frameworks/FLAC/flac-1.2.1/include/share/alloc.h b/Frameworks/FLAC/flac-1.2.1/include/share/alloc.h deleted file mode 100644 index 812aa69d0..000000000 --- a/Frameworks/FLAC/flac-1.2.1/include/share/alloc.h +++ /dev/null @@ -1,212 +0,0 @@ -/* alloc - Convenience routines for safely allocating memory - * Copyright (C) 2007 Josh Coalson - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef FLAC__SHARE__ALLOC_H -#define FLAC__SHARE__ALLOC_H - -#if HAVE_CONFIG_H -# include -#endif - -/* WATCHOUT: for c++ you may have to #define __STDC_LIMIT_MACROS 1 real early - * before #including this file, otherwise SIZE_MAX might not be defined - */ - -#include /* for SIZE_MAX */ -#if !defined _MSC_VER && !defined __MINGW32__ && !defined __EMX__ -#include /* for SIZE_MAX in case limits.h didn't get it */ -#endif -#include /* for size_t, malloc(), etc */ - -#ifndef SIZE_MAX -# ifndef SIZE_T_MAX -# ifdef _MSC_VER -# define SIZE_T_MAX UINT_MAX -# else -# error -# endif -# endif -# define SIZE_MAX SIZE_T_MAX -#endif - -#ifndef FLaC__INLINE -#define FLaC__INLINE -#endif - -/* avoid malloc()ing 0 bytes, see: - * https://www.securecoding.cert.org/confluence/display/seccode/MEM04-A.+Do+not+make+assumptions+about+the+result+of+allocating+0+bytes?focusedCommentId=5407003 -*/ -static FLaC__INLINE void *safe_malloc_(size_t size) -{ - /* malloc(0) is undefined; FLAC src convention is to always allocate */ - if(!size) - size++; - return malloc(size); -} - -static FLaC__INLINE void *safe_calloc_(size_t nmemb, size_t size) -{ - if(!nmemb || !size) - return malloc(1); /* malloc(0) is undefined; FLAC src convention is to always allocate */ - return calloc(nmemb, size); -} - -/*@@@@ there's probably a better way to prevent overflows when allocating untrusted sums but this works for now */ - -static FLaC__INLINE void *safe_malloc_add_2op_(size_t size1, size_t size2) -{ - size2 += size1; - if(size2 < size1) - return 0; - return safe_malloc_(size2); -} - -static FLaC__INLINE void *safe_malloc_add_3op_(size_t size1, size_t size2, size_t size3) -{ - size2 += size1; - if(size2 < size1) - return 0; - size3 += size2; - if(size3 < size2) - return 0; - return safe_malloc_(size3); -} - -static FLaC__INLINE void *safe_malloc_add_4op_(size_t size1, size_t size2, size_t size3, size_t size4) -{ - size2 += size1; - if(size2 < size1) - return 0; - size3 += size2; - if(size3 < size2) - return 0; - size4 += size3; - if(size4 < size3) - return 0; - return safe_malloc_(size4); -} - -static FLaC__INLINE void *safe_malloc_mul_2op_(size_t size1, size_t size2) -#if 0 -needs support for cases where sizeof(size_t) != 4 -{ - /* could be faster #ifdef'ing off SIZEOF_SIZE_T */ - if(sizeof(size_t) == 4) { - if ((double)size1 * (double)size2 < 4294967296.0) - return malloc(size1*size2); - } - return 0; -} -#else -/* better? */ -{ - if(!size1 || !size2) - return malloc(1); /* malloc(0) is undefined; FLAC src convention is to always allocate */ - if(size1 > SIZE_MAX / size2) - return 0; - return malloc(size1*size2); -} -#endif - -static FLaC__INLINE void *safe_malloc_mul_3op_(size_t size1, size_t size2, size_t size3) -{ - if(!size1 || !size2 || !size3) - return malloc(1); /* malloc(0) is undefined; FLAC src convention is to always allocate */ - if(size1 > SIZE_MAX / size2) - return 0; - size1 *= size2; - if(size1 > SIZE_MAX / size3) - return 0; - return malloc(size1*size3); -} - -/* size1*size2 + size3 */ -static FLaC__INLINE void *safe_malloc_mul2add_(size_t size1, size_t size2, size_t size3) -{ - if(!size1 || !size2) - return safe_malloc_(size3); - if(size1 > SIZE_MAX / size2) - return 0; - return safe_malloc_add_2op_(size1*size2, size3); -} - -/* size1 * (size2 + size3) */ -static FLaC__INLINE void *safe_malloc_muladd2_(size_t size1, size_t size2, size_t size3) -{ - if(!size1 || (!size2 && !size3)) - return malloc(1); /* malloc(0) is undefined; FLAC src convention is to always allocate */ - size2 += size3; - if(size2 < size3) - return 0; - return safe_malloc_mul_2op_(size1, size2); -} - -static FLaC__INLINE void *safe_realloc_add_2op_(void *ptr, size_t size1, size_t size2) -{ - size2 += size1; - if(size2 < size1) - return 0; - return realloc(ptr, size2); -} - -static FLaC__INLINE void *safe_realloc_add_3op_(void *ptr, size_t size1, size_t size2, size_t size3) -{ - size2 += size1; - if(size2 < size1) - return 0; - size3 += size2; - if(size3 < size2) - return 0; - return realloc(ptr, size3); -} - -static FLaC__INLINE void *safe_realloc_add_4op_(void *ptr, size_t size1, size_t size2, size_t size3, size_t size4) -{ - size2 += size1; - if(size2 < size1) - return 0; - size3 += size2; - if(size3 < size2) - return 0; - size4 += size3; - if(size4 < size3) - return 0; - return realloc(ptr, size4); -} - -static FLaC__INLINE void *safe_realloc_mul_2op_(void *ptr, size_t size1, size_t size2) -{ - if(!size1 || !size2) - return realloc(ptr, 0); /* preserve POSIX realloc(ptr, 0) semantics */ - if(size1 > SIZE_MAX / size2) - return 0; - return realloc(ptr, size1*size2); -} - -/* size1 * (size2 + size3) */ -static FLaC__INLINE void *safe_realloc_muladd2_(void *ptr, size_t size1, size_t size2, size_t size3) -{ - if(!size1 || (!size2 && !size3)) - return realloc(ptr, 0); /* preserve POSIX realloc(ptr, 0) semantics */ - size2 += size3; - if(size2 < size3) - return 0; - return safe_realloc_mul_2op_(ptr, size1, size2); -} - -#endif diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/bitmath.c b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/bitmath.c deleted file mode 100644 index c6e761272..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/bitmath.c +++ /dev/null @@ -1,149 +0,0 @@ -/* libFLAC - Free Lossless Audio Codec library - * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * - Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * - Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * - Neither the name of the Xiph.org Foundation nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#if HAVE_CONFIG_H -# include -#endif - -#include "private/bitmath.h" -#include "FLAC/FLAC_assert.h" - -/* An example of what FLAC__bitmath_ilog2() computes: - * - * ilog2( 0) = assertion failure - * ilog2( 1) = 0 - * ilog2( 2) = 1 - * ilog2( 3) = 1 - * ilog2( 4) = 2 - * ilog2( 5) = 2 - * ilog2( 6) = 2 - * ilog2( 7) = 2 - * ilog2( 8) = 3 - * ilog2( 9) = 3 - * ilog2(10) = 3 - * ilog2(11) = 3 - * ilog2(12) = 3 - * ilog2(13) = 3 - * ilog2(14) = 3 - * ilog2(15) = 3 - * ilog2(16) = 4 - * ilog2(17) = 4 - * ilog2(18) = 4 - */ -unsigned FLAC__bitmath_ilog2(FLAC__uint32 v) -{ - unsigned l = 0; - FLAC__ASSERT(v > 0); - while(v >>= 1) - l++; - return l; -} - -unsigned FLAC__bitmath_ilog2_wide(FLAC__uint64 v) -{ - unsigned l = 0; - FLAC__ASSERT(v > 0); - while(v >>= 1) - l++; - return l; -} - -/* An example of what FLAC__bitmath_silog2() computes: - * - * silog2(-10) = 5 - * silog2(- 9) = 5 - * silog2(- 8) = 4 - * silog2(- 7) = 4 - * silog2(- 6) = 4 - * silog2(- 5) = 4 - * silog2(- 4) = 3 - * silog2(- 3) = 3 - * silog2(- 2) = 2 - * silog2(- 1) = 2 - * silog2( 0) = 0 - * silog2( 1) = 2 - * silog2( 2) = 3 - * silog2( 3) = 3 - * silog2( 4) = 4 - * silog2( 5) = 4 - * silog2( 6) = 4 - * silog2( 7) = 4 - * silog2( 8) = 5 - * silog2( 9) = 5 - * silog2( 10) = 5 - */ -unsigned FLAC__bitmath_silog2(int v) -{ - while(1) { - if(v == 0) { - return 0; - } - else if(v > 0) { - unsigned l = 0; - while(v) { - l++; - v >>= 1; - } - return l+1; - } - else if(v == -1) { - return 2; - } - else { - v++; - v = -v; - } - } -} - -unsigned FLAC__bitmath_silog2_wide(FLAC__int64 v) -{ - while(1) { - if(v == 0) { - return 0; - } - else if(v > 0) { - unsigned l = 0; - while(v) { - l++; - v >>= 1; - } - return l+1; - } - else if(v == -1) { - return 2; - } - else { - v++; - v = -v; - } - } -} diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/cpu.c b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/cpu.c deleted file mode 100644 index 5df9a3094..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/cpu.c +++ /dev/null @@ -1,420 +0,0 @@ -/* libFLAC - Free Lossless Audio Codec library - * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * - Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * - Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * - Neither the name of the Xiph.org Foundation nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#if HAVE_CONFIG_H -# include -#endif - -#include "private/cpu.h" -#include -#include - -#if defined FLAC__CPU_IA32 -# include -#elif defined FLAC__CPU_PPC -# if !defined FLAC__NO_ASM -# if defined FLAC__SYS_DARWIN -# include -# include -# include -# include -# include -# ifndef CPU_SUBTYPE_POWERPC_970 -# define CPU_SUBTYPE_POWERPC_970 ((cpu_subtype_t) 100) -# endif -# else /* FLAC__SYS_DARWIN */ - -# include -# include - -static sigjmp_buf jmpbuf; -static volatile sig_atomic_t canjump = 0; - -static void sigill_handler (int sig) -{ - if (!canjump) { - signal (sig, SIG_DFL); - raise (sig); - } - canjump = 0; - siglongjmp (jmpbuf, 1); -} -# endif /* FLAC__SYS_DARWIN */ -# endif /* FLAC__NO_ASM */ -#endif /* FLAC__CPU_PPC */ - -#if defined (__NetBSD__) || defined(__OpenBSD__) -#include -#include -#include -#endif - -#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) -#include -#include -#endif - -#if defined(__APPLE__) -/* how to get sysctlbyname()? */ -#endif - -/* these are flags in EDX of CPUID AX=00000001 */ -#if 0 -static const unsigned FLAC__CPUINFO_IA32_CPUID_CMOV = 0x00008000; -static const unsigned FLAC__CPUINFO_IA32_CPUID_MMX = 0x00800000; -static const unsigned FLAC__CPUINFO_IA32_CPUID_FXSR = 0x01000000; -static const unsigned FLAC__CPUINFO_IA32_CPUID_SSE = 0x02000000; -static const unsigned FLAC__CPUINFO_IA32_CPUID_SSE2 = 0x04000000; -/* these are flags in ECX of CPUID AX=00000001 */ -static const unsigned FLAC__CPUINFO_IA32_CPUID_SSE3 = 0x00000001; -static const unsigned FLAC__CPUINFO_IA32_CPUID_SSSE3 = 0x00000200; -/* 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; -#endif - - -/* - * Extra stuff needed for detection of OS support for SSE on IA-32 - */ -#if defined(FLAC__CPU_IA32) && !defined FLAC__NO_ASM && defined FLAC__HAS_NASM && !defined FLAC__NO_SSE_OS && !defined FLAC__SSE_OS -# if defined(__linux__) -/* - * If the OS doesn't support SSE, we will get here with a SIGILL. We - * modify the return address to jump over the offending SSE instruction - * and also the operation following it that indicates the instruction - * executed successfully. In this way we use no global variables and - * stay thread-safe. - * - * 3 + 3 + 6: - * 3 bytes for "xorps xmm0,xmm0" - * 3 bytes for estimate of how long the follwing "inc var" instruction is - * 6 bytes extra in case our estimate is wrong - * 12 bytes puts us in the NOP "landing zone" - */ -# undef USE_OBSOLETE_SIGCONTEXT_FLAVOR /* #define this to use the older signal handler method */ -# ifdef USE_OBSOLETE_SIGCONTEXT_FLAVOR - static void sigill_handler_sse_os(int signal, struct sigcontext sc) - { - (void)signal; - sc.eip += 3 + 3 + 6; - } -# else -# include - static void sigill_handler_sse_os(int signal, siginfo_t *si, void *uc) - { - (void)signal, (void)si; - ((ucontext_t*)uc)->uc_mcontext.gregs[14/*REG_EIP*/] += 3 + 3 + 6; - } -# endif -# elif defined(_MSC_VER) -# include -# undef USE_TRY_CATCH_FLAVOR /* #define this to use the try/catch method for catching illegal opcode exception */ -# ifdef USE_TRY_CATCH_FLAVOR -# else - LONG CALLBACK sigill_handler_sse_os(EXCEPTION_POINTERS *ep) - { - if(ep->ExceptionRecord->ExceptionCode == EXCEPTION_ILLEGAL_INSTRUCTION) { - ep->ContextRecord->Eip += 3 + 3 + 6; - return EXCEPTION_CONTINUE_EXECUTION; - } - return EXCEPTION_CONTINUE_SEARCH; - } -# endif -# endif -#endif - - -void FLAC__cpu_info(FLAC__CPUInfo *info) -{ -/* - * IA32-specific - */ -#ifdef FLAC__CPU_IA32 - info->type = FLAC__CPUINFO_TYPE_IA32; -#if !defined FLAC__NO_ASM && defined FLAC__HAS_NASM - info->use_asm = true; /* we assume a minimum of 80386 with FLAC__CPU_IA32 */ - info->data.ia32.cpuid = FLAC__cpu_have_cpuid_asm_ia32()? true : false; - info->data.ia32.bswap = info->data.ia32.cpuid; /* CPUID => BSWAP since it came after */ - info->data.ia32.cmov = false; - info->data.ia32.mmx = false; - info->data.ia32.fxsr = false; - info->data.ia32.sse = false; - info->data.ia32.sse2 = false; - info->data.ia32.sse3 = false; - info->data.ia32.ssse3 = false; - info->data.ia32._3dnow = false; - info->data.ia32.ext3dnow = false; - info->data.ia32.extmmx = false; - if(info->data.ia32.cpuid) { - /* http://www.sandpile.org/ia32/cpuid.htm */ - FLAC__uint32 flags_edx, flags_ecx; - FLAC__cpu_info_asm_ia32(&flags_edx, &flags_ecx); - info->data.ia32.cmov = (flags_edx & FLAC__CPUINFO_IA32_CPUID_CMOV )? true : false; - info->data.ia32.mmx = (flags_edx & FLAC__CPUINFO_IA32_CPUID_MMX )? true : false; - info->data.ia32.fxsr = (flags_edx & FLAC__CPUINFO_IA32_CPUID_FXSR )? true : false; - info->data.ia32.sse = (flags_edx & FLAC__CPUINFO_IA32_CPUID_SSE )? true : false; - info->data.ia32.sse2 = (flags_edx & FLAC__CPUINFO_IA32_CPUID_SSE2 )? true : false; - info->data.ia32.sse3 = (flags_ecx & FLAC__CPUINFO_IA32_CPUID_SSE3 )? true : false; - info->data.ia32.ssse3 = (flags_ecx & FLAC__CPUINFO_IA32_CPUID_SSSE3)? true : false; - -#ifdef FLAC__USE_3DNOW - flags_edx = FLAC__cpu_info_extended_amd_asm_ia32(); - info->data.ia32._3dnow = (flags_edx & FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_3DNOW )? true : false; - info->data.ia32.ext3dnow = (flags_edx & FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_EXT3DNOW)? true : false; - info->data.ia32.extmmx = (flags_edx & FLAC__CPUINFO_IA32_CPUID_EXTENDED_AMD_EXTMMX )? true : false; -#else - info->data.ia32._3dnow = info->data.ia32.ext3dnow = info->data.ia32.extmmx = false; -#endif - -#ifdef DEBUG - fprintf(stderr, "CPU info (IA-32):\n"); - fprintf(stderr, " CPUID ...... %c\n", info->data.ia32.cpuid ? 'Y' : 'n'); - fprintf(stderr, " BSWAP ...... %c\n", info->data.ia32.bswap ? 'Y' : 'n'); - fprintf(stderr, " CMOV ....... %c\n", info->data.ia32.cmov ? 'Y' : 'n'); - fprintf(stderr, " MMX ........ %c\n", info->data.ia32.mmx ? 'Y' : 'n'); - fprintf(stderr, " FXSR ....... %c\n", info->data.ia32.fxsr ? 'Y' : 'n'); - fprintf(stderr, " SSE ........ %c\n", info->data.ia32.sse ? 'Y' : 'n'); - fprintf(stderr, " SSE2 ....... %c\n", info->data.ia32.sse2 ? 'Y' : 'n'); - fprintf(stderr, " SSE3 ....... %c\n", info->data.ia32.sse3 ? 'Y' : 'n'); - fprintf(stderr, " SSSE3 ...... %c\n", info->data.ia32.ssse3 ? 'Y' : 'n'); - fprintf(stderr, " 3DNow! ..... %c\n", info->data.ia32._3dnow ? 'Y' : 'n'); - fprintf(stderr, " 3DNow!-ext . %c\n", info->data.ia32.ext3dnow? 'Y' : 'n'); - fprintf(stderr, " 3DNow!-MMX . %c\n", info->data.ia32.extmmx ? 'Y' : 'n'); -#endif - - /* - * now have to check for OS support of SSE/SSE2 - */ - if(info->data.ia32.fxsr || info->data.ia32.sse || info->data.ia32.sse2) { -#if defined FLAC__NO_SSE_OS - /* assume user knows better than us; turn it off */ - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -#elif defined FLAC__SSE_OS - /* assume user knows better than us; leave as detected above */ -#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) || defined(__APPLE__) - int sse = 0; - size_t len; - /* at least one of these must work: */ - len = sizeof(sse); sse = sse || (sysctlbyname("hw.instruction_sse", &sse, &len, NULL, 0) == 0 && sse); - len = sizeof(sse); sse = sse || (sysctlbyname("hw.optional.sse" , &sse, &len, NULL, 0) == 0 && sse); /* __APPLE__ ? */ - if(!sse) - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -#elif defined(__NetBSD__) || defined (__OpenBSD__) -# if __NetBSD_Version__ >= 105250000 || (defined __OpenBSD__) - int val = 0, mib[2] = { CTL_MACHDEP, CPU_SSE }; - size_t len = sizeof(val); - if(sysctl(mib, 2, &val, &len, NULL, 0) < 0 || !val) - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; - else { /* double-check SSE2 */ - mib[1] = CPU_SSE2; - len = sizeof(val); - if(sysctl(mib, 2, &val, &len, NULL, 0) < 0 || !val) - info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; - } -# else - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -# endif -#elif defined(__linux__) - int sse = 0; - struct sigaction sigill_save; -#ifdef USE_OBSOLETE_SIGCONTEXT_FLAVOR - if(0 == sigaction(SIGILL, NULL, &sigill_save) && signal(SIGILL, (void (*)(int))sigill_handler_sse_os) != SIG_ERR) -#else - struct sigaction sigill_sse; - sigill_sse.sa_sigaction = sigill_handler_sse_os; - __sigemptyset(&sigill_sse.sa_mask); - sigill_sse.sa_flags = SA_SIGINFO | SA_RESETHAND; /* SA_RESETHAND just in case our SIGILL return jump breaks, so we don't get stuck in a loop */ - if(0 == sigaction(SIGILL, &sigill_sse, &sigill_save)) -#endif - { - /* http://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html */ - /* see sigill_handler_sse_os() for an explanation of the following: */ - asm volatile ( - "xorl %0,%0\n\t" /* for some reason, still need to do this to clear 'sse' var */ - "xorps %%xmm0,%%xmm0\n\t" /* will cause SIGILL if unsupported by OS */ - "incl %0\n\t" /* SIGILL handler will jump over this */ - /* landing zone */ - "nop\n\t" /* SIGILL jump lands here if "inc" is 9 bytes */ - "nop\n\t" - "nop\n\t" - "nop\n\t" - "nop\n\t" - "nop\n\t" - "nop\n\t" /* SIGILL jump lands here if "inc" is 3 bytes (expected) */ - "nop\n\t" - "nop" /* SIGILL jump lands here if "inc" is 1 byte */ - : "=r"(sse) - : "r"(sse) - ); - - sigaction(SIGILL, &sigill_save, NULL); - } - - if(!sse) - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -#elif defined(_MSC_VER) -# ifdef USE_TRY_CATCH_FLAVOR - _try { - __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 - } - } - _except(EXCEPTION_EXECUTE_HANDLER) { - if (_exception_code() == STATUS_ILLEGAL_INSTRUCTION) - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; - } -# else - int sse = 0; - LPTOP_LEVEL_EXCEPTION_FILTER save = SetUnhandledExceptionFilter(sigill_handler_sse_os); - /* see GCC version above for explanation */ - /* http://msdn2.microsoft.com/en-us/library/4ks26t93.aspx */ - /* http://www.codeproject.com/cpp/gccasm.asp */ - /* http://www.hick.org/~mmiller/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 - nop - nop - nop - nop - nop - nop - nop - } - SetUnhandledExceptionFilter(save); - if(!sse) - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -# endif -#else - /* no way to test, disable to be safe */ - info->data.ia32.fxsr = info->data.ia32.sse = info->data.ia32.sse2 = info->data.ia32.sse3 = info->data.ia32.ssse3 = false; -#endif -#ifdef DEBUG - fprintf(stderr, " SSE OS sup . %c\n", info->data.ia32.sse ? 'Y' : 'n'); -#endif - - } - } -#else - info->use_asm = false; -#endif - -/* - * PPC-specific - */ -#elif defined FLAC__CPU_PPC - info->type = FLAC__CPUINFO_TYPE_PPC; -# if !defined FLAC__NO_ASM - info->use_asm = true; -# ifdef FLAC__USE_ALTIVEC -# if defined FLAC__SYS_DARWIN - { - int val = 0, mib[2] = { CTL_HW, HW_VECTORUNIT }; - size_t len = sizeof(val); - info->data.ppc.altivec = !(sysctl(mib, 2, &val, &len, NULL, 0) || !val); - } - { - host_basic_info_data_t hostInfo; - mach_msg_type_number_t infoCount; - - infoCount = HOST_BASIC_INFO_COUNT; - host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, &infoCount); - - info->data.ppc.ppc64 = (hostInfo.cpu_type == CPU_TYPE_POWERPC) && (hostInfo.cpu_subtype == CPU_SUBTYPE_POWERPC_970); - } -# else /* FLAC__USE_ALTIVEC && !FLAC__SYS_DARWIN */ - { - /* no Darwin, do it the brute-force way */ - /* @@@@@@ this is not thread-safe; replace with SSE OS method above or remove */ - info->data.ppc.altivec = 0; - info->data.ppc.ppc64 = 0; - - signal (SIGILL, sigill_handler); - canjump = 0; - if (!sigsetjmp (jmpbuf, 1)) { - canjump = 1; - - asm volatile ( - "mtspr 256, %0\n\t" - "vand %%v0, %%v0, %%v0" - : - : "r" (-1) - ); - - info->data.ppc.altivec = 1; - } - canjump = 0; - if (!sigsetjmp (jmpbuf, 1)) { - int x = 0; - canjump = 1; - - /* PPC64 hardware implements the cntlzd instruction */ - asm volatile ("cntlzd %0, %1" : "=r" (x) : "r" (x) ); - - info->data.ppc.ppc64 = 1; - } - signal (SIGILL, SIG_DFL); /*@@@@@@ should save and restore old signal */ - } -# endif -# else /* !FLAC__USE_ALTIVEC */ - info->data.ppc.altivec = 0; - info->data.ppc.ppc64 = 0; -# endif -# else - info->use_asm = false; -# endif - -/* - * unknown CPI - */ -#else - info->type = FLAC__CPUINFO_TYPE_UNKNOWN; - info->use_asm = false; -#endif -} diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/crc.c b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/crc.c deleted file mode 100644 index 463ab65ef..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/crc.c +++ /dev/null @@ -1,142 +0,0 @@ -/* libFLAC - Free Lossless Audio Codec library - * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * - Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * - Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * - Neither the name of the Xiph.org Foundation nor the names of its - * contributors may be used to endorse or promote products derived from - * this software without specific prior written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS - * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT - * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR - * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, - * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, - * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR - * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF - * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING - * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS - * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - */ - -#if HAVE_CONFIG_H -# include -#endif - -#include "private/crc.h" - -/* CRC-8, poly = x^8 + x^2 + x^1 + x^0, init = 0 */ - -FLAC__byte const FLAC__crc8_table[256] = { - 0x00, 0x07, 0x0E, 0x09, 0x1C, 0x1B, 0x12, 0x15, - 0x38, 0x3F, 0x36, 0x31, 0x24, 0x23, 0x2A, 0x2D, - 0x70, 0x77, 0x7E, 0x79, 0x6C, 0x6B, 0x62, 0x65, - 0x48, 0x4F, 0x46, 0x41, 0x54, 0x53, 0x5A, 0x5D, - 0xE0, 0xE7, 0xEE, 0xE9, 0xFC, 0xFB, 0xF2, 0xF5, - 0xD8, 0xDF, 0xD6, 0xD1, 0xC4, 0xC3, 0xCA, 0xCD, - 0x90, 0x97, 0x9E, 0x99, 0x8C, 0x8B, 0x82, 0x85, - 0xA8, 0xAF, 0xA6, 0xA1, 0xB4, 0xB3, 0xBA, 0xBD, - 0xC7, 0xC0, 0xC9, 0xCE, 0xDB, 0xDC, 0xD5, 0xD2, - 0xFF, 0xF8, 0xF1, 0xF6, 0xE3, 0xE4, 0xED, 0xEA, - 0xB7, 0xB0, 0xB9, 0xBE, 0xAB, 0xAC, 0xA5, 0xA2, - 0x8F, 0x88, 0x81, 0x86, 0x93, 0x94, 0x9D, 0x9A, - 0x27, 0x20, 0x29, 0x2E, 0x3B, 0x3C, 0x35, 0x32, - 0x1F, 0x18, 0x11, 0x16, 0x03, 0x04, 0x0D, 0x0A, - 0x57, 0x50, 0x59, 0x5E, 0x4B, 0x4C, 0x45, 0x42, - 0x6F, 0x68, 0x61, 0x66, 0x73, 0x74, 0x7D, 0x7A, - 0x89, 0x8E, 0x87, 0x80, 0x95, 0x92, 0x9B, 0x9C, - 0xB1, 0xB6, 0xBF, 0xB8, 0xAD, 0xAA, 0xA3, 0xA4, - 0xF9, 0xFE, 0xF7, 0xF0, 0xE5, 0xE2, 0xEB, 0xEC, - 0xC1, 0xC6, 0xCF, 0xC8, 0xDD, 0xDA, 0xD3, 0xD4, - 0x69, 0x6E, 0x67, 0x60, 0x75, 0x72, 0x7B, 0x7C, - 0x51, 0x56, 0x5F, 0x58, 0x4D, 0x4A, 0x43, 0x44, - 0x19, 0x1E, 0x17, 0x10, 0x05, 0x02, 0x0B, 0x0C, - 0x21, 0x26, 0x2F, 0x28, 0x3D, 0x3A, 0x33, 0x34, - 0x4E, 0x49, 0x40, 0x47, 0x52, 0x55, 0x5C, 0x5B, - 0x76, 0x71, 0x78, 0x7F, 0x6A, 0x6D, 0x64, 0x63, - 0x3E, 0x39, 0x30, 0x37, 0x22, 0x25, 0x2C, 0x2B, - 0x06, 0x01, 0x08, 0x0F, 0x1A, 0x1D, 0x14, 0x13, - 0xAE, 0xA9, 0xA0, 0xA7, 0xB2, 0xB5, 0xBC, 0xBB, - 0x96, 0x91, 0x98, 0x9F, 0x8A, 0x8D, 0x84, 0x83, - 0xDE, 0xD9, 0xD0, 0xD7, 0xC2, 0xC5, 0xCC, 0xCB, - 0xE6, 0xE1, 0xE8, 0xEF, 0xFA, 0xFD, 0xF4, 0xF3 -}; - -/* CRC-16, poly = x^16 + x^15 + x^2 + x^0, init = 0 */ - -unsigned FLAC__crc16_table[256] = { - 0x0000, 0x8005, 0x800f, 0x000a, 0x801b, 0x001e, 0x0014, 0x8011, - 0x8033, 0x0036, 0x003c, 0x8039, 0x0028, 0x802d, 0x8027, 0x0022, - 0x8063, 0x0066, 0x006c, 0x8069, 0x0078, 0x807d, 0x8077, 0x0072, - 0x0050, 0x8055, 0x805f, 0x005a, 0x804b, 0x004e, 0x0044, 0x8041, - 0x80c3, 0x00c6, 0x00cc, 0x80c9, 0x00d8, 0x80dd, 0x80d7, 0x00d2, - 0x00f0, 0x80f5, 0x80ff, 0x00fa, 0x80eb, 0x00ee, 0x00e4, 0x80e1, - 0x00a0, 0x80a5, 0x80af, 0x00aa, 0x80bb, 0x00be, 0x00b4, 0x80b1, - 0x8093, 0x0096, 0x009c, 0x8099, 0x0088, 0x808d, 0x8087, 0x0082, - 0x8183, 0x0186, 0x018c, 0x8189, 0x0198, 0x819d, 0x8197, 0x0192, - 0x01b0, 0x81b5, 0x81bf, 0x01ba, 0x81ab, 0x01ae, 0x01a4, 0x81a1, - 0x01e0, 0x81e5, 0x81ef, 0x01ea, 0x81fb, 0x01fe, 0x01f4, 0x81f1, - 0x81d3, 0x01d6, 0x01dc, 0x81d9, 0x01c8, 0x81cd, 0x81c7, 0x01c2, - 0x0140, 0x8145, 0x814f, 0x014a, 0x815b, 0x015e, 0x0154, 0x8151, - 0x8173, 0x0176, 0x017c, 0x8179, 0x0168, 0x816d, 0x8167, 0x0162, - 0x8123, 0x0126, 0x012c, 0x8129, 0x0138, 0x813d, 0x8137, 0x0132, - 0x0110, 0x8115, 0x811f, 0x011a, 0x810b, 0x010e, 0x0104, 0x8101, - 0x8303, 0x0306, 0x030c, 0x8309, 0x0318, 0x831d, 0x8317, 0x0312, - 0x0330, 0x8335, 0x833f, 0x033a, 0x832b, 0x032e, 0x0324, 0x8321, - 0x0360, 0x8365, 0x836f, 0x036a, 0x837b, 0x037e, 0x0374, 0x8371, - 0x8353, 0x0356, 0x035c, 0x8359, 0x0348, 0x834d, 0x8347, 0x0342, - 0x03c0, 0x83c5, 0x83cf, 0x03ca, 0x83db, 0x03de, 0x03d4, 0x83d1, - 0x83f3, 0x03f6, 0x03fc, 0x83f9, 0x03e8, 0x83ed, 0x83e7, 0x03e2, - 0x83a3, 0x03a6, 0x03ac, 0x83a9, 0x03b8, 0x83bd, 0x83b7, 0x03b2, - 0x0390, 0x8395, 0x839f, 0x039a, 0x838b, 0x038e, 0x0384, 0x8381, - 0x0280, 0x8285, 0x828f, 0x028a, 0x829b, 0x029e, 0x0294, 0x8291, - 0x82b3, 0x02b6, 0x02bc, 0x82b9, 0x02a8, 0x82ad, 0x82a7, 0x02a2, - 0x82e3, 0x02e6, 0x02ec, 0x82e9, 0x02f8, 0x82fd, 0x82f7, 0x02f2, - 0x02d0, 0x82d5, 0x82df, 0x02da, 0x82cb, 0x02ce, 0x02c4, 0x82c1, - 0x8243, 0x0246, 0x024c, 0x8249, 0x0258, 0x825d, 0x8257, 0x0252, - 0x0270, 0x8275, 0x827f, 0x027a, 0x826b, 0x026e, 0x0264, 0x8261, - 0x0220, 0x8225, 0x822f, 0x022a, 0x823b, 0x023e, 0x0234, 0x8231, - 0x8213, 0x0216, 0x021c, 0x8219, 0x0208, 0x820d, 0x8207, 0x0202 -}; - - -void FLAC__crc8_update(const FLAC__byte data, FLAC__uint8 *crc) -{ - *crc = FLAC__crc8_table[*crc ^ data]; -} - -void FLAC__crc8_update_block(const FLAC__byte *data, unsigned len, FLAC__uint8 *crc) -{ - while(len--) - *crc = FLAC__crc8_table[*crc ^ *data++]; -} - -FLAC__uint8 FLAC__crc8(const FLAC__byte *data, unsigned len) -{ - FLAC__uint8 crc = 0; - - while(len--) - crc = FLAC__crc8_table[crc ^ *data++]; - - return crc; -} - -unsigned FLAC__crc16(const FLAC__byte *data, unsigned len) -{ - unsigned crc = 0; - - while(len--) - crc = ((crc<<8) ^ FLAC__crc16_table[(crc>>8) ^ *data++]) & 0xffff; - - return crc; -} diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/bitreader_asm.nasm b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/bitreader_asm.nasm deleted file mode 100644 index 5d1bbfa44..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/bitreader_asm.nasm +++ /dev/null @@ -1,568 +0,0 @@ -; vim:filetype=nasm ts=8 - -; libFLAC - Free Lossless Audio Codec library -; Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson -; -; Redistribution and use in source and binary forms, with or without -; modification, are permitted provided that the following conditions -; are met: -; -; - Redistributions of source code must retain the above copyright -; notice, this list of conditions and the following disclaimer. -; -; - Redistributions in binary form must reproduce the above copyright -; notice, this list of conditions and the following disclaimer in the -; documentation and/or other materials provided with the distribution. -; -; - Neither the name of the Xiph.org Foundation nor the names of its -; contributors may be used to endorse or promote products derived from -; this software without specific prior written permission. -; -; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -; ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR -; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -%include "nasm.h" - - data_section - -cextern FLAC__crc16_table ; unsigned FLAC__crc16_table[256]; -cextern bitreader_read_from_client_ ; FLAC__bool bitreader_read_from_client_(FLAC__BitReader *br); - -cglobal FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap - - code_section - - -; ********************************************************************** -; -; void FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter) -; -; Some details like assertions and other checking is performed by the caller. - ALIGN 16 -cident FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap - - ;ASSERT(0 != br); - ;ASSERT(0 != br->buffer); - ; WATCHOUT: code only works if sizeof(brword)==32; we can make things much faster with this assertion - ;ASSERT(FLAC__BITS_PER_WORD == 32); - ;ASSERT(parameter < 32); - ; the above two asserts also guarantee that the binary part never straddles more than 2 words, so we don't have to loop to read it - - ;; peppered throughout the code at major checkpoints are keys like this as to where things are at that point in time - ;; [esp + 16] unsigned parameter - ;; [esp + 12] unsigned nvals - ;; [esp + 8] int vals[] - ;; [esp + 4] FLAC__BitReader *br - mov eax, [esp + 12] ; if(nvals == 0) - test eax, eax - ja .nvals_gt_0 - mov eax, 1 ; return true; - ret - -.nvals_gt_0: - push ebp - push ebx - push esi - push edi - sub esp, 4 - ;; [esp + 36] unsigned parameter - ;; [esp + 32] unsigned nvals - ;; [esp + 28] int vals[] - ;; [esp + 24] FLAC__BitReader *br - ;; [esp] ucbits - mov ebp, [esp + 24] ; ebp <- br == br->buffer - mov esi, [ebp + 16] ; esi <- br->consumed_words (aka 'cwords' in the C version) - mov ecx, [ebp + 20] ; ecx <- br->consumed_bits (aka 'cbits' in the C version) - xor edi, edi ; edi <- 0 'uval' - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - ;; [ebp] br->buffer - ;; [ebp + 8] br->words - ;; [ebp + 12] br->bytes - ;; [ebp + 16] br->consumed_words - ;; [ebp + 20] br->consumed_bits - ;; [ebp + 24] br->read_crc - ;; [ebp + 28] br->crc16_align - - ; ucbits = (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits; - mov eax, [ebp + 8] ; eax <- br->words - sub eax, esi ; eax <- br->words-cwords - shl eax, 2 ; eax <- (br->words-cwords)*FLAC__BYTES_PER_WORD - add eax, [ebp + 12] ; eax <- (br->words-cwords)*FLAC__BYTES_PER_WORD + br->bytes - shl eax, 3 ; eax <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - sub eax, ecx ; eax <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits - mov [esp], eax ; ucbits <- eax - - ALIGN 16 -.val_loop: ; while(1) { - - ; - ; read unary part - ; -.unary_loop: ; while(1) { - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - cmp esi, [ebp + 8] ; while(cwords < br->words) /* if we've not consumed up to a partial tail word... */ - jae near .c1_next1 -.c1_loop: ; { - mov ebx, [ebp] - mov eax, [ebx + 4*esi] ; b = br->buffer[cwords] - mov edx, eax ; edx = br->buffer[cwords] (saved for later use) - shl eax, cl ; b = br->buffer[cwords] << cbits - test eax, eax ; (still have to test since cbits may be 0, thus ZF not updated for shl eax,0) - jz near .c1_next2 ; if(b) { - bsr ebx, eax - not ebx - and ebx, 31 ; ebx = 'i' = # of leading 0 bits in 'b' (eax) - add ecx, ebx ; cbits += i; - add edi, ebx ; uval += i; - add ecx, byte 1 ; cbits++; /* skip over stop bit */ - test ecx, ~31 - jz near .break1 ; if(cbits >= FLAC__BITS_PER_WORD) { /* faster way of testing if(cbits == FLAC__BITS_PER_WORD) */ - ; crc16_update_word_(br, br->buffer[cwords]); - push edi ; [need more registers] - bswap edx ; edx = br->buffer[cwords] swapped; now we can CRC the bytes from LSByte to MSByte which makes things much easier - mov ecx, [ebp + 28] ; ecx <- br->crc16_align - mov eax, [ebp + 24] ; ax <- br->read_crc (a.k.a. crc) -%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE - mov edi, _FLAC__crc16_table -%else - mov edi, FLAC__crc16_table -%endif - ;; eax (ax) crc a.k.a. br->read_crc - ;; ebx (bl) intermediate result index into FLAC__crc16_table[] - ;; ecx br->crc16_align - ;; edx byteswapped brword to CRC - ;; esi cwords - ;; edi unsigned FLAC__crc16_table[] - ;; ebp br - test ecx, ecx ; switch(br->crc16_align) ... - jnz .c0b4 ; [br->crc16_align is 0 the vast majority of the time so we optimize the common case] -.c0b0: xor dl, ah ; dl <- (crc>>8)^(word>>24) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word>>24)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word>>24)] -.c0b1: xor dh, ah ; dh <- (crc>>8)^((word>>16)&0xff)) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shr edx, 16 -.c0b2: xor dl, ah ; dl <- (crc>>8)^((word>>8)&0xff)) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] -.c0b3: xor dh, ah ; dh <- (crc>>8)^(word&0xff) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word&0xff)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word&0xff)] - movzx eax, ax - mov [ebp + 24], eax ; br->read_crc <- crc - pop edi - - add esi, byte 1 ; cwords++; - xor ecx, ecx ; cbits = 0; - ; } - jmp near .break1 ; goto break1; - ;; this section relocated out of the way for performance -.c0b4: - mov [ebp + 28], dword 0 ; br->crc16_align <- 0 - cmp ecx, 8 - je .c0b1 - shr edx, 16 - cmp ecx, 16 - je .c0b2 - jmp .c0b3 - - ;; this section relocated out of the way for performance -.c1b4: - mov [ebp + 28], dword 0 ; br->crc16_align <- 0 - cmp ecx, 8 - je .c1b1 - shr edx, 16 - cmp ecx, 16 - je .c1b2 - jmp .c1b3 - -.c1_next2: ; } else { - ;; ecx cbits - ;; edx current brword 'b' - ;; esi cwords - ;; edi uval - ;; ebp br - add edi, 32 - sub edi, ecx ; uval += FLAC__BITS_PER_WORD - cbits; - ; crc16_update_word_(br, br->buffer[cwords]); - push edi ; [need more registers] - bswap edx ; edx = br->buffer[cwords] swapped; now we can CRC the bytes from LSByte to MSByte which makes things much easier - mov ecx, [ebp + 28] ; ecx <- br->crc16_align - mov eax, [ebp + 24] ; ax <- br->read_crc (a.k.a. crc) -%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE - mov edi, _FLAC__crc16_table -%else - mov edi, FLAC__crc16_table -%endif - ;; eax (ax) crc a.k.a. br->read_crc - ;; ebx (bl) intermediate result index into FLAC__crc16_table[] - ;; ecx br->crc16_align - ;; edx byteswapped brword to CRC - ;; esi cwords - ;; edi unsigned FLAC__crc16_table[] - ;; ebp br - test ecx, ecx ; switch(br->crc16_align) ... - jnz .c1b4 ; [br->crc16_align is 0 the vast majority of the time so we optimize the common case] -.c1b0: xor dl, ah ; dl <- (crc>>8)^(word>>24) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word>>24)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word>>24)] -.c1b1: xor dh, ah ; dh <- (crc>>8)^((word>>16)&0xff)) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shr edx, 16 -.c1b2: xor dl, ah ; dl <- (crc>>8)^((word>>8)&0xff)) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] -.c1b3: xor dh, ah ; dh <- (crc>>8)^(word&0xff) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word&0xff)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word&0xff)] - movzx eax, ax - mov [ebp + 24], eax ; br->read_crc <- crc - pop edi - - add esi, byte 1 ; cwords++; - xor ecx, ecx ; cbits = 0; - ; /* didn't find stop bit yet, have to keep going... */ - ; } - - cmp esi, [ebp + 8] ; } while(cwords < br->words) /* if we've not consumed up to a partial tail word... */ - jb near .c1_loop - -.c1_next1: - ; at this point we've eaten up all the whole words; have to try - ; reading through any tail bytes before calling the read callback. - ; this is a repeat of the above logic adjusted for the fact we - ; don't have a whole word. note though if the client is feeding - ; us data a byte at a time (unlikely), br->consumed_bits may not - ; be zero. - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - mov edx, [ebp + 12] ; edx <- br->bytes - test edx, edx - jz .read1 ; if(br->bytes) { [NOTE: this case is rare so it doesn't have to be all that fast ] - mov ebx, [ebp] - shl edx, 3 ; edx <- const unsigned end = br->bytes * 8; - mov eax, [ebx + 4*esi] ; b = br->buffer[cwords] - xchg edx, ecx ; [edx <- cbits , ecx <- end] - mov ebx, 0xffffffff ; ebx <- FLAC__WORD_ALL_ONES - shr ebx, cl ; ebx <- FLAC__WORD_ALL_ONES >> end - not ebx ; ebx <- ~(FLAC__WORD_ALL_ONES >> end) - xchg edx, ecx ; [edx <- end , ecx <- cbits] - and eax, ebx ; b = (br->buffer[cwords] & ~(FLAC__WORD_ALL_ONES >> end)); - shl eax, cl ; b = (br->buffer[cwords] & ~(FLAC__WORD_ALL_ONES >> end)) << cbits; - test eax, eax ; (still have to test since cbits may be 0, thus ZF not updated for shl eax,0) - jz .c1_next3 ; if(b) { - bsr ebx, eax - not ebx - and ebx, 31 ; ebx = 'i' = # of leading 0 bits in 'b' (eax) - add ecx, ebx ; cbits += i; - add edi, ebx ; uval += i; - add ecx, byte 1 ; cbits++; /* skip over stop bit */ - jmp short .break1 ; goto break1; -.c1_next3: ; } else { - sub edi, ecx - add edi, edx ; uval += end - cbits; - add ecx, edx ; cbits += end - ; /* didn't find stop bit yet, have to keep going... */ - ; } - ; } -.read1: - ; flush registers and read; bitreader_read_from_client_() does - ; not touch br->consumed_bits at all but we still need to set - ; it in case it fails and we have to return false. - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - mov [ebp + 16], esi ; br->consumed_words = cwords; - mov [ebp + 20], ecx ; br->consumed_bits = cbits; - push ecx ; /* save */ - push ebp ; /* push br argument */ -%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE - call _bitreader_read_from_client_ -%else - call bitreader_read_from_client_ -%endif - pop edx ; /* discard, unused */ - pop ecx ; /* restore */ - mov esi, [ebp + 16] ; cwords = br->consumed_words; - ; ucbits = (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits; - mov ebx, [ebp + 8] ; ebx <- br->words - sub ebx, esi ; ebx <- br->words-cwords - shl ebx, 2 ; ebx <- (br->words-cwords)*FLAC__BYTES_PER_WORD - add ebx, [ebp + 12] ; ebx <- (br->words-cwords)*FLAC__BYTES_PER_WORD + br->bytes - shl ebx, 3 ; ebx <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - sub ebx, ecx ; ebx <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits - add ebx, edi ; ebx <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits + uval - ; + uval to offset our count by the # of unary bits already - ; consumed before the read, because we will add these back - ; in all at once at break1 - mov [esp], ebx ; ucbits <- ebx - test eax, eax ; if(!bitreader_read_from_client_(br)) - jnz near .unary_loop - jmp .end ; return false; /* eax (the return value) is already 0 */ - ; } /* end while(1) unary part */ - - ALIGN 16 -.break1: - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - ;; [esp] ucbits - sub [esp], edi ; ucbits -= uval; - sub dword [esp], byte 1 ; ucbits--; /* account for stop bit */ - - ; - ; read binary part - ; - mov ebx, [esp + 36] ; ebx <- parameter - test ebx, ebx ; if(parameter) { - jz near .break2 -.read2: - cmp [esp], ebx ; while(ucbits < parameter) { - jae .c2_next1 - ; flush registers and read; bitreader_read_from_client_() does - ; not touch br->consumed_bits at all but we still need to set - ; it in case it fails and we have to return false. - mov [ebp + 16], esi ; br->consumed_words = cwords; - mov [ebp + 20], ecx ; br->consumed_bits = cbits; - push ecx ; /* save */ - push ebp ; /* push br argument */ -%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE - call _bitreader_read_from_client_ -%else - call bitreader_read_from_client_ -%endif - pop edx ; /* discard, unused */ - pop ecx ; /* restore */ - mov esi, [ebp + 16] ; cwords = br->consumed_words; - ; ucbits = (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits; - mov edx, [ebp + 8] ; edx <- br->words - sub edx, esi ; edx <- br->words-cwords - shl edx, 2 ; edx <- (br->words-cwords)*FLAC__BYTES_PER_WORD - add edx, [ebp + 12] ; edx <- (br->words-cwords)*FLAC__BYTES_PER_WORD + br->bytes - shl edx, 3 ; edx <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - sub edx, ecx ; edx <- (br->words-cwords)*FLAC__BITS_PER_WORD + br->bytes*8 - cbits - mov [esp], edx ; ucbits <- edx - test eax, eax ; if(!bitreader_read_from_client_(br)) - jnz .read2 - jmp .end ; return false; /* eax (the return value) is already 0 */ - ; } -.c2_next1: - ;; ebx parameter - ;; ecx cbits - ;; esi cwords - ;; edi uval - ;; ebp br - ;; [esp] ucbits - cmp esi, [ebp + 8] ; if(cwords < br->words) { /* if we've not consumed up to a partial tail word... */ - jae near .c2_next2 - test ecx, ecx ; if(cbits) { - jz near .c2_next3 ; /* this also works when consumed_bits==0, it's just a little slower than necessary for that case */ - mov eax, 32 - mov edx, [ebp] - sub eax, ecx ; const unsigned n = FLAC__BITS_PER_WORD - cbits; - mov edx, [edx + 4*esi] ; const brword word = br->buffer[cwords]; - cmp ebx, eax ; if(parameter < n) { - jae .c2_next4 - ; uval <<= parameter; - ; uval |= (word & (FLAC__WORD_ALL_ONES >> cbits)) >> (n-parameter); - shl edx, cl - xchg ebx, ecx - shld edi, edx, cl - add ebx, ecx ; cbits += parameter; - xchg ebx, ecx ; ebx <- parameter, ecx <- cbits - jmp .break2 ; goto break2; - ; } -.c2_next4: - ; uval <<= n; - ; uval |= word & (FLAC__WORD_ALL_ONES >> cbits); -%if 1 - rol edx, cl ; @@@@@@OPT: may be faster to use rol to save edx so we can restore it for CRC'ing - ; @@@@@@OPT: or put parameter in ch instead and free up ebx completely again -%else - shl edx, cl -%endif - xchg eax, ecx - shld edi, edx, cl - xchg eax, ecx -%if 1 - ror edx, cl ; restored. -%else - mov edx, [ebp] - mov edx, [edx + 4*esi] -%endif - ; crc16_update_word_(br, br->buffer[cwords]); - push edi ; [need more registers] - push ebx ; [need more registers] - push eax ; [need more registers] - bswap edx ; edx = br->buffer[cwords] swapped; now we can CRC the bytes from LSByte to MSByte which makes things much easier - mov ecx, [ebp + 28] ; ecx <- br->crc16_align - mov eax, [ebp + 24] ; ax <- br->read_crc (a.k.a. crc) -%ifdef FLAC__PUBLIC_NEEDS_UNDERSCORE - mov edi, _FLAC__crc16_table -%else - mov edi, FLAC__crc16_table -%endif - ;; eax (ax) crc a.k.a. br->read_crc - ;; ebx (bl) intermediate result index into FLAC__crc16_table[] - ;; ecx br->crc16_align - ;; edx byteswapped brword to CRC - ;; esi cwords - ;; edi unsigned FLAC__crc16_table[] - ;; ebp br - test ecx, ecx ; switch(br->crc16_align) ... - jnz .c2b4 ; [br->crc16_align is 0 the vast majority of the time so we optimize the common case] -.c2b0: xor dl, ah ; dl <- (crc>>8)^(word>>24) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word>>24)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word>>24)] -.c2b1: xor dh, ah ; dh <- (crc>>8)^((word>>16)&0xff)) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>16)&0xff))] - shr edx, 16 -.c2b2: xor dl, ah ; dl <- (crc>>8)^((word>>8)&0xff)) - movzx ebx, dl - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^((word>>8)&0xff))] -.c2b3: xor dh, ah ; dh <- (crc>>8)^(word&0xff) - movzx ebx, dh - mov ecx, [ebx*4 + edi] ; cx <- FLAC__crc16_table[(crc>>8)^(word&0xff)] - shl eax, 8 ; ax <- (crc<<8) - xor eax, ecx ; crc <- ax <- (crc<<8) ^ FLAC__crc16_table[(crc>>8)^(word&0xff)] - movzx eax, ax - mov [ebp + 24], eax ; br->read_crc <- crc - pop eax - pop ebx - pop edi - add esi, byte 1 ; cwords++; - mov ecx, ebx - sub ecx, eax ; cbits = parameter - n; - jz .break2 ; if(cbits) { /* parameter > n, i.e. if there are still bits left to read, there have to be less than 32 so they will all be in the next word */ - ; uval <<= cbits; - ; uval |= (br->buffer[cwords] >> (FLAC__BITS_PER_WORD-cbits)); - mov eax, [ebp] - mov eax, [eax + 4*esi] - shld edi, eax, cl - ; } - jmp .break2 ; goto break2; - - ;; this section relocated out of the way for performance -.c2b4: - mov [ebp + 28], dword 0 ; br->crc16_align <- 0 - cmp ecx, 8 - je .c2b1 - shr edx, 16 - cmp ecx, 16 - je .c2b2 - jmp .c2b3 - -.c2_next3: ; } else { - mov ecx, ebx ; cbits = parameter; - ; uval <<= cbits; - ; uval |= (br->buffer[cwords] >> (FLAC__BITS_PER_WORD-cbits)); - mov eax, [ebp] - mov eax, [eax + 4*esi] - shld edi, eax, cl - jmp .break2 ; goto break2; - ; } -.c2_next2: ; } else { - ; in this case we're starting our read at a partial tail word; - ; the reader has guaranteed that we have at least 'parameter' - ; bits available to read, which makes this case simpler. - ; uval <<= parameter; - ; if(cbits) { - ; /* this also works when consumed_bits==0, it's just a little slower than necessary for that case */ - ; uval |= (br->buffer[cwords] & (FLAC__WORD_ALL_ONES >> cbits)) >> (FLAC__BITS_PER_WORD-cbits-parameter); - ; cbits += parameter; - ; goto break2; - ; } else { - ; cbits = parameter; - ; uval |= br->buffer[cwords] >> (FLAC__BITS_PER_WORD-cbits); - ; goto break2; - ; } - ; the above is much shorter in assembly: - mov eax, [ebp] - mov eax, [eax + 4*esi] ; eax <- br->buffer[cwords] - shl eax, cl ; eax <- br->buffer[cwords] << cbits - add ecx, ebx ; cbits += parameter - xchg ebx, ecx ; ebx <- cbits, ecx <- parameter - shld edi, eax, cl ; uval <<= parameter <<< 'parameter' bits of tail word - xchg ebx, ecx ; ebx <- parameter, ecx <- cbits - ; } - ; } -.break2: - sub [esp], ebx ; ucbits -= parameter; - - ; - ; compose the value - ; - mov ebx, [esp + 28] ; ebx <- vals - mov edx, edi ; edx <- uval - and edi, 1 ; edi <- uval & 1 - shr edx, 1 ; edx <- uval >> 1 - neg edi ; edi <- -(int)(uval & 1) - xor edx, edi ; edx <- (uval >> 1 ^ -(int)(uval & 1)) - mov [ebx], edx ; *vals <- edx - sub dword [esp + 32], byte 1 ; --nvals; - jz .finished ; if(nvals == 0) /* jump to finish */ - xor edi, edi ; uval = 0; - add dword [esp + 28], 4 ; ++vals - jmp .val_loop ; } - -.finished: - mov [ebp + 16], esi ; br->consumed_words = cwords; - mov [ebp + 20], ecx ; br->consumed_bits = cbits; - mov eax, 1 -.end: - add esp, 4 - pop edi - pop esi - pop ebx - pop ebp - ret - -end - -%ifdef OBJ_FORMAT_elf - section .note.GNU-stack noalloc -%endif diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/stream_encoder_asm.nasm b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/stream_encoder_asm.nasm deleted file mode 100644 index b7ecef8cd..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ia32/stream_encoder_asm.nasm +++ /dev/null @@ -1,159 +0,0 @@ -; vim:filetype=nasm ts=8 - -; libFLAC - Free Lossless Audio Codec library -; Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson -; -; Redistribution and use in source and binary forms, with or without -; modification, are permitted provided that the following conditions -; are met: -; -; - Redistributions of source code must retain the above copyright -; notice, this list of conditions and the following disclaimer. -; -; - Redistributions in binary form must reproduce the above copyright -; notice, this list of conditions and the following disclaimer in the -; documentation and/or other materials provided with the distribution. -; -; - Neither the name of the Xiph.org Foundation nor the names of its -; contributors may be used to endorse or promote products derived from -; this software without specific prior written permission. -; -; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -; ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR -; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -%include "nasm.h" - - data_section - -cglobal precompute_partition_info_sums_32bit_asm_ia32_ - - code_section - - -; ********************************************************************** -; -; void FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter) -; void precompute_partition_info_sums_32bit_( -; const FLAC__int32 residual[], -; FLAC__uint64 abs_residual_partition_sums[], -; unsigned blocksize, -; unsigned predictor_order, -; unsigned min_partition_order, -; unsigned max_partition_order -; ) -; - ALIGN 16 -cident precompute_partition_info_sums_32bit_asm_ia32_ - - ;; peppered throughout the code at major checkpoints are keys like this as to where things are at that point in time - ;; [esp + 4] const FLAC__int32 residual[] - ;; [esp + 8] FLAC__uint64 abs_residual_partition_sums[] - ;; [esp + 12] unsigned blocksize - ;; [esp + 16] unsigned predictor_order - ;; [esp + 20] unsigned min_partition_order - ;; [esp + 24] unsigned max_partition_order - push ebp - push ebx - push esi - push edi - sub esp, 8 - ;; [esp + 28] const FLAC__int32 residual[] - ;; [esp + 32] FLAC__uint64 abs_residual_partition_sums[] - ;; [esp + 36] unsigned blocksize - ;; [esp + 40] unsigned predictor_order - ;; [esp + 44] unsigned min_partition_order - ;; [esp + 48] unsigned max_partition_order - ;; [esp] partitions - ;; [esp + 4] default_partition_samples - - mov ecx, [esp + 48] - mov eax, 1 - shl eax, cl - mov [esp], eax ; [esp] <- partitions = 1u << max_partition_order; - mov eax, [esp + 36] - shr eax, cl - mov [esp + 4], eax ; [esp + 4] <- default_partition_samples = blocksize >> max_partition_order; - - ; - ; first do max_partition_order - ; - mov edi, [esp + 4] - sub edi, [esp + 40] ; edi <- end = (unsigned)(-(int)predictor_order) + default_partition_samples - xor esi, esi ; esi <- residual_sample = 0 - xor ecx, ecx ; ecx <- partition = 0 - mov ebp, [esp + 28] ; ebp <- residual[] - xor ebx, ebx ; ebx <- abs_residual_partition_sum = 0; - ; note we put the updates to 'end' and 'abs_residual_partition_sum' at the end of loop0 and in the initialization above so we could align loop0 and loop1 - ALIGN 16 -.loop0: ; for(partition = residual_sample = 0; partition < partitions; partition++) { -.loop1: ; for( ; residual_sample < end; residual_sample++) - mov eax, [ebp + esi * 4] - cdq - xor eax, edx - sub eax, edx - add ebx, eax ; abs_residual_partition_sum += abs(residual[residual_sample]); - ;@@@@@@ check overflow flag and abort here? - add esi, byte 1 - cmp esi, edi ; /* since the loop will always run at least once, we can put the loop check down here */ - jb .loop1 -.next1: - add edi, [esp + 4] ; end += default_partition_samples; - mov eax, [esp + 32] - mov [eax + ecx * 8], ebx ; abs_residual_partition_sums[partition] = abs_residual_partition_sum; - mov [eax + ecx * 8 + 4], dword 0 - xor ebx, ebx ; abs_residual_partition_sum = 0; - add ecx, byte 1 - cmp ecx, [esp] ; /* since the loop will always run at least once, we can put the loop check down here */ - jb .loop0 -.next0: ; } - ; - ; now merge partitions for lower orders - ; - mov esi, [esp + 32] ; esi <- abs_residual_partition_sums[from_partition==0]; - mov eax, [esp] - lea edi, [esi + eax * 8] ; edi <- abs_residual_partition_sums[to_partition==partitions]; - mov ecx, [esp + 48] - sub ecx, byte 1 ; ecx <- partition_order = (int)max_partition_order - 1; - ALIGN 16 -.loop2: ; for(; partition_order >= (int)min_partition_order; partition_order--) { - cmp ecx, [esp + 44] - jl .next2 - mov edx, 1 - shl edx, cl ; const unsigned partitions = 1u << partition_order; - ALIGN 16 -.loop3: ; for(i = 0; i < partitions; i++) { - mov eax, [esi] - mov ebx, [esi + 4] - add eax, [esi + 8] - adc ebx, [esi + 12] - mov [edi], eax - mov [edi + 4], ebx ; a_r_p_s[to_partition] = a_r_p_s[from_partition] + a_r_p_s[from_partition+1]; - add esi, byte 16 - add edi, byte 8 - sub edx, byte 1 - jnz .loop3 ; } - sub ecx, byte 1 - jmp .loop2 ; } -.next2: - - add esp, 8 - pop edi - pop esi - pop ebx - pop ebp - ret - -end - -%ifdef OBJ_FORMAT_elf - section .note.GNU-stack noalloc -%endif diff --git a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ppc/as/lpc_asm.s b/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ppc/as/lpc_asm.s deleted file mode 100644 index ca39c6ffe..000000000 --- a/Frameworks/FLAC/flac-1.2.1/src/libFLAC/ppc/as/lpc_asm.s +++ /dev/null @@ -1,429 +0,0 @@ -; libFLAC - Free Lossless Audio Codec library -; Copyright (C) 2004,2005,2006,2007 Josh Coalson -; -; Redistribution and use in source and binary forms, with or without -; modification, are permitted provided that the following conditions -; are met: -; -; - Redistributions of source code must retain the above copyright -; notice, this list of conditions and the following disclaimer. -; -; - Redistributions in binary form must reproduce the above copyright -; notice, this list of conditions and the following disclaimer in the -; documentation and/or other materials provided with the distribution. -; -; - Neither the name of the Xiph.org Foundation nor the names of its -; contributors may be used to endorse or promote products derived from -; this software without specific prior written permission. -; -; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -; ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -; A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR -; CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -; EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -; LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -.text - .align 2 -.globl _FLAC__lpc_restore_signal_asm_ppc_altivec_16 - -.globl _FLAC__lpc_restore_signal_asm_ppc_altivec_16_order8 - -_FLAC__lpc_restore_signal_asm_ppc_altivec_16: -; r3: residual[] -; r4: data_len -; r5: qlp_coeff[] -; r6: order -; r7: lp_quantization -; r8: data[] - -; see src/libFLAC/lpc.c:FLAC__lpc_restore_signal() -; these is a PowerPC/Altivec assembly version which requires bps<=16 (or actual -; bps<=15 for mid-side coding, since that uses an extra bit) - -; these should be fast; the inner loop is unrolled (it takes no more than -; 3*(order%4) instructions, all of which are arithmetic), and all of the -; coefficients and all relevant history stay in registers, so the outer loop -; has only one load from memory (the residual) - -; I have not yet run this through simg4, so there may be some avoidable stalls, -; and there may be a somewhat more clever way to do the outer loop - -; the branch mechanism may prevent dynamic loading; I still need to examine -; this issue, and there may be a more elegant method - - stmw r31,-4(r1) - - addi r9,r1,-28 - li r31,0xf - andc r9,r9,r31 ; for quadword-aligned stack data - - slwi r6,r6,2 ; adjust for word size - slwi r4,r4,2 - add r4,r4,r8 ; r4 = data+data_len - - mfspr r0,256 ; cache old vrsave - addis r31,0,hi16(0xfffffc00) - ori r31,r31,lo16(0xfffffc00) - mtspr 256,r31 ; declare VRs in vrsave - - cmplw cr0,r8,r4 ; i> lp_quantization - - lvewx v21,0,r3 ; v21[n]: *residual - vperm v21,v21,v21,v18 ; v21[3]: *residual - vaddsws v20,v21,v20 ; v20[3]: *residual + (sum >> lp_quantization) - vsldoi v18,v18,v18,4 ; increment shift vector - - vperm v21,v20,v20,v17 ; v21[n]: shift for storage - vsldoi v17,v17,v17,12 ; increment shift vector - stvewx v21,0,r8 - - vsldoi v20,v20,v20,12 - vsldoi v8,v8,v20,4 ; insert value onto history - - addi r3,r3,4 - addi r8,r8,4 - cmplw cr0,r8,r4 ; i> lp_quantization - - lvewx v9,0,r3 ; v9[n]: *residual - vperm v9,v9,v9,v6 ; v9[3]: *residual - vaddsws v8,v9,v8 ; v8[3]: *residual + (sum >> lp_quantization) - vsldoi v6,v6,v6,4 ; increment shift vector - - vperm v9,v8,v8,v5 ; v9[n]: shift for storage - vsldoi v5,v5,v5,12 ; increment shift vector - stvewx v9,0,r8 - - vsldoi v8,v8,v8,12 - vsldoi v2,v2,v8,4 ; insert value onto history - - addi r3,r3,4 - addi r8,r8,4 - cmplw cr0,r8,r4 ; i> lp_quantization - - lvewx v21,0,r3 # v21[n]: *residual - vperm v21,v21,v21,v18 # v21[3]: *residual - vaddsws v20,v21,v20 # v20[3]: *residual + (sum >> lp_quantization) - vsldoi v18,v18,v18,4 # increment shift vector - - vperm v21,v20,v20,v17 # v21[n]: shift for storage - vsldoi v17,v17,v17,12 # increment shift vector - stvewx v21,0,r8 - - vsldoi v20,v20,v20,12 - vsldoi v8,v8,v20,4 # insert value onto history - - addi r3,r3,4 - addi r8,r8,4 - cmplw cr0,r8,r4 # i> lp_quantization - - lvewx v9,0,r3 # v9[n]: *residual - vperm v9,v9,v9,v6 # v9[3]: *residual - vaddsws v8,v9,v8 # v8[3]: *residual + (sum >> lp_quantization) - vsldoi v6,v6,v6,4 # increment shift vector - - vperm v9,v8,v8,v5 # v9[n]: shift for storage - vsldoi v5,v5,v5,12 # increment shift vector - stvewx v9,0,r8 - - vsldoi v8,v8,v8,12 - vsldoi v2,v2,v8,4 # insert value onto history - - addi r3,r3,4 - addi r8,r8,4 - cmplw cr0,r8,r4 # i -FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio -codec developed by Josh Coalson . +Original author: Josh Coalson + +Website : https://www.xiph.org/flac/ + +FLAC is an Open Source lossless audio codec originally developed by Josh Coalson +between 2001 and 2009. From 2009 to 2012 FLAC was basically unmaintained. In +2012 the Erik de Castro Lopo became the chief maintainer as part of the +Xiph.Org Foundation. Other major contributors and their contributions: + +"lvqcl" +* Visual Studio build system. +* Optimisations in the encoder and decoder. + +"Janne Hyvärinen" +* Visual Studio build system. +* Unicode handling on Windows. + "Andrey Astafiev" * Russian translation of the HTML documentation diff --git a/Frameworks/FLAC/flac-1.2.1/COPYING.FDL b/Frameworks/FLAC/flac-1.3.3/COPYING.FDL similarity index 100% rename from Frameworks/FLAC/flac-1.2.1/COPYING.FDL rename to Frameworks/FLAC/flac-1.3.3/COPYING.FDL diff --git a/Frameworks/FLAC/flac-1.2.1/COPYING.GPL b/Frameworks/FLAC/flac-1.3.3/COPYING.GPL similarity index 95% rename from Frameworks/FLAC/flac-1.2.1/COPYING.GPL rename to Frameworks/FLAC/flac-1.3.3/COPYING.GPL index c3c7a9eac..d159169d1 100644 --- a/Frameworks/FLAC/flac-1.2.1/COPYING.GPL +++ b/Frameworks/FLAC/flac-1.3.3/COPYING.GPL @@ -1,12 +1,12 @@ - GNU GENERAL PUBLIC LICENSE - Version 2, June 1991 + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 - Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. - Preamble + Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public @@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by -the GNU Library General Public License instead.) You can apply it to +the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not @@ -55,8 +55,8 @@ patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. - - GNU GENERAL PUBLIC LICENSE + + GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains @@ -110,7 +110,7 @@ above, provided that you also meet all of these conditions: License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) - + These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in @@ -168,7 +168,7 @@ access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. - + 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is @@ -225,7 +225,7 @@ impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. - + 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License @@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. - NO WARRANTY + NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN @@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it @@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. - Copyright (C) 19yy + Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -303,17 +303,16 @@ the "copyright" line and a pointer to where the full notice is found. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: - Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. @@ -336,5 +335,5 @@ necessary. Here is a sample; alter the names: This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the -library. If this is what you want to do, use the GNU Library General +library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. diff --git a/Frameworks/FLAC/flac-1.2.1/COPYING.LGPL b/Frameworks/FLAC/flac-1.3.3/COPYING.LGPL similarity index 100% rename from Frameworks/FLAC/flac-1.2.1/COPYING.LGPL rename to Frameworks/FLAC/flac-1.3.3/COPYING.LGPL diff --git a/Frameworks/FLAC/flac-1.2.1/COPYING.Xiph b/Frameworks/FLAC/flac-1.3.3/COPYING.Xiph similarity index 94% rename from Frameworks/FLAC/flac-1.2.1/COPYING.Xiph rename to Frameworks/FLAC/flac-1.3.3/COPYING.Xiph index 0a104a9cd..d8295f0ed 100644 --- a/Frameworks/FLAC/flac-1.2.1/COPYING.Xiph +++ b/Frameworks/FLAC/flac-1.3.3/COPYING.Xiph @@ -1,4 +1,5 @@ -Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson +Copyright (C) 2000-2009 Josh Coalson +Copyright (C) 2011-2016 Xiph.Org Foundation Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/Frameworks/FLAC/flac-1.3.3/FLAC-vs2005.sln b/Frameworks/FLAC/flac-1.3.3/FLAC-vs2005.sln new file mode 100644 index 000000000..c35b07c44 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/FLAC-vs2005.sln @@ -0,0 +1,249 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual C++ Express 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_c_decode_file", "examples\c\decode\file\example_c_decode_file.vcproj", "{4CEFBD00-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_c_encode_file", "examples\c\encode\file\example_c_encode_file.vcproj", "{4CEFBD01-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_cpp_decode_file", "examples\cpp\decode\file\example_cpp_decode_file.vcproj", "{4CEFBE00-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC86-C215-11DB-8314-0800200C9A66} = {4CEFBC86-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_cpp_encode_file", "examples\cpp\encode\file\example_cpp_encode_file.vcproj", "{4CEFBE01-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC86-C215-11DB-8314-0800200C9A66} = {4CEFBC86-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flac", "src\flac\flac.vcproj", "{4CEFBC7D-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + {4CEFBC89-C215-11DB-8314-0800200C9A66} = {4CEFBC89-C215-11DB-8314-0800200C9A66} + {4CEFBC92-C215-11DB-8314-0800200C9A66} = {4CEFBC92-C215-11DB-8314-0800200C9A66} + {4CEFBC80-C215-11DB-8314-0800200C9A66} = {4CEFBC80-C215-11DB-8314-0800200C9A66} + {4CEFBC8A-C215-11DB-8314-0800200C9A66} = {4CEFBC8A-C215-11DB-8314-0800200C9A66} + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBE02-C215-11DB-8314-0800200C9A66} = {4CEFBE02-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iffscan", "src\flac\iffscan.vcproj", "{4CEFBC94-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBE02-C215-11DB-8314-0800200C9A66} = {4CEFBE02-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flacdiff", "src\utils\flacdiff\flacdiff.vcproj", "{4CEFBC93-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC86-C215-11DB-8314-0800200C9A66} = {4CEFBC86-C215-11DB-8314-0800200C9A66} + {4CEFBE02-C215-11DB-8314-0800200C9A66} = {4CEFBE02-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flactimer", "src\utils\flactimer\flactimer.vcproj", "{4CEFBC95-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "getopt_static", "src\share\getopt\getopt_static.vcproj", "{4CEFBC80-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grabbag_static", "src\share\grabbag\grabbag_static.vcproj", "{4CEFBC81-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC89-C215-11DB-8314-0800200C9A66} = {4CEFBC89-C215-11DB-8314-0800200C9A66} + {4CEFBE02-C215-11DB-8314-0800200C9A66} = {4CEFBE02-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC_dynamic", "src\libFLAC\libFLAC_dynamic.vcproj", "{4CEFBC83-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC_static", "src\libFLAC\libFLAC_static.vcproj", "{4CEFBC84-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC++_dynamic", "src\libFLAC++\libFLAC++_dynamic.vcproj", "{4CEFBC85-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC83-C215-11DB-8314-0800200C9A66} = {4CEFBC83-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC++_static", "src\libFLAC++\libFLAC++_static.vcproj", "{4CEFBC86-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "metaflac", "src\metaflac\metaflac.vcproj", "{4CEFBC87-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC80-C215-11DB-8314-0800200C9A66} = {4CEFBC80-C215-11DB-8314-0800200C9A66} + {4CEFBC92-C215-11DB-8314-0800200C9A66} = {4CEFBC92-C215-11DB-8314-0800200C9A66} + {4CEFBC89-C215-11DB-8314-0800200C9A66} = {4CEFBC89-C215-11DB-8314-0800200C9A66} + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + {4CEFBE02-C215-11DB-8314-0800200C9A66} = {4CEFBE02-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "replaygain_analysis_static", "src\share\replaygain_analysis\replaygain_analysis_static.vcproj", "{4CEFBC89-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "replaygain_synthesis_static", "src\share\replaygain_synthesis\replaygain_synthesis_static.vcproj", "{4CEFBC8A-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cuesheet", "src\test_grabbag\cuesheet\test_cuesheet.vcproj", "{4CEFBC8B-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libFLAC", "src\test_libFLAC\test_libFLAC.vcproj", "{4CEFBC8C-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC8E-C215-11DB-8314-0800200C9A66} = {4CEFBC8E-C215-11DB-8314-0800200C9A66} + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libFLAC++", "src\test_libFLAC++\test_libFLAC++.vcproj", "{4CEFBC8D-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC86-C215-11DB-8314-0800200C9A66} = {4CEFBC86-C215-11DB-8314-0800200C9A66} + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + {4CEFBC8E-C215-11DB-8314-0800200C9A66} = {4CEFBC8E-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libs_common_static", "src\test_libs_common\test_libs_common_static.vcproj", "{4CEFBC8E-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_picture", "src\test_grabbag\picture\test_picture.vcproj", "{4CEFBC8F-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_seeking", "src\test_seeking\test_seeking.vcproj", "{4CEFBC90-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC84-C215-11DB-8314-0800200C9A66} = {4CEFBC84-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_streams", "src\test_streams\test_streams.vcproj", "{4CEFBC91-C215-11DB-8314-0800200C9A66}" + ProjectSection(ProjectDependencies) = postProject + {4CEFBC81-C215-11DB-8314-0800200C9A66} = {4CEFBC81-C215-11DB-8314-0800200C9A66} + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "utf8_static", "src\share\utf8\utf8_static.vcproj", "{4CEFBC92-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_utf8_io_static", "src\share\win_utf8_io\win_utf8_io_static.vcproj", "{4CEFBE02-C215-11DB-8314-0800200C9A66}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Frameworks/FLAC/flac-1.3.3/FLAC.sln b/Frameworks/FLAC/flac-1.3.3/FLAC.sln new file mode 100644 index 000000000..1c175f80f --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/FLAC.sln @@ -0,0 +1,278 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Express 2013 for Windows Desktop +VisualStudioVersion = 12.0.30501.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_c_decode_file", "examples\c\decode\file\example_c_decode_file.vcxproj", "{4CEFBD00-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_c_encode_file", "examples\c\encode\file\example_c_encode_file.vcxproj", "{4CEFBD01-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_cpp_decode_file", "examples\cpp\decode\file\example_cpp_decode_file.vcxproj", "{4CEFBE00-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "example_cpp_encode_file", "examples\cpp\encode\file\example_cpp_encode_file.vcxproj", "{4CEFBE01-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flac", "src\flac\flac.vcxproj", "{4CEFBC7D-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "iffscan", "src\flac\iffscan.vcxproj", "{4CEFBC94-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flacdiff", "src\utils\flacdiff\flacdiff.vcxproj", "{4CEFBC93-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "flactimer", "src\utils\flactimer\flactimer.vcxproj", "{4CEFBC95-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "getopt_static", "src\share\getopt\getopt_static.vcxproj", "{4CEFBC80-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "grabbag_static", "src\share\grabbag\grabbag_static.vcxproj", "{4CEFBC81-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC_dynamic", "src\libFLAC\libFLAC_dynamic.vcxproj", "{4CEFBC83-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC_static", "src\libFLAC\libFLAC_static.vcxproj", "{4CEFBC84-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC++_dynamic", "src\libFLAC++\libFLAC++_dynamic.vcxproj", "{4CEFBC85-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libFLAC++_static", "src\libFLAC++\libFLAC++_static.vcxproj", "{4CEFBC86-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "metaflac", "src\metaflac\metaflac.vcxproj", "{4CEFBC87-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "replaygain_analysis_static", "src\share\replaygain_analysis\replaygain_analysis_static.vcxproj", "{4CEFBC89-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "replaygain_synthesis_static", "src\share\replaygain_synthesis\replaygain_synthesis_static.vcxproj", "{4CEFBC8A-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_cuesheet", "src\test_grabbag\cuesheet\test_cuesheet.vcxproj", "{4CEFBC8B-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libFLAC", "src\test_libFLAC\test_libFLAC.vcxproj", "{4CEFBC8C-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libFLAC++", "src\test_libFLAC++\test_libFLAC++.vcxproj", "{4CEFBC8D-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libs_common_static", "src\test_libs_common\test_libs_common_static.vcxproj", "{4CEFBC8E-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_picture", "src\test_grabbag\picture\test_picture.vcxproj", "{4CEFBC8F-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_seeking", "src\test_seeking\test_seeking.vcxproj", "{4CEFBC90-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_streams", "src\test_streams\test_streams.vcxproj", "{4CEFBC91-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "utf8_static", "src\share\utf8\utf8_static.vcxproj", "{4CEFBC92-C215-11DB-8314-0800200C9A66}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win_utf8_io_static", "src\share\win_utf8_io\win_utf8_io_static.vcxproj", "{4CEFBE02-C215-11DB-8314-0800200C9A66}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBD00-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBD01-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBE00-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBE01-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC7D-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC94-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC93-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC95-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC80-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC81-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC83-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC84-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC85-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC86-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC87-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC89-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8A-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8B-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8C-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8D-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8E-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC8F-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC90-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC91-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBC92-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|Win32.ActiveCfg = Debug|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|Win32.Build.0 = Debug|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|x64.ActiveCfg = Debug|x64 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Debug|x64.Build.0 = Debug|x64 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|Win32.ActiveCfg = Release|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|Win32.Build.0 = Release|Win32 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|x64.ActiveCfg = Release|x64 + {4CEFBE02-C215-11DB-8314-0800200C9A66}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Frameworks/FLAC/flac-1.3.3/Makefile.am b/Frameworks/FLAC/flac-1.3.3/Makefile.am new file mode 100644 index 000000000..38aea04a1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/Makefile.am @@ -0,0 +1,55 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +# +# automake provides the following useful targets: +# +# all: build all programs and libraries using the current +# configuration (set by configure) +# +# check: build and run all self-tests +# +# clean: remove everything except what's required to build everything +# +# distclean: remove everything except what goes in the distribution +# + +ACLOCAL_AMFLAGS = -I m4 + +SUBDIRS = doc include m4 man src test build objs microbench + +if EXAMPLES +SUBDIRS += examples +endif + +EXTRA_DIST = \ + COPYING.FDL \ + COPYING.GPL \ + COPYING.LGPL \ + COPYING.Xiph \ + FLAC.sln \ + FLAC-vs2005.sln \ + Makefile.lite \ + Makefile.deps \ + autogen.sh \ + config.rpath \ + depcomp \ + ltmain.sh \ + strip_non_asm_libtool_args.sh + +CLEANFILES = *~ diff --git a/Frameworks/FLAC/flac-1.3.3/Makefile.deps b/Frameworks/FLAC/flac-1.3.3/Makefile.deps new file mode 100644 index 000000000..a7a5ed7e6 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/Makefile.deps @@ -0,0 +1,39 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +ifeq ($(findstring Windows,$(OS)),Windows) # "Windows" is provided by GNU Make's internal $(OS) + WIN_DEPS = share/win_utf8_io +else + WIN_DEPS = +endif + +flac: libFLAC share $(WIN_DEPS) +libFLAC++: libFLAC +metaflac: libFLAC share $(WIN_DEPS) +plugin_common: libFLAC +plugin_xmms: libFLAC plugin_common +share: libFLAC +test_grabbag: share +test_libs_common: libFLAC +test_libFLAC++: libFLAC libFLAC++ test_libs_common +test_libFLAC: libFLAC test_libs_common +test_seeking: libFLAC +test_streams: share +flacdiff: libFLAC libFLAC++ $(WIN_DEPS) +flactimer: +utils: flacdiff flactimer diff --git a/Frameworks/FLAC/flac-1.3.3/Makefile.in b/Frameworks/FLAC/flac-1.3.3/Makefile.in new file mode 100644 index 000000000..2a031a306 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/Makefile.in @@ -0,0 +1,911 @@ +# Makefile.in generated by automake 1.16.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2018 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +# +# automake provides the following useful targets: +# +# all: build all programs and libraries using the current +# configuration (set by configure) +# +# check: build and run all self-tests +# +# clean: remove everything except what's required to build everything +# +# distclean: remove everything except what goes in the distribution +# +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +@EXAMPLES_TRUE@am__append_1 = examples +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \ + $(top_srcdir)/m4/add_cxxflags.m4 \ + $(top_srcdir)/m4/ax_add_fortify_source.m4 \ + $(top_srcdir)/m4/ax_check_enable_debug.m4 \ + $(top_srcdir)/m4/bswap.m4 $(top_srcdir)/m4/c_attribute.m4 \ + $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \ + $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \ + $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ + $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \ + $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(am__DIST_COMMON) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir distdir-am dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +DIST_SUBDIRS = doc include m4 man src test build objs microbench \ + examples +am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in AUTHORS \ + README ar-lib compile config.guess config.rpath config.sub \ + depcomp install-sh ltmain.sh missing +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +GZIP_ENV = --best +DIST_ARCHIVES = $(distdir).tar.xz +DIST_TARGETS = dist-xz +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@ +DOXYGEN = @DOXYGEN@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FLAC__HAS_OGG = @FLAC__HAS_OGG@ +FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@ +FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@ +GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@ +GCC_MINOR_VERSION = @GCC_MINOR_VERSION@ +GCC_VERSION = @GCC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NASM = @NASM@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OBJ_FORMAT = @OBJ_FORMAT@ +OGG_CFLAGS = @OGG_CFLAGS@ +OGG_LIBS = @OGG_LIBS@ +OGG_PACKAGE = @OGG_PACKAGE@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +XMMS_CFLAGS = @XMMS_CFLAGS@ +XMMS_CONFIG = @XMMS_CONFIG@ +XMMS_DATA_DIR = @XMMS_DATA_DIR@ +XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@ +XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@ +XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@ +XMMS_LIBS = @XMMS_LIBS@ +XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@ +XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@ +XMMS_VERSION = @XMMS_VERSION@ +XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +ACLOCAL_AMFLAGS = -I m4 +SUBDIRS = doc include m4 man src test build objs microbench \ + $(am__append_1) +EXTRA_DIST = \ + COPYING.FDL \ + COPYING.GPL \ + COPYING.LGPL \ + COPYING.Xiph \ + FLAC.sln \ + FLAC-vs2005.sln \ + Makefile.lite \ + Makefile.deps \ + autogen.sh \ + config.rpath \ + depcomp \ + ltmain.sh \ + strip_non_asm_libtool_args.sh + +CLEANFILES = *~ +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: Makefile + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + $(am__cd) $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): + +config.h: stamp-h1 + @test -f $@ || rm -f stamp-h1 + @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool config.lt + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscope: cscope.files + test ! -s cscope.files \ + || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) +clean-cscope: + -rm -f cscope.files +cscope.files: clean-cscope cscopelist +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + -rm -f cscope.out cscope.in.out cscope.po.out cscope.files + +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + $(am__remove_distdir) + test -d "$(distdir)" || mkdir "$(distdir)" + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r "$(distdir)" +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz + $(am__post_remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 + $(am__post_remove_distdir) + +dist-lzip: distdir + tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz + $(am__post_remove_distdir) +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz + $(am__post_remove_distdir) + +dist-tarZ: distdir + @echo WARNING: "Support for distribution archives compressed with" \ + "legacy program 'compress' is deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__post_remove_distdir) + +dist-shar: distdir + @echo WARNING: "Support for shar distribution archives is" \ + "deprecated." >&2 + @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 + shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz + $(am__post_remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__post_remove_distdir) + +dist dist-all: + $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' + $(am__post_remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lz*) \ + lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir) + chmod u+w $(distdir) + mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst + chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build/sub \ + && ../../configure \ + $(AM_DISTCHECK_CONFIGURE_FLAGS) \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + --srcdir=../.. --prefix="$$dc_install_base" \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 + $(am__post_remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @test -n '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: trying to run $@ with an empty' \ + '$$(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + $(am__cd) '$(distuninstallcheck_dir)' || { \ + echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ + exit 1; \ + }; \ + test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile config.h +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr \ + distclean-libtool distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(am__recursive_targets) all install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ + am--refresh check check-am clean clean-cscope clean-generic \ + clean-libtool cscope cscopelist-am ctags ctags-am dist \ + dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \ + dist-xz dist-zip distcheck distclean distclean-generic \ + distclean-hdr distclean-libtool distclean-tags distcleancheck \ + distdir distuninstallcheck dvi dvi-am html html-am info \ + info-am install install-am install-data install-data-am \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am + +.PRECIOUS: Makefile + + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Frameworks/FLAC/flac-1.3.3/Makefile.lite b/Frameworks/FLAC/flac-1.3.3/Makefile.lite new file mode 100644 index 000000000..2b394af83 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/Makefile.lite @@ -0,0 +1,77 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +# +# GNU Makefile +# +# Useful targets +# +# all : build all libraries and programs in the default configuration (currently 'release') +# debug : build all libraries and programs in debug mode +# valgrind: build all libraries and programs in debug mode, dynamically linked and ready for valgrind +# release : build all libraries and programs in release mode +# test : run the unit and stream tests +# clean : remove all non-distro files +# + +topdir = . + +.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams flacdiff flactimer +all: src examples + +DEFAULT_CONFIG = release + +CONFIG = $(DEFAULT_CONFIG) + +debug : CONFIG = debug +valgrind: CONFIG = valgrind +release : CONFIG = release + +debug : all +valgrind: all +release : all + +doc: + (cd $@ && $(MAKE) -f Makefile.lite) + +src examples: + (cd $@ && $(MAKE) -f Makefile.lite $(CONFIG)) + +libFLAC libFLAC++ share flac metaflac plugin_common plugin_xmms test_libs_common test_seeking test_streams test_grabbag test_libFLAC test_libFLAC++: + (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG)) + +flacdiff flactimer: + (cd src/utils/$@ && $(MAKE) -f Makefile.lite $(CONFIG)) + +test: debug + (cd test && $(MAKE) -f Makefile.lite debug) + +testv: valgrind + (cd test && $(MAKE) -f Makefile.lite valgrind) + +testr: release + (cd test && $(MAKE) -f Makefile.lite release) + +clean: + -(cd doc && $(MAKE) -f Makefile.lite clean) + -(cd src && $(MAKE) -f Makefile.lite clean) + -(cd examples && $(MAKE) -f Makefile.lite clean) + -(cd test && $(MAKE) -f Makefile.lite clean) + +examples: libFLAC libFLAC++ share +include $(topdir)/Makefile.deps diff --git a/Frameworks/FLAC/flac-1.2.1/README b/Frameworks/FLAC/flac-1.3.3/README similarity index 61% rename from Frameworks/FLAC/flac-1.2.1/README rename to Frameworks/FLAC/flac-1.3.3/README index f4a461ba5..ed2de3b80 100644 --- a/Frameworks/FLAC/flac-1.2.1/README +++ b/Frameworks/FLAC/flac-1.3.3/README @@ -1,8 +1,9 @@ /* FLAC - Free Lossless Audio Codec - * Copyright (C) 2001,2002,2003,2004,2005,2006,2007 Josh Coalson + * Copyright (C) 2001-2009 Josh Coalson + * Copyright (C) 2011-2016 Xiph.Org Foundation * * This file is part the FLAC project. FLAC is comprised of several - * components distributed under difference licenses. The codec libraries + * components distributed under different licenses. The codec libraries * are distributed under Xiph.Org's BSD-like license (see the file * COPYING.Xiph in this distribution). All other programs, libraries, and * plugins are distributed under the LGPL or GPL (see COPYING.LGPL and @@ -17,8 +18,11 @@ */ -FLAC (http://flac.sourceforge.net/) is an Open Source lossless audio -codec developed by Josh Coalson. +FLAC is an Open Source lossless audio codec developed by Josh Coalson from 2001 +to 2009. + +From January 2012 FLAC is being maintained by Erik de Castro Lopo under the +auspices of the Xiph.org Foundation. FLAC is comprised of * `libFLAC', a library which implements reference encoders and @@ -27,7 +31,7 @@ FLAC is comprised of * `flac', a command-line program for encoding and decoding files * `metaflac', a command-line program for viewing and editing FLAC metadata - * player plugins for XMMS and Winamp + * player plugin for XMMS * user and API documentation The libraries (libFLAC, libFLAC++) are @@ -38,7 +42,7 @@ Documentation License (see COPYING.FDL). =============================================================================== -FLAC - 1.2.1 - Contents +FLAC - 1.3.3 - Contents =============================================================================== - Introduction @@ -48,6 +52,7 @@ FLAC - 1.2.1 - Contents - Building with Makefile.lite - Building with MSVC - Building on Mac OS X +- Building with CMake =============================================================================== @@ -63,11 +68,17 @@ for full documentation. A brief description of the directory tree: doc/ the HTML documentation + examples/ example programs demonstrating the use of libFLAC and libFLAC++ include/ public include files for libFLAC and libFLAC++ - man/ the man page for `flac' + man/ the man pages for `flac' and `metaflac' src/ the source code and private headers test/ the test scripts +If you have questions about building FLAC that this document does not answer, +please submit them at the following tracker so this document can be improved: + + https://sourceforge.net/p/flac/support-requests/ + =============================================================================== Prerequisites @@ -89,7 +100,7 @@ Note to embedded developers libFLAC has grown larger over time as more functionality has been included, but much of it may be unnecessary for a particular embedded implementation. Unused parts may be pruned by some simple editing of -configure.in and src/libFLAC/Makefile.am; the following dependency +configure.ac and src/libFLAC/Makefile.am; the following dependency graph shows which modules may be pruned without breaking things further down: @@ -148,7 +159,7 @@ extra (and more verbose) error checking. assembly routines. Many routines have assembly versions for speed and `configure' is pretty good about knowing what is supported, but you can use this option to build only from the -C sources. May be necessary for building on OS X (Intel) +C sources. May be necessary for building on OS X (Intel). --enable-sse : If you are building for an x86 CPU that supports SSE instructions, you can enable some of the faster routines @@ -170,7 +181,7 @@ $HOME/.xmms/Plugins, instead of the global XMMS plugin area Use these if you have these packages but configure can't find them. If you want to build completely from scratch (i.e. starting with just -configure.in and Makefile.am) you should be able to just run 'autogen.sh' +configure.ac and Makefile.am) you should be able to just run 'autogen.sh' but make sure and read the comments in that file first. @@ -200,55 +211,126 @@ not an x86, change -DFLAC__CPU_IA32 to -DFLAC__CPU_UNKNOWN. Building with MSVC =============================================================================== -There are .dsp projects and a master FLAC.dsw workspace to build all -the libraries and executables with MSVC6. There are also .vcproj -projects and a master FLAC.sln solution to build all the libraries and -executables with VC++ 2005. +There are .vcproj projects and a master FLAC.sln solution to build all +the libraries and executables with MSVC 2005 or newer. Prerequisite: you must have the Ogg libraries installed as described later. -Prerequisite: you must have nasm installed, and nasmw.exe must be in -your PATH, or the path to nasmw.exe must be added to the list of +Prerequisite: you must have nasm installed, and nasm.exe must be in +your PATH, or the path to nasm.exe must be added to the list of directories for executable files in the MSVC global options. -MSVC6: -To build everything, run Developer Studio, do File|Open Workspace, -and open FLAC.dsw. Select "Build | Set active configuration..." -from the menu, then in the dialog, select "All - Win32 Release" (or -Debug if you prefer). Click "Ok" then hit F7 to build. - -VC++ 2005: To build everything, run Visual Studio, do File|Open and open FLAC.sln. From the dropdown in the toolbar, select "Release" instead of "Debug", -then hit F7 to build. +then do Build|Build Solution. -Either way, this will build all libraries both statically (e.g. -obj\release\lib\libFLAC_static.lib) and as DLLs (e.g. -obj\release\lib\libFLAC.dll), and it will build all binaries, statically -linked (e.g. obj\release\bin\flac.exe). +This will build all libraries both statically (e.g. +objs\release\lib\libFLAC_static.lib) and as DLLs (e.g. +objs\release\lib\libFLAC.dll), and it will build all binaries, statically +linked (e.g. objs\release\bin\flac.exe). -Everything will end up in the "obj" directory. DLLs and .exe files +Everything will end up in the "objs" directory. DLLs and .exe files are all that are needed and can be copied to an installation area and -added to the PATH. The plugins have to be copied to their appropriate -place in the player area. For Winamp2 this is \Plugins. +added to the PATH. -By default the code is configured with Ogg support. Before building FLAC +By default the code is configured with Ogg support. Before building FLAC you will need to get the Ogg source distribution -(see http://xiph.org/ogg/vorbis/download/), build ogg_static.lib (load and -build win32\ogg_static.dsp), copy ogg_static.lib into FLAC's -'obj\release\lib' directory, and copy the entire include\ogg tree into -FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's +(see http://xiph.org/downloads/), build libogg_static.lib (load +win32\libogg_static.sln, change solution configuration to "Release" and +code generation to "Multi-threaded (/MT)", then build), copy libogg_static.lib +into FLAC's 'objs\release\lib' directory, and copy the entire include\ogg tree +into FLAC's 'include' directory (so that there is an 'ogg' directory in FLAC's 'include' directory with the files ogg.h, os_types.h and config_types.h). -If you want to build without Ogg support, instead edit all .dsp or -.vcproj files and remove any occurrences of "/D FLAC__HAS_OGG". +If you want to build without Ogg support, instead edit all .vcproj files +and remove any "FLAC__HAS_OGG" definitions. =============================================================================== Building on Mac OS X =============================================================================== -If you have Fink or a recent version of OS X with the proper autotooles, -the GNU flow above should work. The Project Builder project has been -deprecated but we are working on replacing it with an Xcode equivalent. +If you have Fink or a recent version of OS X with the proper autotools, +the GNU flow above should work. + + +=============================================================================== +Building with CMake +=============================================================================== + +CMake is a cross-platform build system. FLAC can be built on Windows, Linux, Mac +OS X using CMake. + +You can use either CMake's CLI or GUI. We recommend you to have a separate build +folder outside the repository in order to not spoil it with generated files. + +CLI +--- + Go to your build folder and run something like this: + + /path/to/flac/build$ cmake /path/to/flac/source + + or e.g. in Windows shell + + C:\path\to\flac\build> cmake \path\to\flac\source + (provided that cmake is in your %PATH% variable) + + That will generate build scripts for the default build system (e.g. Makefiles + for UNIX). After that you start build with a command like this: + + /path/to/flac/build$ make + + And afterwards you can run tests or install the built libraries and headers + + /path/to/flac/build$ make test + /path/to/flac/build$ make install + + If you want use a build system other than default add -G flag to cmake, e.g.: + + /path/to/flac/build$ cmake /path/to/flac/source -GNinja + /path/to/flac/build$ ninja + + or: + + /path/to/flac/build$ cmake /path/to/flac/source -GXcode + + Use cmake --help to see the list of available generators. + + If you have OGG on your system you can tell CMake to use it: + + /path/to/flac/build$ cmake /path/to/flac/source -DWITH_OGG=ON + + If CMake fails to find it you can help CMake by specifying the exact path: + + /path/to/flac/build$ cmake /path/to/flac/source -DWITH_OGG=ON -DOGG_ROOT=/path/to/ogg + + CMake will search for OGG by default so if you don't have it you can tell + cmake to not do so: + + /path/to/flac/build$ cmake /path/to/flac/source -DWITH_OGG=OFF + + Other FLAC's options (e.g. building C++ lib or docs) can also be put to cmake + through -D flag. + +GUI +--- + It is likely that you would prefer to use it on Windows building for Visual + Studio. It's in essence the same process as building using CLI. + + Open cmake-gui. In the window select a source directory (the repository's + root), a build directory (some other directory outside the repository). Then + press button "Configure". CMake will ask you which build system you prefer. + Choose that version of Visual Studio which you have on your system, choose + whether you want to build for x86 or amd64. Press OK. After CMake finishes + press "Generate" button, and after that "Open Project". In response CMake + will launch Visual Studio and open the generated solution. You can use it as + usual but remember that it was generated by CMake. That means that your + changes (e.g. some addidional compile flags) will be lost when you run CMake + next time. + + Again, if you have OGG on your system set WITH_OGG flag in the list of + variables in cmake-gui window before you press "Configure". + + If CMake fails to find MSVC compiler then running cmake-gui from MS Developer + comand prompt should help. diff --git a/Frameworks/FLAC/flac-1.3.3/aclocal.m4 b/Frameworks/FLAC/flac-1.3.3/aclocal.m4 new file mode 100644 index 000000000..95563af0a --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/aclocal.m4 @@ -0,0 +1,1237 @@ +# generated automatically by aclocal 1.16.1 -*- Autoconf -*- + +# Copyright (C) 1996-2018 Free Software Foundation, Inc. + +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],, +[m4_warning([this file was generated for autoconf 2.69. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically 'autoreconf'.])]) + +# Copyright (C) 2002-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.16' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.16.1], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.16.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) + +# Copyright (C) 2011-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_AR([ACT-IF-FAIL]) +# ------------------------- +# Try to determine the archiver interface, and trigger the ar-lib wrapper +# if it is needed. If the detection of archiver interface fails, run +# ACT-IF-FAIL (default is to abort configure with a proper error message). +AC_DEFUN([AM_PROG_AR], +[AC_BEFORE([$0], [LT_INIT])dnl +AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl +AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([ar-lib])dnl +AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) +: ${AR=ar} + +AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], + [AC_LANG_PUSH([C]) + am_cv_ar_interface=ar + AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], + [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([am_ar_try]) + if test "$ac_status" -eq 0; then + am_cv_ar_interface=ar + else + am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([am_ar_try]) + if test "$ac_status" -eq 0; then + am_cv_ar_interface=lib + else + am_cv_ar_interface=unknown + fi + fi + rm -f conftest.lib libconftest.a + ]) + AC_LANG_POP([C])]) + +case $am_cv_ar_interface in +ar) + ;; +lib) + # Microsoft lib, so override with the ar-lib wrapper script. + # FIXME: It is wrong to rewrite AR. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__AR in this case, + # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something + # similar. + AR="$am_aux_dir/ar-lib $AR" + ;; +unknown) + m4_default([$1], + [AC_MSG_ERROR([could not determine $AR interface])]) + ;; +esac +AC_SUBST([AR])dnl +]) + +# Figure out how to run the assembler. -*- Autoconf -*- + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_AS +# ---------- +AC_DEFUN([AM_PROG_AS], +[# By default we simply use the C compiler to build assembly code. +AC_REQUIRE([AC_PROG_CC]) +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS +AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)]) +AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)]) +_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl +]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to +# '$srcdir', '$srcdir/..', or '$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is '.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ([2.52])dnl + m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + + +# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], + [$1], [CXX], [depcc="$CXX" am_compiler_list=], + [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], + [$1], [UPC], [depcc="$UPC" am_compiler_list=], + [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES. +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE([dependency-tracking], [dnl +AS_HELP_STRING( + [--enable-dependency-tracking], + [do not reject slow dependency extractors]) +AS_HELP_STRING( + [--disable-dependency-tracking], + [speeds up one-time build])]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +AC_SUBST([am__nodep])dnl +_AM_SUBST_NOTMAKE([am__nodep])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[{ + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + AS_CASE([$CONFIG_FILES], + [*\'*], [eval set x "$CONFIG_FILES"], + [*], [set x $CONFIG_FILES]) + shift + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf + do + # Strip MF so we end up with the name of the file. + am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`AS_DIRNAME(["$am_mf"])` + am_filepart=`AS_BASENAME(["$am_mf"])` + AM_RUN_LOG([cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles]) || am_rc=$? + done + if test $am_rc -ne 0; then + AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking).]) + fi + AS_UNSET([am_dirpart]) + AS_UNSET([am_filepart]) + AS_UNSET([am_mf]) + AS_UNSET([am_rc]) + rm -f conftest-deps.mk +} +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking is enabled. +# This creates each '.Po' and '.Plo' makefile fragment that we'll need in +# order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. +m4_define([AC_PROG_CC], +m4_defn([AC_PROG_CC]) +[_AM_PROG_CC_C_O +]) + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.65])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[AC_DIAGNOSE([obsolete], + [$0: two- and three-arguments forms are deprecated.]) +m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if( + m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), + [ok:ok],, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) + AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +AM_MISSING_PROG([AUTOCONF], [autoconf]) +AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +AM_MISSING_PROG([AUTOHEADER], [autoheader]) +AM_MISSING_PROG([MAKEINFO], [makeinfo]) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +AC_SUBST([mkdir_p], ['$(MKDIR_P)']) +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES([CC])], + [m4_define([AC_PROG_CC], + m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES([CXX])], + [m4_define([AC_PROG_CXX], + m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES([OBJC])], + [m4_define([AC_PROG_OBJC], + m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], + [_AM_DEPENDENCIES([OBJCXX])], + [m4_define([AC_PROG_OBJCXX], + m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl +]) +AC_REQUIRE([AM_SILENT_RULES])dnl +dnl The testsuite driver may need to know about EXEEXT, so add the +dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This +dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: . + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) + fi +fi +dnl The trailing newline in this macro's definition is deliberate, for +dnl backward compatibility and to allow trailing 'dnl'-style comments +dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. +]) + +dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST([install_sh])]) + +# Copyright (C) 2003-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MAKE_INCLUDE() +# ----------------- +# Check whether make has an 'include' directive that can support all +# the idioms we need for our automatic dependency tracking code. +AC_DEFUN([AM_MAKE_INCLUDE], +[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) +cat > confinc.mk << 'END' +am__doit: + @echo this is the am__doit target >confinc.out +.PHONY: am__doit +END +am__include="#" +am__quote= +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) + AS_CASE([$?:`cat confinc.out 2>/dev/null`], + ['0:this is the am__doit target'], + [AS_CASE([$s], + [BSD], [am__include='.include' am__quote='"'], + [am__include='include' am__quote=''])]) + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +AC_MSG_RESULT([${_am_result}]) +AC_SUBST([am__include])]) +AC_SUBST([am__quote])]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it is modern enough. +# If it is, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + AC_MSG_WARN(['missing' script is too old or missing]) +fi +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# -------------------- +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), [1])]) + +# _AM_SET_OPTIONS(OPTIONS) +# ------------------------ +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_CC_C_O +# --------------- +# Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC +# to automatically call this. +AC_DEFUN([_AM_PROG_CC_C_O], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +AC_LANG_PUSH([C])dnl +AC_CACHE_CHECK( + [whether $CC understands -c and -o together], + [am_cv_prog_cc_c_o], + [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i]) +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +AC_LANG_POP([C])]) + +# For backward compatibility. +AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_RUN_LOG(COMMAND) +# ------------------- +# Run COMMAND, save the exit status in ac_status, and log it. +# (This has been adapted from Autoconf's _AC_RUN_LOG macro.) +AC_DEFUN([AM_RUN_LOG], +[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi + if test "$[2]" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT([yes]) +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi +AC_CONFIG_COMMANDS_PRE( + [AC_MSG_CHECKING([that generated files are newer than configure]) + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + AC_MSG_RESULT([done])]) +rm -f conftest.file +]) + +# Copyright (C) 2009-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_SILENT_RULES([DEFAULT]) +# -------------------------- +# Enable less verbose build rules; with the default set to DEFAULT +# ("yes" being less verbose, "no" or empty being verbose). +AC_DEFUN([AM_SILENT_RULES], +[AC_ARG_ENABLE([silent-rules], [dnl +AS_HELP_STRING( + [--enable-silent-rules], + [less verbose build output (undo: "make V=1")]) +AS_HELP_STRING( + [--disable-silent-rules], + [verbose build output (undo: "make V=0")])dnl +]) +case $enable_silent_rules in @%:@ ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +dnl +dnl A few 'make' implementations (e.g., NonStop OS and NextStep) +dnl do not support nested variable expansions. +dnl See automake bug#9928 and bug#10237. +am_make=${MAKE-make} +AC_CACHE_CHECK([whether $am_make supports nested variables], + [am_cv_make_support_nested_variables], + [if AS_ECHO([['TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi]) +if test $am_cv_make_support_nested_variables = yes; then + dnl Using '$V' instead of '$(V)' breaks IRIX make. + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AC_SUBST([AM_V])dnl +AM_SUBST_NOTMAKE([AM_V])dnl +AC_SUBST([AM_DEFAULT_V])dnl +AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) + +# Copyright (C) 2001-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor 'install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in "make install-strip", and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# AM_SUBST_NOTMAKE(VARIABLE) +# -------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004-2018 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of 'v7', 'ustar', or 'pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +# +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AC_SUBST([AMTAR], ['$${TAR-tar}']) + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' + +m4_if([$1], [v7], + [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], + + [m4_case([$1], + [ustar], + [# The POSIX 1988 'ustar' format is defined with fixed-size fields. + # There is notably a 21 bits limit for the UID and the GID. In fact, + # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 + # and bug#13588). + am_max_uid=2097151 # 2^21 - 1 + am_max_gid=$am_max_uid + # The $UID and $GID variables are not portable, so we need to resort + # to the POSIX-mandated id(1) utility. Errors in the 'id' calls + # below are definitely unexpected, so allow the users to see them + # (that is, avoid stderr redirection). + am_uid=`id -u || echo unknown` + am_gid=`id -g || echo unknown` + AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) + if test $am_uid -le $am_max_uid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi + AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) + if test $am_gid -le $am_max_gid; then + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + _am_tools=none + fi], + + [pax], + [], + + [m4_fatal([Unknown tar format])]) + + AC_MSG_CHECKING([how to create a $1 tar archive]) + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_$1-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) + AC_MSG_RESULT([$am_cv_prog_tar_$1])]) + +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +m4_include([m4/add_cflags.m4]) +m4_include([m4/add_cxxflags.m4]) +m4_include([m4/ax_add_fortify_source.m4]) +m4_include([m4/ax_check_enable_debug.m4]) +m4_include([m4/bswap.m4]) +m4_include([m4/c_attribute.m4]) +m4_include([m4/clang.m4]) +m4_include([m4/codeset.m4]) +m4_include([m4/gcc_version.m4]) +m4_include([m4/iconv.m4]) +m4_include([m4/lib-ld.m4]) +m4_include([m4/lib-link.m4]) +m4_include([m4/lib-prefix.m4]) +m4_include([m4/libtool.m4]) +m4_include([m4/ltoptions.m4]) +m4_include([m4/ltsugar.m4]) +m4_include([m4/ltversion.m4]) +m4_include([m4/lt~obsolete.m4]) +m4_include([m4/ogg.m4]) +m4_include([m4/really_gcc.m4]) +m4_include([m4/stack_protect.m4]) +m4_include([m4/xmms.m4]) diff --git a/Frameworks/FLAC/flac-1.3.3/ar-lib b/Frameworks/FLAC/flac-1.3.3/ar-lib new file mode 100755 index 000000000..0baa4f607 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/ar-lib @@ -0,0 +1,270 @@ +#! /bin/sh +# Wrapper for Microsoft lib.exe + +me=ar-lib +scriptversion=2012-03-01.08; # UTC + +# Copyright (C) 2010-2018 Free Software Foundation, Inc. +# Written by Peter Rosin . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + + +# func_error message +func_error () +{ + echo "$me: $1" 1>&2 + exit 1 +} + +file_conv= + +# func_file_conv build_file +# Convert a $build file to $host form and store it in $file +# Currently only supports Windows hosts. +func_file_conv () +{ + file=$1 + case $file in + / | /[!/]*) # absolute file, and not a UNC file + if test -z "$file_conv"; then + # lazily determine how to convert abs files + case `uname -s` in + MINGW*) + file_conv=mingw + ;; + CYGWIN*) + file_conv=cygwin + ;; + *) + file_conv=wine + ;; + esac + fi + case $file_conv in + mingw) + file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` + ;; + cygwin) + file=`cygpath -m "$file" || echo "$file"` + ;; + wine) + file=`winepath -w "$file" || echo "$file"` + ;; + esac + ;; + esac +} + +# func_at_file at_file operation archive +# Iterate over all members in AT_FILE performing OPERATION on ARCHIVE +# for each of them. +# When interpreting the content of the @FILE, do NOT use func_file_conv, +# since the user would need to supply preconverted file names to +# binutils ar, at least for MinGW. +func_at_file () +{ + operation=$2 + archive=$3 + at_file_contents=`cat "$1"` + eval set x "$at_file_contents" + shift + + for member + do + $AR -NOLOGO $operation:"$member" "$archive" || exit $? + done +} + +case $1 in + '') + func_error "no command. Try '$0 --help' for more information." + ;; + -h | --h*) + cat </dev/null 2>&1 ; then + echo "Missing program '$1'." + test_program_errors=1 + fi +} + +for prog in autoconf automake libtool pkg-config ; do + test_program $prog + done + +if test $(uname -s) != "Darwin" ; then + test_program gettext + fi + +test $test_program_errors -ne 1 || exit 1 + +#------------------------------------------------------------------------------- + +set -e + +if test $(uname -s) = "OpenBSD" ; then + # OpenBSD needs these environment variables set. + if test -z "$AUTOCONF_VERSION" ; then + AUTOCONF_VERSION=2.69 + export AUTOCONF_VERSION + echo "Defaulting to use AUTOCONF_VERSION version ${AUTOCONF_VERSION}." + else + echo "Using AUTOCONF_VERSION version ${AUTOCONF_VERSION}." + fi + if test -z "$AUTOMAKE_VERSION" ; then + AUTOMAKE_VERSION=1.15 + export AUTOMAKE_VERSION + echo "Defaulting to use AUTOMAKE_VERSION version ${AUTOMAKE_VERSION}." + else + echo "Using AUTOMAKE_VERSION version ${AUTOMAKE_VERSION}." + fi + fi + +srcdir=`dirname $0` +test -n "$srcdir" && cd "$srcdir" + +echo "Updating build configuration files for FLAC, please wait...." + +touch config.rpath +autoreconf --install $use_symlinks --force +#./configure "$@" && echo diff --git a/Frameworks/FLAC/flac-1.3.3/compile b/Frameworks/FLAC/flac-1.3.3/compile new file mode 100755 index 000000000..99e50524b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/compile @@ -0,0 +1,348 @@ +#! /bin/sh +# Wrapper for compilers which do not understand '-c -o'. + +scriptversion=2018-03-07.03; # UTC + +# Copyright (C) 1999-2018 Free Software Foundation, Inc. +# Written by Tom Tromey . +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +nl=' +' + +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent tools from complaining about whitespace usage. +IFS=" "" $nl" + +file_conv= + +# func_file_conv build_file lazy +# Convert a $build file to $host form and store it in $file +# Currently only supports Windows hosts. If the determined conversion +# type is listed in (the comma separated) LAZY, no conversion will +# take place. +func_file_conv () +{ + file=$1 + case $file in + / | /[!/]*) # absolute file, and not a UNC file + if test -z "$file_conv"; then + # lazily determine how to convert abs files + case `uname -s` in + MINGW*) + file_conv=mingw + ;; + CYGWIN*) + file_conv=cygwin + ;; + *) + file_conv=wine + ;; + esac + fi + case $file_conv/,$2, in + *,$file_conv,*) + ;; + mingw/*) + file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` + ;; + cygwin/*) + file=`cygpath -m "$file" || echo "$file"` + ;; + wine/*) + file=`winepath -w "$file" || echo "$file"` + ;; + esac + ;; + esac +} + +# func_cl_dashL linkdir +# Make cl look for libraries in LINKDIR +func_cl_dashL () +{ + func_file_conv "$1" + if test -z "$lib_path"; then + lib_path=$file + else + lib_path="$lib_path;$file" + fi + linker_opts="$linker_opts -LIBPATH:$file" +} + +# func_cl_dashl library +# Do a library search-path lookup for cl +func_cl_dashl () +{ + lib=$1 + found=no + save_IFS=$IFS + IFS=';' + for dir in $lib_path $LIB + do + IFS=$save_IFS + if $shared && test -f "$dir/$lib.dll.lib"; then + found=yes + lib=$dir/$lib.dll.lib + break + fi + if test -f "$dir/$lib.lib"; then + found=yes + lib=$dir/$lib.lib + break + fi + if test -f "$dir/lib$lib.a"; then + found=yes + lib=$dir/lib$lib.a + break + fi + done + IFS=$save_IFS + + if test "$found" != yes; then + lib=$lib.lib + fi +} + +# func_cl_wrapper cl arg... +# Adjust compile command to suit cl +func_cl_wrapper () +{ + # Assume a capable shell + lib_path= + shared=: + linker_opts= + for arg + do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + eat=1 + case $2 in + *.o | *.[oO][bB][jJ]) + func_file_conv "$2" + set x "$@" -Fo"$file" + shift + ;; + *) + func_file_conv "$2" + set x "$@" -Fe"$file" + shift + ;; + esac + ;; + -I) + eat=1 + func_file_conv "$2" mingw + set x "$@" -I"$file" + shift + ;; + -I*) + func_file_conv "${1#-I}" mingw + set x "$@" -I"$file" + shift + ;; + -l) + eat=1 + func_cl_dashl "$2" + set x "$@" "$lib" + shift + ;; + -l*) + func_cl_dashl "${1#-l}" + set x "$@" "$lib" + shift + ;; + -L) + eat=1 + func_cl_dashL "$2" + ;; + -L*) + func_cl_dashL "${1#-L}" + ;; + -static) + shared=false + ;; + -Wl,*) + arg=${1#-Wl,} + save_ifs="$IFS"; IFS=',' + for flag in $arg; do + IFS="$save_ifs" + linker_opts="$linker_opts $flag" + done + IFS="$save_ifs" + ;; + -Xlinker) + eat=1 + linker_opts="$linker_opts $2" + ;; + -*) + set x "$@" "$1" + shift + ;; + *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) + func_file_conv "$1" + set x "$@" -Tp"$file" + shift + ;; + *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) + func_file_conv "$1" mingw + set x "$@" "$file" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift + done + if test -n "$linker_opts"; then + linker_opts="-link$linker_opts" + fi + exec "$@" $linker_opts + exit 1 +} + +eat= + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: compile [--help] [--version] PROGRAM [ARGS] + +Wrapper for compilers which do not understand '-c -o'. +Remove '-o dest.o' from ARGS, run PROGRAM with the remaining +arguments, and rename the output as expected. + +If you are trying to build a whole package this is not the +right script to run: please start by reading the file 'INSTALL'. + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "compile $scriptversion" + exit $? + ;; + cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ + icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) + func_cl_wrapper "$@" # Doesn't return... + ;; +esac + +ofile= +cfile= + +for arg +do + if test -n "$eat"; then + eat= + else + case $1 in + -o) + # configure might choose to run compile as 'compile cc -o foo foo.c'. + # So we strip '-o arg' only if arg is an object. + eat=1 + case $2 in + *.o | *.obj) + ofile=$2 + ;; + *) + set x "$@" -o "$2" + shift + ;; + esac + ;; + *.c) + cfile=$1 + set x "$@" "$1" + shift + ;; + *) + set x "$@" "$1" + shift + ;; + esac + fi + shift +done + +if test -z "$ofile" || test -z "$cfile"; then + # If no '-o' option was seen then we might have been invoked from a + # pattern rule where we don't need one. That is ok -- this is a + # normal compilation that the losing compiler can handle. If no + # '.c' file was seen then we are probably linking. That is also + # ok. + exec "$@" +fi + +# Name of file we expect compiler to create. +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` + +# Create the lock directory. +# Note: use '[/\\:.-]' here to ensure that we don't use the same name +# that we are using for the .o file. Also, base the name on the expected +# object file name, since that is what matters with a parallel build. +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d +while true; do + if mkdir "$lockdir" >/dev/null 2>&1; then + break + fi + sleep 1 +done +# FIXME: race condition here if user kills between mkdir and trap. +trap "rmdir '$lockdir'; exit 1" 1 2 15 + +# Run the compile. +"$@" +ret=$? + +if test -f "$cofile"; then + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" +elif test -f "${cofile}bj"; then + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" +fi + +rmdir "$lockdir" +exit $ret + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC0" +# time-stamp-end: "; # UTC" +# End: diff --git a/Frameworks/FLAC/flac-1.3.3/config.guess b/Frameworks/FLAC/flac-1.3.3/config.guess new file mode 100755 index 000000000..f50dcdb6d --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/config.guess @@ -0,0 +1,1480 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright 1992-2018 Free Software Foundation, Inc. + +timestamp='2018-02-24' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). +# +# Originally written by Per Bothner; maintained since 2000 by Ben Elliston. +# +# You can get the latest version of this script from: +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess +# +# Please send patches to . + + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Options: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright 1992-2018 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > "$dummy.c" ; + for c in cc gcc c89 c99 ; do + if ($c -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +case "$UNAME_SYSTEM" in +Linux|GNU|GNU/*) + # If the system lacks a compiler, then just pick glibc. + # We could probably try harder. + LIBC=gnu + + eval "$set_cc_for_build" + cat <<-EOF > "$dummy.c" + #include + #if defined(__UCLIBC__) + LIBC=uclibc + #elif defined(__dietlibc__) + LIBC=dietlibc + #else + LIBC=gnu + #endif + EOF + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + + # If ldd exists, use it to detect musl libc. + if command -v ldd >/dev/null && \ + ldd --version 2>&1 | grep -q ^musl + then + LIBC=musl + fi + ;; +esac + +# Note: order is significant - the case branches are not exclusive. + +case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(uname -p 2>/dev/null || \ + "/sbin/$sysctl" 2>/dev/null || \ + "/usr/sbin/$sysctl" 2>/dev/null || \ + echo unknown)` + case "$UNAME_MACHINE_ARCH" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + earmv*) + arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` + endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` + machine="${arch}${endian}"-unknown + ;; + *) machine="$UNAME_MACHINE_ARCH"-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently (or will in the future) and ABI. + case "$UNAME_MACHINE_ARCH" in + earm*) + os=netbsdelf + ;; + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval "$set_cc_for_build" + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # Determine ABI tags. + case "$UNAME_MACHINE_ARCH" in + earm*) + expr='s/^earmv[0-9]/-eabi/;s/eb$//' + abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "$UNAME_VERSION" in + Debian*) + release='-gnu' + ;; + *) + release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "$machine-${os}${release}${abi}" + exit ;; + *:Bitrig:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" + exit ;; + *:LibertyBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` + echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" + exit ;; + *:MidnightBSD:*:*) + echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" + exit ;; + *:ekkoBSD:*:*) + echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" + exit ;; + *:SolidBSD:*:*) + echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd"$UNAME_RELEASE" + exit ;; + *:MirBSD:*:*) + echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" + exit ;; + *:Sortix:*:*) + echo "$UNAME_MACHINE"-unknown-sortix + exit ;; + *:Redox:*:*) + echo "$UNAME_MACHINE"-unknown-redox + exit ;; + mips:OSF1:*.*) + echo mips-dec-osf1 + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE=alpha ;; + "EV4.5 (21064)") + UNAME_MACHINE=alpha ;; + "LCA4 (21066/21068)") + UNAME_MACHINE=alpha ;; + "EV5 (21164)") + UNAME_MACHINE=alphaev5 ;; + "EV5.6 (21164A)") + UNAME_MACHINE=alphaev56 ;; + "EV5.6 (21164PC)") + UNAME_MACHINE=alphapca56 ;; + "EV5.7 (21164PC)") + UNAME_MACHINE=alphapca57 ;; + "EV6 (21264)") + UNAME_MACHINE=alphaev6 ;; + "EV6.7 (21264A)") + UNAME_MACHINE=alphaev67 ;; + "EV6.8CB (21264C)") + UNAME_MACHINE=alphaev68 ;; + "EV6.8AL (21264B)") + UNAME_MACHINE=alphaev68 ;; + "EV6.8CX (21264D)") + UNAME_MACHINE=alphaev68 ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE=alphaev69 ;; + "EV7 (21364)") + UNAME_MACHINE=alphaev7 ;; + "EV7.9 (21364A)") + UNAME_MACHINE=alphaev79 ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo "$UNAME_MACHINE"-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo "$UNAME_MACHINE"-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix"$UNAME_RELEASE" + exit ;; + arm*:riscos:*:*|arm*:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux"$UNAME_RELEASE" + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval "$set_cc_for_build" + SUN_ARCH=i386 + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH=x86_64 + fi + fi + echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos"$UNAME_RELEASE" + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos"$UNAME_RELEASE" + ;; + sun4) + echo sparc-sun-sunos"$UNAME_RELEASE" + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos"$UNAME_RELEASE" + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint"$UNAME_RELEASE" + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint"$UNAME_RELEASE" + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint"$UNAME_RELEASE" + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint"$UNAME_RELEASE" + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint"$UNAME_RELEASE" + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint"$UNAME_RELEASE" + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten"$UNAME_RELEASE" + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten"$UNAME_RELEASE" + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix"$UNAME_RELEASE" + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix"$UNAME_RELEASE" + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix"$UNAME_RELEASE" + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && + dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`"$dummy" "$dummyarg"` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos"$UNAME_RELEASE" + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ "$UNAME_PROCESSOR" = mc88100 ] || [ "$UNAME_PROCESSOR" = mc88110 ] + then + if [ "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx ] || \ + [ "$TARGET_BINARY_INTERFACE"x = x ] + then + echo m88k-dg-dgux"$UNAME_RELEASE" + else + echo m88k-dg-dguxbcs"$UNAME_RELEASE" + fi + else + echo i586-dg-dgux"$UNAME_RELEASE" + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + fi + echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/lslpp ] ; then + IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | + awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` + else + IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + fi + echo "$IBM_ARCH"-ibm-aix"$IBM_REV" + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + case "$UNAME_MACHINE" in + 9000/31?) HP_ARCH=m68000 ;; + 9000/[34]??) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "$sc_cpu_version" in + 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 + 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "$sc_kernel_bits" in + 32) HP_ARCH=hppa2.0n ;; + 64) HP_ARCH=hppa2.0w ;; + '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "$HP_ARCH" = "" ]; then + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ "$HP_ARCH" = hppa2.0w ] + then + eval "$set_cc_for_build" + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH=hppa2.0w + else + HP_ARCH=hppa64 + fi + fi + echo "$HP_ARCH"-hp-hpux"$HPUX_REV" + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux"$HPUX_REV" + exit ;; + 3050*:HI-UX:*:*) + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo "$UNAME_MACHINE"-unknown-osf1mk + else + echo "$UNAME_MACHINE"-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` + FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi"$UNAME_RELEASE" + exit ;; + *:BSD/OS:*:*) + echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case "$UNAME_PROCESSOR" in + amd64) + UNAME_PROCESSOR=x86_64 ;; + i386) + UNAME_PROCESSOR=i586 ;; + esac + echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" + exit ;; + i*:CYGWIN*:*) + echo "$UNAME_MACHINE"-pc-cygwin + exit ;; + *:MINGW64*:*) + echo "$UNAME_MACHINE"-pc-mingw64 + exit ;; + *:MINGW*:*) + echo "$UNAME_MACHINE"-pc-mingw32 + exit ;; + *:MSYS*:*) + echo "$UNAME_MACHINE"-pc-msys + exit ;; + i*:PW*:*) + echo "$UNAME_MACHINE"-pc-pw32 + exit ;; + *:Interix*:*) + case "$UNAME_MACHINE" in + x86) + echo i586-pc-interix"$UNAME_RELEASE" + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix"$UNAME_RELEASE" + exit ;; + IA64) + echo ia64-unknown-interix"$UNAME_RELEASE" + exit ;; + esac ;; + i*:UWIN*:*) + echo "$UNAME_MACHINE"-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" + exit ;; + *:GNU:*:*) + # the GNU system + echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" + exit ;; + i*86:Minix:*:*) + echo "$UNAME_MACHINE"-pc-minix + exit ;; + aarch64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC=gnulibc1 ; fi + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + arc:Linux:*:* | arceb:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + arm*:Linux:*:*) + eval "$set_cc_for_build" + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi + else + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + cris:Linux:*:*) + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + exit ;; + crisv32:Linux:*:*) + echo "$UNAME_MACHINE"-axis-linux-"$LIBC" + exit ;; + e2k:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + frv:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + hexagon:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + i*86:Linux:*:*) + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + exit ;; + ia64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + k1om:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + m32r*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + m68*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval "$set_cc_for_build" + sed 's/^ //' << EOF > "$dummy.c" + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" + test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } + ;; + mips64el:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + openrisc*:Linux:*:*) + echo or1k-unknown-linux-"$LIBC" + exit ;; + or32:Linux:*:* | or1k*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-"$LIBC" + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-"$LIBC" + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; + PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; + *) echo hppa-unknown-linux-"$LIBC" ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-"$LIBC" + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-"$LIBC" + exit ;; + ppc64le:Linux:*:*) + echo powerpc64le-unknown-linux-"$LIBC" + exit ;; + ppcle:Linux:*:*) + echo powerpcle-unknown-linux-"$LIBC" + exit ;; + riscv32:Linux:*:* | riscv64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" + exit ;; + sh64*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + sh*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + tile*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + vax:Linux:*:*) + echo "$UNAME_MACHINE"-dec-linux-"$LIBC" + exit ;; + x86_64:Linux:*:*) + if objdump -f /bin/sh | grep -q elf32-x86-64; then + echo "$UNAME_MACHINE"-pc-linux-"$LIBC"x32 + else + echo "$UNAME_MACHINE"-pc-linux-"$LIBC" + fi + exit ;; + xtensa*:Linux:*:*) + echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo "$UNAME_MACHINE"-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo "$UNAME_MACHINE"-unknown-stop + exit ;; + i*86:atheos:*:*) + echo "$UNAME_MACHINE"-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo "$UNAME_MACHINE"-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos"$UNAME_RELEASE" + exit ;; + i*86:*DOS:*:*) + echo "$UNAME_MACHINE"-pc-msdosdjgpp + exit ;; + i*86:*:4.*:*) + UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" + else + echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}{$UNAME_VERSION}" + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" + else + echo "$UNAME_MACHINE"-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configure will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos"$UNAME_RELEASE" + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos"$UNAME_RELEASE" + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos"$UNAME_RELEASE" + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos"$UNAME_RELEASE" + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv"$UNAME_RELEASE" + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo "$UNAME_MACHINE"-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo "$UNAME_MACHINE"-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux"$UNAME_RELEASE" + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv"$UNAME_RELEASE" + else + echo mips-unknown-sysv"$UNAME_RELEASE" + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + x86_64:Haiku:*:*) + echo x86_64-unknown-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux"$UNAME_RELEASE" + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux"$UNAME_RELEASE" + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux"$UNAME_RELEASE" + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux"$UNAME_RELEASE" + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux"$UNAME_RELEASE" + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux"$UNAME_RELEASE" + exit ;; + SX-ACE:SUPER-UX:*:*) + echo sxace-nec-superux"$UNAME_RELEASE" + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody"$UNAME_RELEASE" + exit ;; + *:Rhapsody:*:*) + echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + eval "$set_cc_for_build" + if test "$UNAME_PROCESSOR" = unknown ; then + UNAME_PROCESSOR=powerpc + fi + if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then + if [ "$CC_FOR_BUILD" != no_compiler_found ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + case $UNAME_PROCESSOR in + i386) UNAME_PROCESSOR=x86_64 ;; + powerpc) UNAME_PROCESSOR=powerpc64 ;; + esac + fi + # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc + if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ + (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_PPC >/dev/null + then + UNAME_PROCESSOR=powerpc + fi + fi + elif test "$UNAME_PROCESSOR" = i386 ; then + # Avoid executing cc on OS X 10.9, as it ships with a stub + # that puts up a graphical alert prompting to install + # developer tools. Any system running Mac OS X 10.7 or + # later (Darwin 11 and later) is required to have a 64-bit + # processor. This is not true of the ARM version of Darwin + # that Apple uses in portable devices. + UNAME_PROCESSOR=x86_64 + fi + echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = x86; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-*:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSE-*:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSR-*:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSV-*:NONSTOP_KERNEL:*:*) + echo nsv-tandem-nsk"$UNAME_RELEASE" + exit ;; + NSX-*:NONSTOP_KERNEL:*:*) + echo nsx-tandem-nsk"$UNAME_RELEASE" + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = 386; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo "$UNAME_MACHINE"-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux"$UNAME_RELEASE" + exit ;; + *:DragonFly:*:*) + echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "$UNAME_MACHINE" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" + exit ;; + i*86:rdos:*:*) + echo "$UNAME_MACHINE"-pc-rdos + exit ;; + i*86:AROS:*:*) + echo "$UNAME_MACHINE"-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo "$UNAME_MACHINE"-unknown-esx + exit ;; + amd64:Isilon\ OneFS:*:*) + echo x86_64-unknown-onefs + exit ;; +esac + +echo "$0: unable to guess system type" >&2 + +case "$UNAME_MACHINE:$UNAME_SYSTEM" in + mips:Linux | mips64:Linux) + # If we got here on MIPS GNU/Linux, output extra information. + cat >&2 <&2 </dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = "$UNAME_MACHINE" +UNAME_RELEASE = "$UNAME_RELEASE" +UNAME_SYSTEM = "$UNAME_SYSTEM" +UNAME_VERSION = "$UNAME_VERSION" +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-functions 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/Frameworks/FLAC/flac-1.3.3/config.h.in b/Frameworks/FLAC/flac-1.3.3/config.h.in new file mode 100644 index 000000000..e440e4e8b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/config.h.in @@ -0,0 +1,251 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +#undef AC_APPLE_UNIVERSAL_BUILD + +/* Target processor is big endian. */ +#undef CPU_IS_BIG_ENDIAN + +/* Target processor is little endian. */ +#undef CPU_IS_LITTLE_ENDIAN + +/* Set FLAC__BYTES_PER_WORD to 8 (4 is the default) */ +#undef ENABLE_64_BIT_WORDS + +/* define to align allocated memory on 32-byte boundaries */ +#undef FLAC__ALIGN_MALLOC_DATA + +/* define if building for ia32/i386 */ +#undef FLAC__CPU_IA32 + +/* define if building for PowerPC */ +#undef FLAC__CPU_PPC + +/* define if building for PowerPC64 */ +#undef FLAC__CPU_PPC64 + +/* define if building for SPARC */ +#undef FLAC__CPU_SPARC + +/* define if building for x86_64 */ +#undef FLAC__CPU_X86_64 + +/* define if you have docbook-to-man or docbook2man */ +#undef FLAC__HAS_DOCBOOK_TO_MAN + +/* define if you are compiling for x86 and have the NASM assembler */ +#undef FLAC__HAS_NASM + +/* define if you have the ogg library */ +#undef FLAC__HAS_OGG + +/* define if compiler has __attribute__((target("cpu=power8"))) support */ +#undef FLAC__HAS_TARGET_POWER8 + +/* define if compiler has __attribute__((target("cpu=power9"))) support */ +#undef FLAC__HAS_TARGET_POWER9 + +/* Set to 1 if is available. */ +#undef FLAC__HAS_X86INTRIN + +/* define to disable use of assembly code */ +#undef FLAC__NO_ASM + +/* define if building for Darwin / MacOS X */ +#undef FLAC__SYS_DARWIN + +/* define if building for Linux */ +#undef FLAC__SYS_LINUX + +/* define to enable use of Altivec instructions */ +#undef FLAC__USE_ALTIVEC + +/* define to enable use of AVX instructions */ +#undef FLAC__USE_AVX + +/* define to enable use of VSX instructions */ +#undef FLAC__USE_VSX + +/* Compiler has the __builtin_bswap16 intrinsic */ +#undef HAVE_BSWAP16 + +/* Compiler has the __builtin_bswap32 intrinsic */ +#undef HAVE_BSWAP32 + +/* Define to 1 if you have the header file. */ +#undef HAVE_BYTESWAP_H + +/* define if you have clock_gettime */ +#undef HAVE_CLOCK_GETTIME + +/* Define to 1 if you have the header file. */ +#undef HAVE_CPUID_H + +/* Define to 1 if C++ supports variable-length arrays. */ +#undef HAVE_CXX_VARARRAYS + +/* Define to 1 if C supports variable-length arrays. */ +#undef HAVE_C_VARARRAYS + +/* Define to 1 if you have the header file. */ +#undef HAVE_DLFCN_H + +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#undef HAVE_FSEEKO + +/* Define to 1 if you have the `getopt_long' function. */ +#undef HAVE_GETOPT_LONG + +/* Define if you have the iconv() function and it works. */ +#undef HAVE_ICONV + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define if you have and nl_langinfo(CODESET). */ +#undef HAVE_LANGINFO_CODESET + +/* lround support */ +#undef HAVE_LROUND + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if the system has the type `socklen_t'. */ +#undef HAVE_SOCKLEN_T + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_IOCTL_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_PARAM_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_TERMIOS_H + +/* Define to 1 if typeof works with your compiler. */ +#undef HAVE_TYPEOF + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_X86INTRIN_H + +/* Define as const if the declaration of iconv() needs const. */ +#undef ICONV_CONST + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#undef LT_OBJDIR + +/* Define if debugging is disabled */ +#undef NDEBUG + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* The size of `off_t', as computed by sizeof. */ +#undef SIZEOF_OFF_T + +/* The size of `void*', as computed by sizeof. */ +#undef SIZEOF_VOIDP + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# undef _POSIX_PTHREAD_SEMANTICS +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# undef _TANDEM_SOURCE +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ +#endif + + +/* Version number of package */ +#undef VERSION + +/* Target processor is big endian. */ +#undef WORDS_BIGENDIAN + +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +#undef _LARGEFILE_SOURCE + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES + +/* Define to 1 if on MINIX. */ +#undef _MINIX + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#undef _POSIX_1_SOURCE + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#undef _POSIX_SOURCE + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +#undef inline +#endif + +/* Define to __typeof__ if your compiler spells it that way. */ +#undef typeof diff --git a/Frameworks/FLAC/flac-1.3.3/config.rpath b/Frameworks/FLAC/flac-1.3.3/config.rpath new file mode 100644 index 000000000..e69de29bb diff --git a/Frameworks/FLAC/flac-1.3.3/config.sub b/Frameworks/FLAC/flac-1.3.3/config.sub new file mode 100755 index 000000000..1d8e98bce --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/config.sub @@ -0,0 +1,1801 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright 1992-2018 Free Software Foundation, Inc. + +timestamp='2018-02-22' + +# This file is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that +# program. This Exception is an additional permission under section 7 +# of the GNU General Public License, version 3 ("GPLv3"). + + +# Please send patches to . +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS + +Canonicalize a configuration name. + +Options: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright 1992-2018 Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo "$1" + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | netbsd*-eabi* | \ + kopensolaris*-gnu* | cloudabi*-eabi* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo "$1" | sed 's/-[^-]*$//'` + if [ "$basic_machine" != "$1" ] + then os=`echo "$1" | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze*) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*178) + os=-lynxos178 + ;; + -lynx*5) + os=-lynxos5 + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arceb \ + | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ + | avr | avr32 \ + | ba \ + | be32 | be64 \ + | bfin \ + | c4x | c8051 | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | e2k | epiphany \ + | fido | fr30 | frv | ft32 \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia16 | ia64 \ + | ip2k | iq2000 \ + | k1om \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa32r6 | mipsisa32r6el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64r6 | mipsisa64r6el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipsr5900 | mipsr5900el \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 | nios2eb | nios2el \ + | ns16k | ns32k \ + | open8 | or1k | or1knd | or32 \ + | pdp10 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pru \ + | pyramid \ + | riscv32 | riscv64 \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[234]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | visium \ + | wasm32 \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + leon|leon[3-9]) + basic_machine=sparc-$basic_machine + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | ba-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | c8051-* | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | e2k-* | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia16-* | ia64-* \ + | ip2k-* | iq2000-* \ + | k1om-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ + | microblaze-* | microblazeel-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa32r6-* | mipsisa32r6el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64r6-* | mipsisa64r6el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipsr5900-* | mipsr5900el-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* | nios2eb-* | nios2el-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | or1k*-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pru-* \ + | pyramid-* \ + | riscv32-* | riscv64-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx*-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | visium-* \ + | wasm32-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-pc + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + asmjs) + basic_machine=asmjs-unknown + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2*) + basic_machine=m68k-bull + os=-sysv3 + ;; + e500v[12]) + basic_machine=powerpc-unknown + os=$os"spe" + ;; + e500v[12]-*) + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=$os"spe" + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + leon-*|leon[3-9]-*) + basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=-linux + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze*) + basic_machine=microblaze-xilinx + ;; + mingw64) + basic_machine=x86_64-pc + os=-mingw64 + ;; + mingw32) + basic_machine=i686-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + moxiebox) + basic_machine=moxie-unknown + os=-moxiebox + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i686-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + nsv-tandem) + basic_machine=nsv-tandem + ;; + nsx-tandem) + basic_machine=nsx-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos | rdos64) + basic_machine=x86_64-pc + os=-rdos + ;; + rdos32) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + x64) + basic_machine=x86_64-pc + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases that might get confused + # with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # es1800 is here to avoid being matched by es* (a different OS) + -es1800*) + os=-ose + ;; + # Now accept the basic system types. + # The portable systems comes first. + # Each alternative MUST end in a * to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* | -plan9* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* | -cloudabi* | -sortix* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -knetbsd* | -mirbsd* | -netbsd* \ + | -bitrig* | -openbsd* | -solidbsd* | -libertybsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* | -glidix* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -midipix* | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-musl* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* | -moxiebox* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es* \ + | -onefs* | -tirtos* | -phoenix* | -fuchsia* | -redox* | -bme* \ + | -midnightbsd*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -xray | -os68k* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo "$os" | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo "$os" | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo "$os" | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4*) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -pikeos*) + # Until real need of OS specific support for + # particular features comes up, bare metal + # configurations are quite functional. + case $basic_machine in + arm*) + os=-eabi + ;; + *) + os=-elf + ;; + esac + ;; + -nacl*) + ;; + -ios) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + c8051-*) + os=-elf + ;; + hexagon-*) + os=-elf + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + pru-*) + os=-elf + ;; + *-be) + os=-beos + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` + ;; +esac + +echo "$basic_machine$os" +exit + +# Local variables: +# eval: (add-hook 'write-file-functions 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/Frameworks/FLAC/flac-1.3.3/configure b/Frameworks/FLAC/flac-1.3.3/configure new file mode 100755 index 000000000..03d7359d6 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/configure @@ -0,0 +1,23951 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.69 for flac 1.3.3. +# +# Report bugs to . +# +# +# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. +# +# +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +# Use a proper internal environment variable to ensure we don't fall + # into an infinite loop, continuously re-executing ourselves. + if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then + _as_can_reexec=no; export _as_can_reexec; + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +as_fn_exit 255 + fi + # We don't want this to propagate to other subprocesses. + { _as_can_reexec=; unset _as_can_reexec;} +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1 +test -x / || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1 + + test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ + || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + export CONFIG_SHELL + # We cannot yet assume a decent shell, so we have to provide a +# neutralization value for shells without unset; and this also +# works around shells that cannot unset nonexistent variables. +# Preserve -v and -x to the replacement shell. +BASH_ENV=/dev/null +ENV=/dev/null +(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV +case $- in # (((( + *v*x* | *x*v* ) as_opts=-vx ;; + *v* ) as_opts=-v ;; + *x* ) as_opts=-x ;; + * ) as_opts= ;; +esac +exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} +# Admittedly, this is quite paranoid, since all the known shells bail +# out after a failed `exec'. +$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 +exit 255 +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and flac-dev@xiph.org +$0: about your system, including any error possibly output +$0: before this message. Then install a modern shell, or +$0: manually run the script under such a shell if you do +$0: have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # If we had to re-execute with $CONFIG_SHELL, we're ensured to have + # already done that, so ensure we don't try to do so again and fall + # in an infinite loop. This has already happened in practice. + _as_can_reexec=no; export _as_can_reexec + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +SHELL=${CONFIG_SHELL-/bin/sh} + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='flac' +PACKAGE_TARNAME='flac' +PACKAGE_VERSION='1.3.3' +PACKAGE_STRING='flac 1.3.3' +PACKAGE_BUGREPORT='flac-dev@xiph.org' +PACKAGE_URL='https://www.xiph.org/flac/' + +ac_unique_file="src/flac/main.c" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIBOBJS +GCC_MINOR_VERSION +GCC_MAJOR_VERSION +GCC_VERSION +FLaC__HAS_NASM_FALSE +FLaC__HAS_NASM_TRUE +NASM +LIB_CLOCK_GETTIME +FLaC__HAS_DOCBOOK_TO_MAN_FALSE +FLaC__HAS_DOCBOOK_TO_MAN_TRUE +DOCBOOK_TO_MAN +LTLIBICONV +LIBICONV +EXAMPLES_FALSE +EXAMPLES_TRUE +OGG_PACKAGE +FLAC__HAS_OGG +FLaC__HAS_OGG_FALSE +FLaC__HAS_OGG_TRUE +OGG_LIBS +OGG_CFLAGS +FLaC__WITH_CPPLIBS_FALSE +FLaC__WITH_CPPLIBS_TRUE +FLaC__HAS_XMMS_FALSE +FLaC__HAS_XMMS_TRUE +XMMS_EFFECT_PLUGIN_DIR +XMMS_GENERAL_PLUGIN_DIR +XMMS_OUTPUT_PLUGIN_DIR +XMMS_INPUT_PLUGIN_DIR +XMMS_VISUALIZATION_PLUGIN_DIR +XMMS_PLUGIN_DIR +XMMS_DATA_DIR +XMMS_VERSION +XMMS_LIBS +XMMS_CFLAGS +XMMS_CONFIG +FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_FALSE +FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_TRUE +FLaC__HAS_DOXYGEN_FALSE +FLaC__HAS_DOXYGEN_TRUE +DOXYGEN +FLAC__TEST_WITH_VALGRIND +ENABLE_64_BIT_WORDS +FLAC__TEST_LEVEL +FLaC__USE_AVX_FALSE +FLaC__USE_AVX_TRUE +FLaC__USE_VSX_FALSE +FLaC__USE_VSX_TRUE +FLaC__USE_ALTIVEC_FALSE +FLaC__USE_ALTIVEC_TRUE +DEBUG_FALSE +DEBUG_TRUE +FLaC__SYS_LINUX_FALSE +FLaC__SYS_LINUX_TRUE +FLaC__SYS_DARWIN_FALSE +FLaC__SYS_DARWIN_TRUE +OS_IS_WINDOWS_FALSE +OS_IS_WINDOWS_TRUE +OBJ_FORMAT +FLaC__CPU_SPARC_FALSE +FLaC__CPU_SPARC_TRUE +FLaC__CPU_PPC64_FALSE +FLaC__CPU_PPC64_TRUE +FLaC__CPU_PPC_FALSE +FLaC__CPU_PPC_TRUE +FLaC__CPU_IA32_FALSE +FLaC__CPU_IA32_TRUE +FLAC__CPU_X86_64_FALSE +FLAC__CPU_X86_64_TRUE +FLaC__NO_ASM_FALSE +FLaC__NO_ASM_TRUE +CXXCPP +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +ac_ct_CXX +CXXFLAGS +CXX +am__fastdepCCAS_FALSE +am__fastdepCCAS_TRUE +CCASDEPMODE +CCASFLAGS +CCAS +LT_SYS_LIBRARY_PATH +OTOOL64 +OTOOL +LIPO +NMEDIT +DSYMUTIL +MANIFEST_TOOL +RANLIB +LN_S +NM +ac_ct_DUMPBIN +DUMPBIN +LD +FGREP +SED +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +LIBTOOL +OBJDUMP +DLLTOOL +AS +ac_ct_AR +AR +EGREP +GREP +CPP +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +am__nodep +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CC +CPPFLAGS +LDFLAGS +CFLAGS +CC +AM_BACKSLASH +AM_DEFAULT_VERBOSITY +AM_DEFAULT_V +AM_V +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +runstatedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL +am__quote' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_silent_rules +enable_debug +enable_dependency_tracking +enable_static +with_pic +enable_shared +enable_fast_install +with_aix_soname +with_gnu_ld +with_sysroot +enable_libtool_lock +enable_largefile +enable_asm_optimizations +enable_sse +enable_altivec +enable_vsx +enable_avx +enable_thorough_tests +enable_exhaustive_tests +enable_werror +enable_stack_smash_protection +enable_64_bit_words +enable_valgrind_testing +enable_doxygen_docs +enable_local_xmms_plugin +enable_xmms_plugin +with_xmms_prefix +with_xmms_exec_prefix +enable_cpplibs +enable_ogg +with_ogg +with_ogg_libraries +with_ogg_includes +enable_oggtest +enable_examples +enable_rpath +with_libiconv_prefix +' + ac_precious_vars='build_alias +host_alias +target_alias +CC +CFLAGS +LDFLAGS +LIBS +CPPFLAGS +CPP +LT_SYS_LIBRARY_PATH +CCAS +CCASFLAGS +CXX +CXXFLAGS +CCC +CXXCPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +runstatedir='${localstatedir}/run' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *=) ac_optarg= ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -runstatedir | --runstatedir | --runstatedi | --runstated \ + | --runstate | --runstat | --runsta | --runst | --runs \ + | --run | --ru | --r) + ac_prev=runstatedir ;; + -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ + | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ + | --run=* | --ru=* | --r=*) + runstatedir=$ac_optarg ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error $? "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error $? "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information" + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error $? "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir runstatedir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error $? "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error $? "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures flac 1.3.3 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking ...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/flac] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of flac 1.3.3:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --enable-silent-rules less verbose build output (undo: "make V=1") + --disable-silent-rules verbose build output (undo: "make V=0") + --enable-debug=[yes/info/profile/no] + compile with debugging + --enable-dependency-tracking + do not reject slow dependency extractors + --disable-dependency-tracking + speeds up one-time build + --enable-static[=PKGS] build static libraries [default=no] + --enable-shared[=PKGS] build shared libraries [default=yes] + --enable-fast-install[=PKGS] + optimize for fast installation [default=yes] + --disable-libtool-lock avoid locking (might break parallel builds) + --disable-largefile omit support for large files + --disable-asm-optimizations + Don't use any assembly optimization routines + --disable-sse Disable passing of -msse2 to the compiler + --disable-altivec Disable Altivec optimizations + --disable-vsx Disable VSX optimizations + --disable-avx Disable AVX, AVX2 optimizations + --disable-thorough-tests + Disable thorough (long) testing, do only basic tests + --enable-exhaustive-tests + Enable exhaustive testing (VERY long) + --enable-werror Enable -Werror in all Makefiles + --enable-stack-smash-protection + Enable GNU GCC stack smash protection + --enable-64-bit-words Set FLAC__BYTES_PER_WORD to 8 (4 is the default) + --enable-valgrind-testing + Run all tests inside Valgrind + --disable-doxygen-docs Disable API documentation building via Doxygen + --enable-local-xmms-plugin + Install XMMS plugin to ~/.xmms/Plugins instead of + system location + --disable-xmms-plugin Do not build XMMS plugin + --disable-cpplibs Do not build libFLAC++ + --disable-ogg Disable ogg support (default: test for libogg) + --disable-oggtest Do not try to compile and run a test Ogg program + --disable-examples Don't build and install examples + --disable-rpath do not hardcode runtime library paths + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use + both] + --with-aix-soname=aix|svr4|both + shared library versioning (aka "SONAME") variant to + provide on AIX, [default=aix]. + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-sysroot[=DIR] Search for dependent libraries within DIR (or the + compiler's sysroot if not specified). + --with-xmms-prefix=PFX Prefix where XMMS is installed (optional) + --with-xmms-exec-prefix=PFX Exec prefix where XMMS is installed (optional) + --with-ogg=PFX Prefix where libogg is installed (optional) + --with-ogg-libraries=DIR + Directory where libogg library is installed + (optional) + --with-ogg-includes=DIR Directory where libogg header files are installed + (optional) + --with-gnu-ld assume the C compiler uses GNU ld [default=no] + --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib + --without-libiconv-prefix don't search for libiconv in includedir and libdir + +Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor + LT_SYS_LIBRARY_PATH + User-defined run-time library search path. + CCAS assembler compiler command (defaults to CC) + CCASFLAGS assembler compiler flags (defaults to CFLAGS) + CXX C++ compiler command + CXXFLAGS C++ compiler flags + CXXCPP C++ preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +flac home page: . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +flac configure 1.3.3 +generated by GNU Autoconf 2.69 + +Copyright (C) 2012 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if eval \${$3+:} false; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.i conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( $as_echo "## -------------------------------- ## +## Report this to flac-dev@xiph.org ## +## -------------------------------- ##" + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_mongrel + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_header_compile + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_func + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_cxx_try_cpp LINENO +# ------------------------ +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } > conftest.i && { + test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_cpp + +# ac_fn_cxx_try_link LINENO +# ------------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + test -x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_link + +# ac_fn_c_compute_int LINENO EXPR VAR INCLUDES +# -------------------------------------------- +# Tries to find the compile-time value of EXPR in a program that includes +# INCLUDES, setting VAR accordingly. Returns whether the value could be +# computed +ac_fn_c_compute_int () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if test "$cross_compiling" = yes; then + # Depending upon the size, compute the lo and hi bounds. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +static int test_array [1 - 2 * !(($2) >= 0)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_lo=0 ac_mid=0 + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +static int test_array [1 - 2 * !(($2) <= $ac_mid)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_hi=$ac_mid; break +else + as_fn_arith $ac_mid + 1 && ac_lo=$as_val + if test $ac_lo -le $ac_mid; then + ac_lo= ac_hi= + break + fi + as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +static int test_array [1 - 2 * !(($2) < 0)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_hi=-1 ac_mid=-1 + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +static int test_array [1 - 2 * !(($2) >= $ac_mid)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_lo=$ac_mid; break +else + as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val + if test $ac_mid -le $ac_hi; then + ac_lo= ac_hi= + break + fi + as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + done +else + ac_lo= ac_hi= +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +# Binary search between lo and hi bounds. +while test "x$ac_lo" != "x$ac_hi"; do + as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +static int test_array [1 - 2 * !(($2) <= $ac_mid)]; +test_array [0] = 0; +return test_array [0]; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_hi=$ac_mid +else + as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +done +case $ac_lo in #(( +?*) eval "$3=\$ac_lo"; ac_retval=0 ;; +'') ac_retval=1 ;; +esac + else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +static long int longval () { return $2; } +static unsigned long int ulongval () { return $2; } +#include +#include +int +main () +{ + + FILE *f = fopen ("conftest.val", "w"); + if (! f) + return 1; + if (($2) < 0) + { + long int i = longval (); + if (i != ($2)) + return 1; + fprintf (f, "%ld", i); + } + else + { + unsigned long int i = ulongval (); + if (i != ($2)) + return 1; + fprintf (f, "%lu", i); + } + /* Do not output a trailing newline, as this causes \r\n confusion + on some platforms. */ + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + echo >>conftest.val; read $3 &5 +$as_echo_n "checking for $2... " >&6; } +if eval \${$3+:} false; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno + +} # ac_fn_c_check_type +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by flac $as_me 1.3.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + $as_echo "## ---------------- ## +## Cache variables. ## +## ---------------- ##" + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + $as_echo "## ----------------- ## +## Output variables. ## +## ----------------- ##" + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + $as_echo "## ------------------- ## +## File substitutions. ## +## ------------------- ##" + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + $as_echo "## ----------- ## +## confdefs.h. ## +## ----------- ##" + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + # We do not want a PATH search for config.site. + case $CONFIG_SITE in #(( + -*) ac_site_file1=./$CONFIG_SITE;; + */*) ac_site_file1=$CONFIG_SITE;; + *) ac_site_file1=./$CONFIG_SITE;; + esac +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" \ + || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "failed to load site script $ac_site_file +See \`config.log' for more details" "$LINENO" 5; } + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +ac_config_headers="$ac_config_headers config.h" + + + +am__api_version='1.16' + +ac_aux_dir= +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if ${ac_cv_path_install+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; +esac + +# Do 'set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + am_has_slept=no + for am_try in 1 2; do + echo "timestamp, slept: $am_has_slept" > conftest.file + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error $? "ls -t appears to fail. Make sure there is not a broken + alias in your environment" "$LINENO" 5 + fi + if test "$2" = conftest.file || test $am_try -eq 2; then + break + fi + # Just in case. + sleep 1 + am_has_slept=yes + done + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error $? "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +# If we didn't sleep, we still need to ensure time stamps of config.status and +# generated files are strictly newer. +am_sleep_pid= +if grep 'slept: no' conftest.file >/dev/null 2>&1; then + ( sleep 1 ) & + am_sleep_pid=$! +fi + +rm -f conftest.file + +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# Expand $ac_aux_dir to an absolute path. +am_aux_dir=`cd "$ac_aux_dir" && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --is-lightweight"; then + am_missing_run="$MISSING " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using 'strip' when the user +# run "make install-strip". However 'strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the 'STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if ${ac_cv_path_mkdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=1;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='flac' + VERSION='1.3.3' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# For better backward compatibility. To be removed once Automake 1.9.x +# dies out for good. For more background, see: +# +# +mkdir_p='$(MKDIR_P)' + +# We need awk for the "check" target (and possibly the TAP driver). The +# system "awk" is bad on some platforms. +# Always define AMTAR for backward compatibility. Yes, it's still used +# in the wild :-( We should find a proper way to deprecate it ... +AMTAR='$${TAR-tar}' + + +# We'll loop over all known methods to create a tar archive until one works. +_am_tools='gnutar pax cpio none' + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a pax tar archive" >&5 +$as_echo_n "checking how to create a pax tar archive... " >&6; } + + # Go ahead even if we have the value already cached. We do so because we + # need to set the values for the 'am__tar' and 'am__untar' variables. + _am_tools=${am_cv_prog_tar_pax-$_am_tools} + + for _am_tool in $_am_tools; do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; do + { echo "$as_me:$LINENO: $_am_tar --version" >&5 + ($_am_tar --version) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && break + done + am__tar="$_am_tar --format=posix -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=posix -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x pax -w "$$tardir"' + am__tar_='pax -L -x pax -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H pax -L' + am__tar_='find "$tardir" -print | cpio -o -H pax -L' + am__untar='cpio -i -H pax -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_pax}" && break + + # tar/untar a dummy directory, and stop if the command works. + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 + (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + rm -rf conftest.dir + if test -s conftest.tar; then + { echo "$as_me:$LINENO: $am__untar &5 + ($am__untar &5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + { echo "$as_me:$LINENO: cat conftest.dir/file" >&5 + (cat conftest.dir/file) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + grep GrepMe conftest.dir/file >/dev/null 2>&1 && break + fi + done + rm -rf conftest.dir + + if ${am_cv_prog_tar_pax+:} false; then : + $as_echo_n "(cached) " >&6 +else + am_cv_prog_tar_pax=$_am_tool +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_pax" >&5 +$as_echo "$am_cv_prog_tar_pax" >&6; } + + + + + + +# POSIX will say in a future version that running "rm -f" with no argument +# is OK; and we want to be able to make that assumption in our Makefile +# recipes. So use an aggressive probe to check that the usage we want is +# actually supported "in the wild" to an acceptable degree. +# See automake bug#10828. +# To make any issue more visible, cause the running configure to be aborted +# by default if the 'rm' program in use doesn't match our expectations; the +# user can still override this though. +if rm -f && rm -fr && rm -rf; then : OK; else + cat >&2 <<'END' +Oops! + +Your 'rm' program seems unable to run without file operands specified +on the command line, even when the '-f' option is present. This is contrary +to the behaviour of most rm programs out there, and not conforming with +the upcoming POSIX standard: + +Please tell bug-automake@gnu.org about your system, including the value +of your $PATH and any error possibly output before this message. This +can help us improve future automake versions. + +END + if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then + echo 'Configuration will proceed anyway, since you have set the' >&2 + echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 + echo >&2 + else + cat >&2 <<'END' +Aborting the configuration process, to ensure you take notice of the issue. + +You can download and install GNU coreutils to get an 'rm' implementation +that behaves properly: . + +If you want to complete the configuration process using your problematic +'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM +to "yes", and re-run configure. + +END + as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 + fi +fi + +# Check whether --enable-silent-rules was given. +if test "${enable_silent_rules+set}" = set; then : + enableval=$enable_silent_rules; +fi + +case $enable_silent_rules in # ((( + yes) AM_DEFAULT_VERBOSITY=0;; + no) AM_DEFAULT_VERBOSITY=1;; + *) AM_DEFAULT_VERBOSITY=0;; +esac +am_make=${MAKE-make} +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 +$as_echo_n "checking whether $am_make supports nested variables... " >&6; } +if ${am_cv_make_support_nested_variables+:} false; then : + $as_echo_n "(cached) " >&6 +else + if $as_echo 'TRUE=$(BAR$(V)) +BAR0=false +BAR1=true +V=1 +am__doit: + @$(TRUE) +.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then + am_cv_make_support_nested_variables=yes +else + am_cv_make_support_nested_variables=no +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 +$as_echo "$am_cv_make_support_nested_variables" >&6; } +if test $am_cv_make_support_nested_variables = yes; then + AM_V='$(V)' + AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' +else + AM_V=$AM_DEFAULT_VERBOSITY + AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY +fi +AM_BACKSLASH='\' + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether configure should try to set CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS" >&5 +$as_echo_n "checking whether configure should try to set CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS... " >&6; } +if test "x${CFLAGS+set}" = "xset" || test "x${CXXFLAGS+set}" = "xset" || test "x${CPPFLAGS+set}" = "xset" || test "x${LDFLAGS+set}" = "xset"; then : + enable_flags_setting=no +else + enable_flags_setting=yes + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${enable_flags_setting}" >&5 +$as_echo "${enable_flags_setting}" >&6; } + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable debugging" >&5 +$as_echo_n "checking whether to enable debugging... " >&6; } + + ax_enable_debug_default=no + ax_enable_debug_is_release=$ax_is_release + + # If this is a release, override the default. + if test "$ax_enable_debug_is_release" = "yes"; then : + ax_enable_debug_default="no" +fi + + + + + # Check whether --enable-debug was given. +if test "${enable_debug+set}" = set; then : + enableval=$enable_debug; +else + enable_debug=$ax_enable_debug_default +fi + + + # empty mean debug yes + if test "x$enable_debug" = "x"; then : + enable_debug="yes" +fi + + # case of debug + case $enable_debug in #( + yes) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="${CFLAGS} -g -O0" + CXXFLAGS="${CXXFLAGS} -g -O0" + FFLAGS="${FFLAGS} -g -O0" + FCFLAGS="${FCFLAGS} -g -O0" + OBJCFLAGS="${OBJCFLAGS} -g -O0" + ;; #( + info) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: info" >&5 +$as_echo "info" >&6; } + CFLAGS="${CFLAGS} -g" + CXXFLAGS="${CXXFLAGS} -g" + FFLAGS="${FFLAGS} -g" + FCFLAGS="${FCFLAGS} -g" + OBJCFLAGS="${OBJCFLAGS} -g" + ;; #( + profile) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: profile" >&5 +$as_echo "profile" >&6; } + CFLAGS="${CFLAGS} -g -pg" + CXXFLAGS="${CXXFLAGS} -g -pg" + FFLAGS="${FFLAGS} -g -pg" + FCFLAGS="${FCFLAGS} -g -pg" + OBJCFLAGS="${OBJCFLAGS} -g -pg" + LDFLAGS="${LDFLAGS} -pg" + ;; #( + *) : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test "x${CFLAGS+set}" != "xset"; then : + CFLAGS="" +fi + if test "x${CXXFLAGS+set}" != "xset"; then : + CXXFLAGS="" +fi + if test "x${FFLAGS+set}" != "xset"; then : + FFLAGS="" +fi + if test "x${FCFLAGS+set}" != "xset"; then : + FCFLAGS="" +fi + if test "x${OBJCFLAGS+set}" != "xset"; then : + OBJCFLAGS="" +fi + ;; +esac + + if test "x$enable_debug" = "xyes"; then : + +else + +$as_echo "#define NDEBUG /**/" >>confdefs.h + +fi + ax_enable_debug=$enable_debug + +user_cflags=$CFLAGS + +#Prefer whatever the current ISO standard is. +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 +$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; } +cat > confinc.mk << 'END' +am__doit: + @echo this is the am__doit target >confinc.out +.PHONY: am__doit +END +am__include="#" +am__quote= +# BSD make does it like this. +echo '.include "confinc.mk" # ignored' > confmf.BSD +# Other make implementations (GNU, Solaris 10, AIX) do it like this. +echo 'include confinc.mk # ignored' > confmf.GNU +_am_result=no +for s in GNU BSD; do + { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 + (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + case $?:`cat confinc.out 2>/dev/null` in #( + '0:this is the am__doit target') : + case $s in #( + BSD) : + am__include='.include' am__quote='"' ;; #( + *) : + am__include='include' am__quote='' ;; +esac ;; #( + *) : + ;; +esac + if test "$am__include" != "#"; then + _am_result="yes ($s style)" + break + fi +done +rm -f confinc.* confmf.* +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 +$as_echo "${_am_result}" >&6; } + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + am__nodep='_no' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "no acceptable C compiler found in \$PATH +See \`config.log' for more details" "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 +$as_echo_n "checking whether the C compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "C compiler cannot create executables +See \`config.log' for more details" "$LINENO" 5; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 +$as_echo_n "checking for C compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot run C compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details" "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if ${ac_cv_objext+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "cannot compute suffix of object files: cannot compile +See \`config.log' for more details" "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if ${ac_cv_c_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if ${ac_cv_prog_cc_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 +$as_echo_n "checking whether $CC understands -c and -o together... " >&6; } +if ${am_cv_prog_cc_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF + # Make sure it works both with $CC and with simple cc. + # Following AC_PROG_CC_C_O, we do the test twice because some + # compilers refuse to overwrite an existing .o file with -o, + # though they will create one. + am_cv_prog_cc_c_o=yes + for am_i in 1 2; do + if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 + ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } \ + && test -f conftest2.$ac_objext; then + : OK + else + am_cv_prog_cc_c_o=no + break + fi + done + rm -f core conftest* + unset am_i +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 +$as_echo "$am_cv_prog_cc_c_o" >&6; } +if test "$am_cv_prog_cc_c_o" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CC_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + + case $ac_cv_prog_cc_stdc in #( + no) : + ac_cv_prog_cc_c99=no; ac_cv_prog_cc_c89=no ;; #( + *) : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5 +$as_echo_n "checking for $CC option to accept ISO C99... " >&6; } +if ${ac_cv_prog_cc_c99+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c99=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include +#include + +// Check varargs macros. These examples are taken from C99 6.10.3.5. +#define debug(...) fprintf (stderr, __VA_ARGS__) +#define showlist(...) puts (#__VA_ARGS__) +#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) +static void +test_varargs_macros (void) +{ + int x = 1234; + int y = 5678; + debug ("Flag"); + debug ("X = %d\n", x); + showlist (The first, second, and third items.); + report (x>y, "x is %d but y is %d", x, y); +} + +// Check long long types. +#define BIG64 18446744073709551615ull +#define BIG32 4294967295ul +#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) +#if !BIG_OK + your preprocessor is broken; +#endif +#if BIG_OK +#else + your preprocessor is broken; +#endif +static long long int bignum = -9223372036854775807LL; +static unsigned long long int ubignum = BIG64; + +struct incomplete_array +{ + int datasize; + double data[]; +}; + +struct named_init { + int number; + const wchar_t *name; + double average; +}; + +typedef const char *ccp; + +static inline int +test_restrict (ccp restrict text) +{ + // See if C++-style comments work. + // Iterate through items via the restricted pointer. + // Also check for declarations in for loops. + for (unsigned int i = 0; *(text+i) != '\0'; ++i) + continue; + return 0; +} + +// Check varargs and va_copy. +static void +test_varargs (const char *format, ...) +{ + va_list args; + va_start (args, format); + va_list args_copy; + va_copy (args_copy, args); + + const char *str; + int number; + float fnumber; + + while (*format) + { + switch (*format++) + { + case 's': // string + str = va_arg (args_copy, const char *); + break; + case 'd': // int + number = va_arg (args_copy, int); + break; + case 'f': // float + fnumber = va_arg (args_copy, double); + break; + default: + break; + } + } + va_end (args_copy); + va_end (args); +} + +int +main () +{ + + // Check bool. + _Bool success = false; + + // Check restrict. + if (test_restrict ("String literal") == 0) + success = true; + char *restrict newvar = "Another string"; + + // Check varargs. + test_varargs ("s, d' f .", "string", 65, 34.234); + test_varargs_macros (); + + // Check flexible array members. + struct incomplete_array *ia = + malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); + ia->datasize = 10; + for (int i = 0; i < ia->datasize; ++i) + ia->data[i] = i * 1.234; + + // Check named initializers. + struct named_init ni = { + .number = 34, + .name = L"Test wide string", + .average = 543.34343, + }; + + ni.number = 58; + + int dynamic_array[ni.number]; + dynamic_array[ni.number - 1] = 543; + + // work around unused variable warnings + return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' + || dynamic_array[ni.number - 1] != 543); + + ; + return 0; +} +_ACEOF +for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99 +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c99=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c99" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c99" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c99" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 +$as_echo "$ac_cv_prog_cc_c99" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c99" != xno; then : + ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if ${ac_cv_prog_cc_c89+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +struct stat; +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 +else + ac_cv_prog_cc_stdc=no +fi + +fi + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO Standard C" >&5 +$as_echo_n "checking for $CC option to accept ISO Standard C... " >&6; } + if ${ac_cv_prog_cc_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +fi + + case $ac_cv_prog_cc_stdc in #( + no) : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; #( + '') : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; #( + *) : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_stdc" >&5 +$as_echo "$ac_cv_prog_cc_stdc" >&6; } ;; +esac + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if ${ac_cv_prog_CPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if ${ac_cv_path_GREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_GREP" || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if ${ac_cv_path_EGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_EGREP" || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + + ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" +if test "x$ac_cv_header_minix_config_h" = xyes; then : + MINIX=yes +else + MINIX= +fi + + + if test "$MINIX" = yes; then + +$as_echo "#define _POSIX_SOURCE 1" >>confdefs.h + + +$as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h + + +$as_echo "#define _MINIX 1" >>confdefs.h + + fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 +$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } +if ${ac_cv_safe_to_define___extensions__+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +# define __EXTENSIONS__ 1 + $ac_includes_default +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_safe_to_define___extensions__=yes +else + ac_cv_safe_to_define___extensions__=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 +$as_echo "$ac_cv_safe_to_define___extensions__" >&6; } + test $ac_cv_safe_to_define___extensions__ = yes && + $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h + + $as_echo "#define _ALL_SOURCE 1" >>confdefs.h + + $as_echo "#define _GNU_SOURCE 1" >>confdefs.h + + $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h + + $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar lib "link -lib" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar lib "link -lib" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 +$as_echo_n "checking the archiver ($AR) interface... " >&6; } +if ${am_cv_ar_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + am_cv_ar_interface=ar + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int some_variable = 0; +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 + (eval $am_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + am_cv_ar_interface=ar + else + am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 + (eval $am_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test "$ac_status" -eq 0; then + am_cv_ar_interface=lib + else + am_cv_ar_interface=unknown + fi + fi + rm -f conftest.lib libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 +$as_echo "$am_cv_ar_interface" >&6; } + +case $am_cv_ar_interface in +ar) + ;; +lib) + # Microsoft lib, so override with the ar-lib wrapper script. + # FIXME: It is wrong to rewrite AR. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__AR in this case, + # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something + # similar. + AR="$am_aux_dir/ar-lib $AR" + ;; +unknown) + as_fn_error $? "could not determine $AR interface" "$LINENO" 5 + ;; +esac + +case `pwd` in + *\ * | *\ *) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 +$as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; +esac + + + +macro_version='2.4.6' +macro_revision='2.4.6' + + + + + + + + + + + + + +ltmain=$ac_aux_dir/ltmain.sh + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if ${ac_cv_build+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if ${ac_cv_host+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' + +ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 +$as_echo_n "checking how to print strings... " >&6; } +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "" +} + +case $ECHO in + printf*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 +$as_echo "printf" >&6; } ;; + print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 +$as_echo "print -r" >&6; } ;; + *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 +$as_echo "cat" >&6; } ;; +esac + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 +$as_echo_n "checking for a sed that does not truncate output... " >&6; } +if ${ac_cv_path_SED+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ + for ac_i in 1 2 3 4 5 6 7; do + ac_script="$ac_script$as_nl$ac_script" + done + echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed + { ac_script=; unset ac_script;} + if test -z "$SED"; then + ac_path_SED_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_SED" || continue +# Check for GNU ac_path_SED and select it if it is found. + # Check for GNU $ac_path_SED +case `"$ac_path_SED" --version 2>&1` in +*GNU*) + ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo '' >> "conftest.nl" + "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_SED_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_SED="$ac_path_SED" + ac_path_SED_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_SED_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_SED"; then + as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 + fi +else + ac_cv_path_SED=$SED +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 +$as_echo "$ac_cv_path_SED" >&6; } + SED="$ac_cv_path_SED" + rm -f conftest.sed + +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 +$as_echo_n "checking for fgrep... " >&6; } +if ${ac_cv_path_FGREP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 + then ac_cv_path_FGREP="$GREP -F" + else + if test -z "$FGREP"; then + ac_path_FGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in fgrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_FGREP" || continue +# Check for GNU ac_path_FGREP and select it if it is found. + # Check for GNU $ac_path_FGREP +case `"$ac_path_FGREP" --version 2>&1` in +*GNU*) + ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'FGREP' >> "conftest.nl" + "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_FGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_FGREP="$ac_path_FGREP" + ac_path_FGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_FGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_FGREP"; then + as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_FGREP=$FGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 +$as_echo "$ac_cv_path_FGREP" >&6; } + FGREP="$ac_cv_path_FGREP" + + +test -z "$GREP" && GREP=grep + + + + + + + + + + + + + + + + + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test yes = "$GCC"; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return, which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD=$ac_prog + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test yes = "$with_gnu_ld"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD=$ac_dir/$ac_prog + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 +$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } +if ${lt_cv_path_NM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM=$NM +else + lt_nm_to_check=${ac_tool_prefix}nm + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + tmp_nm=$ac_dir/$lt_tmp_nm + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the 'sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty + case $build_os in + mingw*) lt_bad_file=conftest.nm/nofile ;; + *) lt_bad_file=/dev/null ;; + esac + case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in + *$lt_bad_file* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break 2 + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break 2 + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS=$lt_save_ifs + done + : ${lt_cv_path_NM=no} +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 +$as_echo "$lt_cv_path_NM" >&6; } +if test no != "$lt_cv_path_NM"; then + NM=$lt_cv_path_NM +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + if test -n "$ac_tool_prefix"; then + for ac_prog in dumpbin "link -dump" + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DUMPBIN"; then + ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DUMPBIN=$ac_cv_prog_DUMPBIN +if test -n "$DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 +$as_echo "$DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DUMPBIN" && break + done +fi +if test -z "$DUMPBIN"; then + ac_ct_DUMPBIN=$DUMPBIN + for ac_prog in dumpbin "link -dump" +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DUMPBIN"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN +if test -n "$ac_ct_DUMPBIN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 +$as_echo "$ac_ct_DUMPBIN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_DUMPBIN" && break +done + + if test "x$ac_ct_DUMPBIN" = x; then + DUMPBIN=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DUMPBIN=$ac_ct_DUMPBIN + fi +fi + + case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols -headers" + ;; + *) + DUMPBIN=: + ;; + esac + fi + + if test : != "$DUMPBIN"; then + NM=$DUMPBIN + fi +fi +test -z "$NM" && NM=nm + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 +$as_echo_n "checking the name lister ($NM) interface... " >&6; } +if ${lt_cv_nm_interface+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&5 + (eval echo "\"\$as_me:$LINENO: output\"" >&5) + cat conftest.out >&5 + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 +$as_echo "$lt_cv_nm_interface" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 +$as_echo_n "checking whether ln -s works... " >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 +$as_echo "no, using $LN_S" >&6; } +fi + +# find the maximum length of command line arguments +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 +$as_echo_n "checking the maximum length of command line arguments... " >&6; } +if ${lt_cv_sys_max_cmd_len+:} false; then : + $as_echo_n "(cached) " >&6 +else + i=0 + teststring=ABCD + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len" && \ + test undefined != "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test X`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test 17 != "$i" # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac + +fi + +if test -n "$lt_cv_sys_max_cmd_len"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 +$as_echo "$lt_cv_sys_max_cmd_len" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +fi +max_cmd_len=$lt_cv_sys_max_cmd_len + + + + + + +: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi + + + + + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 +$as_echo_n "checking how to convert $build file names to $host format... " >&6; } +if ${lt_cv_to_host_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac + +fi + +to_host_file_cmd=$lt_cv_to_host_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 +$as_echo "$lt_cv_to_host_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 +$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } +if ${lt_cv_to_tool_file_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + #assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac + +fi + +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 +$as_echo "$lt_cv_to_tool_file_cmd" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 +$as_echo_n "checking for $LD option to reload object files... " >&6; } +if ${lt_cv_ld_reload_flag+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_reload_flag='-r' +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 +$as_echo "$lt_cv_ld_reload_flag" >&6; } +reload_flag=$lt_cv_ld_reload_flag +case $reload_flag in +"" | " "*) ;; +*) reload_flag=" $reload_flag" ;; +esac +reload_cmds='$LD$reload_flag -o $output$reload_objs' +case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + if test yes != "$GCC"; then + reload_cmds=false + fi + ;; + darwin*) + if test yes = "$GCC"; then + reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' + else + reload_cmds='$LD$reload_flag -o $output$reload_objs' + fi + ;; +esac + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 +$as_echo_n "checking how to recognize dependent libraries... " >&6; } +if ${lt_cv_deplibs_check_method+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_deplibs_check_method='unknown' +# Need to set the preceding variable on all platforms that support +# interlibrary dependencies. +# 'none' -- dependencies not supported. +# 'unknown' -- same as none, but documents that we really don't know. +# 'pass_all' -- all dependencies passed with no checks. +# 'test_compile' -- check by making test program. +# 'file_magic [[regex]]' -- check by looking for files in library path +# that responds to the $file_magic_cmd with a given extended regex. +# If you have 'file' or equivalent on your system and you're not sure +# whether 'pass_all' will *always* work, you probably want this one. + +case $host_os in +aix[4-9]*) + lt_cv_deplibs_check_method=pass_all + ;; + +beos*) + lt_cv_deplibs_check_method=pass_all + ;; + +bsdi[45]*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' + lt_cv_file_magic_cmd='/usr/bin/file -L' + lt_cv_file_magic_test_file=/shlib/libc.so + ;; + +cygwin*) + # func_win32_libid is a shell function defined in ltmain.sh + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + ;; + +mingw* | pw32*) + # Base MSYS/MinGW do not provide the 'file' command needed by + # func_win32_libid shell function, so use a weaker test based on 'objdump', + # unless we find 'file', for example because we are cross-compiling. + if ( file / ) >/dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[3-9]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd* | bitrig*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +os2*) + lt_cv_deplibs_check_method=pass_all + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 +$as_echo "$lt_cv_deplibs_check_method" >&6; } + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + + + + + + + + + + + + + + + + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 +$as_echo_n "checking how to associate runtime and link libraries... " >&6; } +if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh; + # decide which one to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd=$ECHO + ;; +esac + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 +$as_echo "$lt_cv_sharedlib_from_linklib_cmd" >&6; } +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + + + + + + + +if test -n "$ac_tool_prefix"; then + for ac_prog in ar + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AR"; then + ac_cv_prog_AR="$AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AR="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AR=$ac_cv_prog_AR +if test -n "$AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 +$as_echo "$AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AR" && break + done +fi +if test -z "$AR"; then + ac_ct_AR=$AR + for ac_prog in ar +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AR+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AR"; then + ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AR="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AR=$ac_cv_prog_ac_ct_AR +if test -n "$ac_ct_AR"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 +$as_echo "$ac_ct_AR" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_AR" && break +done + + if test "x$ac_ct_AR" = x; then + AR="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AR=$ac_ct_AR + fi +fi + +: ${AR=ar} +: ${AR_FLAGS=cru} + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 +$as_echo_n "checking for archiver @FILE support... " >&6; } +if ${lt_cv_ar_at_file+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ar_at_file=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test 0 -eq "$ac_status"; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 + (eval $lt_ar_try) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if test 0 -ne "$ac_status"; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 +$as_echo "$lt_cv_ar_at_file" >&6; } + +if test no = "$lt_cv_ar_at_file"; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi + + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_STRIP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +test -z "$STRIP" && STRIP=: + + + + + + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. +set dummy ${ac_tool_prefix}ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$RANLIB"; then + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +RANLIB=$ac_cv_prog_RANLIB +if test -n "$RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 +$as_echo "$RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_RANLIB"; then + ac_ct_RANLIB=$RANLIB + # Extract the first word of "ranlib", so it can be a program name with args. +set dummy ranlib; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_RANLIB"; then + ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB +if test -n "$ac_ct_RANLIB"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 +$as_echo "$ac_ct_RANLIB" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_RANLIB" = x; then + RANLIB=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + RANLIB=$ac_ct_RANLIB + fi +else + RANLIB="$ac_cv_prog_RANLIB" +fi + +test -z "$RANLIB" && RANLIB=: + + + + + + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + bitrig* | openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + +# Check for command to grab the raw symbol name followed by C symbol from nm. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 +$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } +if ${lt_cv_sys_global_symbol_pipe+:} false; then : + $as_echo_n "(cached) " >&6 +else + +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[BCDEGRST]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([_A-Za-z][_A-Za-z0-9]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[BCDT]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[ABCDGISTW]' + ;; +hpux*) + if test ia64 = "$host_cpu"; then + symcode='[ABCDEGRST]' + fi + ;; +irix* | nonstopux*) + symcode='[BCDEGRST]' + ;; +osf*) + symcode='[BCDEGQRST]' + ;; +solaris*) + symcode='[BDRT]' + ;; +sco3.2v5*) + symcode='[DT]' + ;; +sysv4.2uw2*) + symcode='[DT]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[ABDT]' + ;; +sysv4) + symcode='[DFNSTU]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[ABCDGIRSTW]' ;; +esac + +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Gets list of data symbols to import. + lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" + # Adjust the below global symbol transforms to fixup imported variables. + lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" + lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" + lt_c_name_lib_hook="\ + -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ + -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" +else + # Disable hooks by default. + lt_cv_sys_global_symbol_to_import= + lt_cdecl_hook= + lt_c_name_hook= + lt_c_name_lib_hook= +fi + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n"\ +$lt_cdecl_hook\ +" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ +$lt_c_name_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" + +# Transform an extracted symbol line into symbol name with lib prefix and +# symbol address. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ +$lt_c_name_lib_hook\ +" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ +" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ +" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function, + # D for any global variable and I for any imported variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK '"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ +" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ +" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ +" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ +" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Now try to grab the symbols. + nlist=conftest.nm + $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5 + if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE +/* DATA imports from DLLs on WIN32 can't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined __osf__ +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS=conftstm.$ac_objext + CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s conftest$ac_exeext; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&5 + fi + else + echo "cannot find nm_test_var in $nlist" >&5 + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 + fi + else + echo "$progname: failed program was:" >&5 + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test yes = "$pipe_works"; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done + +fi + +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 +$as_echo "failed" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 +$as_echo "ok" >&6; } +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 +$as_echo_n "checking for sysroot... " >&6; } + +# Check whether --with-sysroot was given. +if test "${with_sysroot+set}" = set; then : + withval=$with_sysroot; +else + with_sysroot=no +fi + + +lt_sysroot= +case $with_sysroot in #( + yes) + if test yes = "$GCC"; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 +$as_echo "$with_sysroot" >&6; } + as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 + ;; +esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 +$as_echo "${lt_sysroot:-no}" >&6; } + + + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 +$as_echo_n "checking for a working dd... " >&6; } +if ${ac_cv_path_lt_DD+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +: ${lt_DD:=$DD} +if test -z "$lt_DD"; then + ac_path_lt_DD_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in dd; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_lt_DD="$as_dir/$ac_prog$ac_exec_ext" + as_fn_executable_p "$ac_path_lt_DD" || continue +if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: +fi + $ac_path_lt_DD_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_lt_DD"; then + : + fi +else + ac_cv_path_lt_DD=$lt_DD +fi + +rm -f conftest.i conftest2.i conftest.out +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 +$as_echo "$ac_cv_path_lt_DD" >&6; } + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 +$as_echo_n "checking how to truncate binary pipes... " >&6; } +if ${lt_cv_truncate_bin+:} false; then : + $as_echo_n "(cached) " >&6 +else + printf 0123456789abcdef0123456789abcdef >conftest.i +cat conftest.i conftest.i >conftest2.i +lt_cv_truncate_bin= +if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then + cmp -s conftest.i conftest.out \ + && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" +fi +rm -f conftest.i conftest2.i conftest.out +test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 +$as_echo "$lt_cv_truncate_bin" >&6; } + + + + + + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + +# Check whether --enable-libtool-lock was given. +if test "${enable_libtool_lock+set}" = set; then : + enableval=$enable_libtool_lock; +fi + +test no = "$enable_libtool_lock" || enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out what ABI is being produced by ac_compile, and set mode + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE=32 + ;; + *ELF-64*) + HPUX_IA64_MODE=64 + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + if test yes = "$lt_cv_prog_gnu_ld"; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +mips64*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo '#line '$LINENO' "configure"' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + emul=elf + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + emul="${emul}32" + ;; + *64-bit*) + emul="${emul}64" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *MSB*) + emul="${emul}btsmip" + ;; + *LSB*) + emul="${emul}ltsmip" + ;; + esac + case `/usr/bin/file conftest.$ac_objext` in + *N32*) + emul="${emul}n32" + ;; + esac + LD="${LD-ld} -m $emul" + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. Note that the listed cases only cover the + # situations where additional linker options are needed (such as when + # doing 32-bit compilation for a host where ld defaults to 64-bit, or + # vice versa); the common cases where no linker options are needed do + # not appear in the list. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + case `/usr/bin/file conftest.o` in + *x86-64*) + LD="${LD-ld} -m elf32_x86_64" + ;; + *) + LD="${LD-ld} -m elf_i386" + ;; + esac + ;; + powerpc64le-*linux*) + LD="${LD-ld} -m elf32lppclinux" + ;; + powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + powerpcle-*linux*) + LD="${LD-ld} -m elf64lppc" + ;; + powerpc-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS -belf" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 +$as_echo_n "checking whether the C compiler needs -belf... " >&6; } +if ${lt_cv_cc_needs_belf+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_cc_needs_belf=yes +else + lt_cv_cc_needs_belf=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 +$as_echo "$lt_cv_cc_needs_belf" >&6; } + if test yes != "$lt_cv_cc_needs_belf"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS=$SAVE_CFLAGS + fi + ;; +*-*solaris*) + # Find out what ABI is being produced by ac_compile, and set linker + # options accordingly. + echo 'int i;' > conftest.$ac_ext + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*|x86_64-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD=${LD-ld}_sol2 + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks=$enable_libtool_lock + +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. +set dummy ${ac_tool_prefix}mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$MANIFEST_TOOL"; then + ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL +if test -n "$MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 +$as_echo "$MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_MANIFEST_TOOL"; then + ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL + # Extract the first word of "mt", so it can be a program name with args. +set dummy mt; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_MANIFEST_TOOL"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL +if test -n "$ac_ct_MANIFEST_TOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 +$as_echo "$ac_ct_MANIFEST_TOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_MANIFEST_TOOL" = x; then + MANIFEST_TOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL + fi +else + MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" +fi + +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 +$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } +if ${lt_cv_path_mainfest_tool+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&5 + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest* +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 +$as_echo "$lt_cv_path_mainfest_tool" >&6; } +if test yes != "$lt_cv_path_mainfest_tool"; then + MANIFEST_TOOL=: +fi + + + + + + + case $host_os in + rhapsody* | darwin*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. +set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DSYMUTIL"; then + ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DSYMUTIL=$ac_cv_prog_DSYMUTIL +if test -n "$DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 +$as_echo "$DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DSYMUTIL"; then + ac_ct_DSYMUTIL=$DSYMUTIL + # Extract the first word of "dsymutil", so it can be a program name with args. +set dummy dsymutil; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DSYMUTIL"; then + ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL +if test -n "$ac_ct_DSYMUTIL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 +$as_echo "$ac_ct_DSYMUTIL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DSYMUTIL" = x; then + DSYMUTIL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DSYMUTIL=$ac_ct_DSYMUTIL + fi +else + DSYMUTIL="$ac_cv_prog_DSYMUTIL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. +set dummy ${ac_tool_prefix}nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NMEDIT"; then + ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NMEDIT=$ac_cv_prog_NMEDIT +if test -n "$NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 +$as_echo "$NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_NMEDIT"; then + ac_ct_NMEDIT=$NMEDIT + # Extract the first word of "nmedit", so it can be a program name with args. +set dummy nmedit; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_NMEDIT"; then + ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_NMEDIT="nmedit" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT +if test -n "$ac_ct_NMEDIT"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 +$as_echo "$ac_ct_NMEDIT" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_NMEDIT" = x; then + NMEDIT=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + NMEDIT=$ac_ct_NMEDIT + fi +else + NMEDIT="$ac_cv_prog_NMEDIT" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. +set dummy ${ac_tool_prefix}lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$LIPO"; then + ac_cv_prog_LIPO="$LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_LIPO="${ac_tool_prefix}lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +LIPO=$ac_cv_prog_LIPO +if test -n "$LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 +$as_echo "$LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_LIPO"; then + ac_ct_LIPO=$LIPO + # Extract the first word of "lipo", so it can be a program name with args. +set dummy lipo; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_LIPO+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_LIPO"; then + ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_LIPO="lipo" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO +if test -n "$ac_ct_LIPO"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 +$as_echo "$ac_ct_LIPO" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_LIPO" = x; then + LIPO=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + LIPO=$ac_ct_LIPO + fi +else + LIPO="$ac_cv_prog_LIPO" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL"; then + ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL="${ac_tool_prefix}otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL=$ac_cv_prog_OTOOL +if test -n "$OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 +$as_echo "$OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL"; then + ac_ct_OTOOL=$OTOOL + # Extract the first word of "otool", so it can be a program name with args. +set dummy otool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL"; then + ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL="otool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL +if test -n "$ac_ct_OTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 +$as_echo "$ac_ct_OTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL" = x; then + OTOOL=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL=$ac_ct_OTOOL + fi +else + OTOOL="$ac_cv_prog_OTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. +set dummy ${ac_tool_prefix}otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OTOOL64"; then + ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OTOOL64=$ac_cv_prog_OTOOL64 +if test -n "$OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 +$as_echo "$OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OTOOL64"; then + ac_ct_OTOOL64=$OTOOL64 + # Extract the first word of "otool64", so it can be a program name with args. +set dummy otool64; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OTOOL64"; then + ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OTOOL64="otool64" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 +if test -n "$ac_ct_OTOOL64"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 +$as_echo "$ac_ct_OTOOL64" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OTOOL64" = x; then + OTOOL64=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OTOOL64=$ac_ct_OTOOL64 + fi +else + OTOOL64="$ac_cv_prog_OTOOL64" +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 +$as_echo_n "checking for -single_module linker flag... " >&6; } +if ${lt_cv_apple_cc_single_mod+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_apple_cc_single_mod=no + if test -z "$LT_MULTI_MODULE"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&5 + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test 0 = "$_lt_result"; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&5 + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 +$as_echo "$lt_cv_apple_cc_single_mod" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 +$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } +if ${lt_cv_ld_exported_symbols_list+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_ld_exported_symbols_list=yes +else + lt_cv_ld_exported_symbols_list=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 +$as_echo "$lt_cv_ld_exported_symbols_list" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 +$as_echo_n "checking for -force_load linker flag... " >&6; } +if ${lt_cv_ld_force_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 + echo "$AR cru libconftest.a conftest.o" >&5 + $AR cru libconftest.a conftest.o 2>&5 + echo "$RANLIB libconftest.a" >&5 + $RANLIB libconftest.a 2>&5 + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&5 + elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&5 + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 +$as_echo "$lt_cv_ld_force_load" >&6; } + case $host_os in + rhapsody* | darwin1.[012]) + _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[91]*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + 10.[012][,.]*) + _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test yes = "$lt_cv_apple_cc_single_mod"; then + _lt_dar_single_mod='$single_module' + fi + if test yes = "$lt_cv_ld_exported_symbols_list"; then + _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' + fi + if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + +for ac_header in dlfcn.h +do : + ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default +" +if test "x$ac_cv_header_dlfcn_h" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_DLFCN_H 1 +_ACEOF + +fi + +done + + + + + +# Set options +enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args. +set dummy ${ac_tool_prefix}as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AS"; then + ac_cv_prog_AS="$AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AS="${ac_tool_prefix}as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AS=$ac_cv_prog_AS +if test -n "$AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AS" >&5 +$as_echo "$AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_AS"; then + ac_ct_AS=$AS + # Extract the first word of "as", so it can be a program name with args. +set dummy as; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_AS+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_AS"; then + ac_cv_prog_ac_ct_AS="$ac_ct_AS" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_AS="as" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_AS=$ac_cv_prog_ac_ct_AS +if test -n "$ac_ct_AS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AS" >&5 +$as_echo "$ac_ct_AS" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_AS" = x; then + AS="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + AS=$ac_ct_AS + fi +else + AS="$ac_cv_prog_AS" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. +set dummy ${ac_tool_prefix}dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DLLTOOL"; then + ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DLLTOOL=$ac_cv_prog_DLLTOOL +if test -n "$DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 +$as_echo "$DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_DLLTOOL"; then + ac_ct_DLLTOOL=$DLLTOOL + # Extract the first word of "dlltool", so it can be a program name with args. +set dummy dlltool; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_DLLTOOL"; then + ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_DLLTOOL="dlltool" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL +if test -n "$ac_ct_DLLTOOL"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 +$as_echo "$ac_ct_DLLTOOL" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_DLLTOOL" = x; then + DLLTOOL="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + DLLTOOL=$ac_ct_DLLTOOL + fi +else + DLLTOOL="$ac_cv_prog_DLLTOOL" +fi + + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. +set dummy ${ac_tool_prefix}objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$OBJDUMP"; then + ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +OBJDUMP=$ac_cv_prog_OBJDUMP +if test -n "$OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 +$as_echo "$OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_OBJDUMP"; then + ac_ct_OBJDUMP=$OBJDUMP + # Extract the first word of "objdump", so it can be a program name with args. +set dummy objdump; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_OBJDUMP"; then + ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_OBJDUMP="objdump" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP +if test -n "$ac_ct_OBJDUMP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 +$as_echo "$ac_ct_OBJDUMP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_OBJDUMP" = x; then + OBJDUMP="false" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + OBJDUMP=$ac_ct_OBJDUMP + fi +else + OBJDUMP="$ac_cv_prog_OBJDUMP" +fi + + ;; +esac + +test -z "$AS" && AS=as + + + + + +test -z "$DLLTOOL" && DLLTOOL=dlltool + + + + + +test -z "$OBJDUMP" && OBJDUMP=objdump + + + + +# Check whether --enable-static was given. +if test "${enable_static+set}" = set; then : + enableval=$enable_static; p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_static=no +fi + + + + + + + + +# Check whether --with-pic was given. +if test "${with_pic+set}" = set; then : + withval=$with_pic; lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for lt_pkg in $withval; do + IFS=$lt_save_ifs + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + pic_mode=yes +fi + + + + + + + + + + enable_dlopen=no + + + + # Check whether --enable-shared was given. +if test "${enable_shared+set}" = set; then : + enableval=$enable_shared; p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_shared=yes +fi + + + + + + + + + + + + # Check whether --enable-fast-install was given. +if test "${enable_fast_install+set}" = set; then : + enableval=$enable_fast_install; p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, + for pkg in $enableval; do + IFS=$lt_save_ifs + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS=$lt_save_ifs + ;; + esac +else + enable_fast_install=yes +fi + + + + + + + + + shared_archive_member_spec= +case $host,$enable_shared in +power*-*-aix[5-9]*,yes) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 +$as_echo_n "checking which variant of shared library versioning to provide... " >&6; } + +# Check whether --with-aix-soname was given. +if test "${with_aix_soname+set}" = set; then : + withval=$with_aix_soname; case $withval in + aix|svr4|both) + ;; + *) + as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 + ;; + esac + lt_cv_with_aix_soname=$with_aix_soname +else + if ${lt_cv_with_aix_soname+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_with_aix_soname=aix +fi + + with_aix_soname=$lt_cv_with_aix_soname +fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 +$as_echo "$with_aix_soname" >&6; } + if test aix != "$with_aix_soname"; then + # For the AIX way of multilib, we name the shared archive member + # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', + # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. + # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, + # the AIX toolchain works better with OBJECT_MODE set (default 32). + if test 64 = "${OBJECT_MODE-32}"; then + shared_archive_member_spec=shr_64 + else + shared_archive_member_spec=shr + fi + fi + ;; +*) + with_aix_soname=aix + ;; +esac + + + + + + + + + + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS=$ltmain + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +test -z "$LN_S" && LN_S="ln -s" + + + + + + + + + + + + + + +if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 +$as_echo_n "checking for objdir... " >&6; } +if ${lt_cv_objdir+:} false; then : + $as_echo_n "(cached) " >&6 +else + rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 +$as_echo "$lt_cv_objdir" >&6; } +objdir=$lt_cv_objdir + + + + + +cat >>confdefs.h <<_ACEOF +#define LT_OBJDIR "$lt_cv_objdir/" +_ACEOF + + + + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a '.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld=$lt_cv_prog_gnu_ld + +old_CC=$CC +old_CFLAGS=$CFLAGS + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +func_cc_basename $compiler +cc_basename=$func_cc_basename_result + + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 +$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/${ac_tool_prefix}file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD=$lt_cv_path_MAGIC_CMD + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD + ;; +esac +fi + +MAGIC_CMD=$lt_cv_path_MAGIC_CMD +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + + + +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 +$as_echo_n "checking for file... " >&6; } +if ${lt_cv_path_MAGIC_CMD+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $MAGIC_CMD in +[\\/*] | ?:[\\/]*) + lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD=$MAGIC_CMD + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" + for ac_dir in $ac_dummy; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/file"; then + lt_cv_path_MAGIC_CMD=$ac_dir/"file" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD=$lt_cv_path_MAGIC_CMD + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS=$lt_save_ifs + MAGIC_CMD=$lt_save_MAGIC_CMD + ;; +esac +fi + +MAGIC_CMD=$lt_cv_path_MAGIC_CMD +if test -n "$MAGIC_CMD"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 +$as_echo "$MAGIC_CMD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + else + MAGIC_CMD=: + fi +fi + + fi + ;; +esac + +# Use C for the default configuration in the libtool script + +lt_save_CC=$CC +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +objext=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + +lt_prog_compiler_no_builtin_flag= + +if test yes = "$GCC"; then + case $cc_basename in + nvcc*) + lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; + *) + lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 +$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } +if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_rtti_exceptions=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_rtti_exceptions=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 +$as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } + +if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then + lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" +else + : +fi + +fi + + + + + + + lt_prog_compiler_wl= +lt_prog_compiler_pic= +lt_prog_compiler_static= + + + if test yes = "$GCC"; then + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_static='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + fi + lt_prog_compiler_pic='-fPIC' + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. + lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + ;; + + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + lt_prog_compiler_can_build_shared=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic=-Kconform_pic + fi + ;; + + *) + lt_prog_compiler_pic='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + lt_prog_compiler_wl='-Xlinker ' + if test -n "$lt_prog_compiler_pic"; then + lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + lt_prog_compiler_wl='-Wl,' + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static='-Bstatic' + else + lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic='-fno-common' + case $cc_basename in + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static='$wl-static' + ;; + esac + ;; + + hpux9* | hpux10* | hpux11*) + lt_prog_compiler_wl='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + lt_prog_compiler_static='$wl-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + lt_prog_compiler_wl='-Wl,' + # PIC (with -KPIC) is the default. + lt_prog_compiler_static='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + # old Intel for x86_64, which still supported -KPIC. + ecc*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='--shared' + lt_prog_compiler_static='--static' + ;; + nagfor*) + # NAG Fortran compiler + lt_prog_compiler_wl='-Wl,-Wl,,' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + ccc*) + lt_prog_compiler_wl='-Wl,' + # All Alpha code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-qpic' + lt_prog_compiler_static='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='' + ;; + *Sun\ F* | *Sun*Fortran*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + lt_prog_compiler_wl='-Wl,' + ;; + *Intel*\ [CF]*Compiler*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fPIC' + lt_prog_compiler_static='-static' + ;; + *Portland\ Group*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-fpic' + lt_prog_compiler_static='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + lt_prog_compiler_wl='-Wl,' + # All OSF/1 code is PIC. + lt_prog_compiler_static='-non_shared' + ;; + + rdos*) + lt_prog_compiler_static='-non_shared' + ;; + + solaris*) + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + lt_prog_compiler_wl='-Qoption ld ';; + *) + lt_prog_compiler_wl='-Wl,';; + esac + ;; + + sunos4*) + lt_prog_compiler_wl='-Qoption ld ' + lt_prog_compiler_pic='-PIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic='-Kconform_pic' + lt_prog_compiler_static='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_pic='-KPIC' + lt_prog_compiler_static='-Bstatic' + ;; + + unicos*) + lt_prog_compiler_wl='-Wl,' + lt_prog_compiler_can_build_shared=no + ;; + + uts4*) + lt_prog_compiler_pic='-pic' + lt_prog_compiler_static='-Bstatic' + ;; + + *) + lt_prog_compiler_can_build_shared=no + ;; + esac + fi + +case $host_os in + # For platforms that do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic= + ;; + *) + lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic=$lt_prog_compiler_pic +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 +$as_echo "$lt_cv_prog_compiler_pic" >&6; } +lt_prog_compiler_pic=$lt_cv_prog_compiler_pic + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } +if ${lt_cv_prog_compiler_pic_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works" >&6; } + +if test yes = "$lt_cv_prog_compiler_pic_works"; then + case $lt_prog_compiler_pic in + "" | " "*) ;; + *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; + esac +else + lt_prog_compiler_pic= + lt_prog_compiler_can_build_shared=no +fi + +fi + + + + + + + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works=yes + fi + else + lt_cv_prog_compiler_static_works=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 +$as_echo "$lt_cv_prog_compiler_static_works" >&6; } + +if test yes = "$lt_cv_prog_compiler_static_works"; then + : +else + lt_prog_compiler_static= +fi + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 +$as_echo "$lt_cv_prog_compiler_c_o" >&6; } + + + + +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + runpath_var= + allow_undefined_flag= + always_export_symbols=no + archive_cmds= + archive_expsym_cmds= + compiler_needs_object=no + enable_shared_with_static_runtimes=no + export_dynamic_flag_spec= + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + hardcode_automatic=no + hardcode_direct=no + hardcode_direct_absolute=no + hardcode_libdir_flag_spec= + hardcode_libdir_separator= + hardcode_minus_L=no + hardcode_shlibpath_var=unsupported + inherit_rpath=no + link_all_deplibs=unknown + module_cmds= + module_expsym_cmds= + old_archive_from_new_cmds= + old_archive_from_expsyms_cmds= + thread_safe_flag_spec= + whole_archive_flag_spec= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + include_expsyms= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ' (' and ')$', so one must not match beginning or + # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', + # as well as any symbol that contains 'd'. + exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test yes != "$GCC"; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd* | bitrig*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs=no + ;; + esac + + ld_shlibs=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test yes = "$with_gnu_ld"; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; + *\ \(GNU\ Binutils\)\ [3-9]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test yes = "$lt_use_gnu_ld_interface"; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='$wl' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + export_dynamic_flag_spec='$wl--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + else + whole_archive_flag_spec= + fi + supports_anon_versioning=no + case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[3-9]*) + # On AIX/PPC, the GNU linker is very broken + if test ia64 != "$host_cpu"; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + else + ld_shlibs=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + export_dynamic_flag_spec='$wl--export-all-symbols' + allow_undefined_flag=unsupported + always_export_symbols=no + enable_shared_with_static_runtimes=yes + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs=no + fi + ;; + + haiku*) + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + link_all_deplibs=yes + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + + interix[3-9]*) + hardcode_direct=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test linux-dietlibc = "$host_os"; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test no = "$tmp_diet" + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + whole_archive_flag_spec= + tmp_sharedflag='--shared' ;; + nagfor*) # NAGFOR 5.3 + tmp_sharedflag='-Wl,-shared' ;; + xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + compiler_needs_object=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + compiler_needs_object=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + + if test yes = "$supports_anon_versioning"; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + tcc*) + export_dynamic_flag_spec='-rdynamic' + ;; + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test yes = "$supports_anon_versioning"; then + archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + ld_shlibs=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + ;; + + sunos4*) + archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + else + ld_shlibs=no + fi + ;; + esac + + if test no = "$ld_shlibs"; then + runpath_var= + hardcode_libdir_flag_spec= + export_dynamic_flag_spec= + whole_archive_flag_spec= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + allow_undefined_flag=unsupported + always_export_symbols=yes + archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + + aix[4-9]*) + if test ia64 = "$host_cpu"; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag= + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then + aix_use_runtimelinking=yes + break + fi + done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds='' + hardcode_direct=yes + hardcode_direct_absolute=yes + hardcode_libdir_separator=':' + link_all_deplibs=yes + file_list_spec='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # traditional, no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct=no + hardcode_direct_absolute=no + ;; + esac + + if test yes = "$GCC"; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`$CC -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + shared_flag='-shared' + if test yes = "$aix_use_runtimelinking"; then + shared_flag="$shared_flag "'$wl-G' + fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' + else + # not using gcc + if test ia64 = "$host_cpu"; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' + else + shared_flag='$wl-bM:SRE' + fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' + fi + fi + + export_dynamic_flag_spec='$wl-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + always_export_symbols=yes + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + allow_undefined_flag='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + else + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' + allow_undefined_flag="-z nodefs" + archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath_+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath_"; then + lt_cv_aix_libpath_=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath_ +fi + + hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag=' $wl-bernotok' + allow_undefined_flag=' $wl-berok' + if test yes = "$with_gnu_ld"; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec='$convenience' + fi + archive_cmds_need_lc=yes + archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared libraries. + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds='' + ;; + m68k) + archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + esac + ;; + + bsdi[45]*) + export_dynamic_flag_spec=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + always_export_symbols=yes + file_list_spec='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, )='true' + enable_shared_with_static_runtimes=yes + exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + old_postinstall_cmds='chmod 644 $oldlib' + postlink_cmds='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + hardcode_libdir_flag_spec=' ' + allow_undefined_flag=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + old_archive_from_new_cmds='true' + # FIXME: Should let the user specify the lib program. + old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' + enable_shared_with_static_runtimes=yes + ;; + esac + ;; + + darwin* | rhapsody*) + + + archive_cmds_need_lc=no + hardcode_direct=no + hardcode_automatic=yes + hardcode_shlibpath_var=unsupported + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec='' + fi + link_all_deplibs=yes + allow_undefined_flag=$_lt_dar_allow_undefined + case $cc_basename in + ifort*|nagfor*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test yes = "$_lt_dar_can_shared"; then + output_verbose_link_cmd=func_echo_all + archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + + else + ld_shlibs=no + fi + + ;; + + dgux*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + hpux9*) + if test yes = "$GCC"; then + archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + else + archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + fi + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + export_dynamic_flag_spec='$wl-E' + ;; + + hpux10*) + if test yes,no = "$GCC,$with_gnu_ld"; then + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='$wl-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + + hpux11*) + if test yes,no = "$GCC,$with_gnu_ld"; then + case $host_cpu in + hppa*64*) + archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 +$as_echo_n "checking if $CC understands -b... " >&6; } +if ${lt_cv_prog_compiler__b+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler__b=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -b" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler__b=yes + fi + else + lt_cv_prog_compiler__b=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 +$as_echo "$lt_cv_prog_compiler__b" >&6; } + +if test yes = "$lt_cv_prog_compiler__b"; then + archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' +else + archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' +fi + + ;; + esac + fi + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec='$wl+b $wl$libdir' + hardcode_libdir_separator=: + + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + hardcode_shlibpath_var=no + ;; + *) + hardcode_direct=yes + hardcode_direct_absolute=yes + export_dynamic_flag_spec='$wl-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test yes = "$GCC"; then + archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 +$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } +if ${lt_cv_irix_exported_symbol+:} false; then : + $as_echo_n "(cached) " >&6 +else + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +int foo (void) { return 0; } +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + lt_cv_irix_exported_symbol=yes +else + lt_cv_irix_exported_symbol=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 +$as_echo "$lt_cv_irix_exported_symbol" >&6; } + if test yes = "$lt_cv_irix_exported_symbol"; then + archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' + fi + link_all_deplibs=no + else + archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + inherit_rpath=yes + link_all_deplibs=yes + ;; + + linux*) + case $cc_basename in + tcc*) + # Fabrice Bellard et al's Tiny C Compiler + ld_shlibs=yes + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + hardcode_shlibpath_var=no + ;; + + newsos6) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + hardcode_shlibpath_var=no + ;; + + *nto* | *qnx*) + ;; + + openbsd* | bitrig*) + if test -f /usr/libexec/ld.so; then + hardcode_direct=yes + hardcode_shlibpath_var=no + hardcode_direct_absolute=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + export_dynamic_flag_spec='$wl-E' + else + archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + hardcode_libdir_flag_spec='$wl-rpath,$libdir' + fi + else + ld_shlibs=no + fi + ;; + + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + allow_undefined_flag=unsupported + shrext_cmds=.dll + archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes=yes + ;; + + osf3*) + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + fi + archive_cmds_need_lc='no' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + hardcode_libdir_separator=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test yes = "$GCC"; then + allow_undefined_flag=' $wl-expect_unresolved $wl\*' + archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' + else + allow_undefined_flag=' -expect_unresolved \*' + archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + archive_cmds_need_lc='no' + hardcode_libdir_separator=: + ;; + + solaris*) + no_undefined_flag=' -z defs' + if test yes = "$GCC"; then + wlarc='$wl' + archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='$wl' + archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + hardcode_libdir_flag_spec='-R$libdir' + hardcode_shlibpath_var=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands '-z linker_flag'. GCC discards it without '$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test yes = "$GCC"; then + whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + else + whole_archive_flag_spec='-z allextract$convenience -z defaultextract' + fi + ;; + esac + link_all_deplibs=yes + ;; + + sunos4*) + if test sequent = "$host_vendor"; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + hardcode_shlibpath_var=no + ;; + + sysv4) + case $host_vendor in + sni) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' + reload_cmds='$CC -r -o $output$reload_objs' + hardcode_direct=no + ;; + motorola) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + hardcode_shlibpath_var=no + ;; + + sysv4.3*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + export_dynamic_flag_spec='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_shlibpath_var=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + ld_shlibs=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag='$wl-z,text' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We CANNOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag='$wl-z,text' + allow_undefined_flag='$wl-z,nodefs' + archive_cmds_need_lc=no + hardcode_shlibpath_var=no + hardcode_libdir_flag_spec='$wl-R,$libdir' + hardcode_libdir_separator=':' + link_all_deplibs=yes + export_dynamic_flag_spec='$wl-Bexport' + runpath_var='LD_RUN_PATH' + + if test yes = "$GCC"; then + archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + hardcode_libdir_flag_spec='-L$libdir' + hardcode_shlibpath_var=no + ;; + + *) + ld_shlibs=no + ;; + esac + + if test sni = "$host_vendor"; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + export_dynamic_flag_spec='$wl-Blargedynsym' + ;; + esac + fi + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 +$as_echo "$ld_shlibs" >&6; } +test no = "$ld_shlibs" && can_build_shared=no + +with_gnu_ld=$with_gnu_ld + + + + + + + + + + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc=yes + + if test yes,yes = "$GCC,$enable_shared"; then + case $archive_cmds in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl + pic_flag=$lt_prog_compiler_pic + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag + allow_undefined_flag= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc=no + else + lt_cv_archive_cmds_need_lc=yes + fi + allow_undefined_flag=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc" >&6; } + archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +if test yes = "$GCC"; then + case $host_os in + darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; + *) lt_awk_arg='/^libraries:/' ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; + *) lt_sed_strip_eq='s|=/|/|g' ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary... + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + # ...but if some path component already ends with the multilib dir we assume + # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). + case "$lt_multi_os_dir; $lt_search_path_spec " in + "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) + lt_multi_os_dir= + ;; + esac + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" + elif test -n "$lt_multi_os_dir"; then + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS = " "; FS = "/|\n";} { + lt_foo = ""; + lt_count = 0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo = "/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[lt_foo]++; } + if (lt_freq[lt_foo] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's|/\([A-Za-z]:\)|\1|g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=.so +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + + + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='$libname$release$shared_ext$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test ia64 = "$host_cpu"; then + # AIX 5 supports IA64 + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='$libname$shared_ext' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec=$LIB + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=no + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 + fi + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd* | bitrig*) + version_type=sunos + sys_lib_dlsearch_path_spec=/usr/lib + need_lib_prefix=no + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +os2*) + libname_spec='$name' + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test yes = "$with_gnu_ld"; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=sco + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test yes = "$with_gnu_ld"; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test no = "$dynamic_linker" && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test yes = "$GCC"; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec +fi + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec +fi + +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action= +if test -n "$hardcode_libdir_flag_spec" || + test -n "$runpath_var" || + test yes = "$hardcode_automatic"; then + + # We can hardcode non-existent directories. + if test no != "$hardcode_direct" && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && + test no != "$hardcode_minus_L"; then + # Linking always hardcodes the temporary library directory. + hardcode_action=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 +$as_echo "$hardcode_action" >&6; } + +if test relink = "$hardcode_action" || + test yes = "$inherit_rpath"; then + # Fast installation is not supported + enable_fast_install=no +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + if test yes != "$enable_dlopen"; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen=load_add_on + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen=LoadLibrary + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl +else + + lt_cv_dlopen=dyld + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + +fi + + ;; + + tpf*) + # Don't try to run any link tests for TPF. We know it's impossible + # because TPF is a cross-compiler, and we know how we open DSOs. + lt_cv_dlopen=dlopen + lt_cv_dlopen_libs= + lt_cv_dlopen_self=no + ;; + + *) + ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" +if test "x$ac_cv_func_shl_load" = xyes; then : + lt_cv_dlopen=shl_load +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 +$as_echo_n "checking for shl_load in -ldld... " >&6; } +if ${ac_cv_lib_dld_shl_load+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char shl_load (); +int +main () +{ +return shl_load (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_shl_load=yes +else + ac_cv_lib_dld_shl_load=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 +$as_echo "$ac_cv_lib_dld_shl_load" >&6; } +if test "x$ac_cv_lib_dld_shl_load" = xyes; then : + lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld +else + ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" +if test "x$ac_cv_func_dlopen" = xyes; then : + lt_cv_dlopen=dlopen +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 +$as_echo_n "checking for dlopen in -ldl... " >&6; } +if ${ac_cv_lib_dl_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldl $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dl_dlopen=yes +else + ac_cv_lib_dl_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 +$as_echo "$ac_cv_lib_dl_dlopen" >&6; } +if test "x$ac_cv_lib_dl_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 +$as_echo_n "checking for dlopen in -lsvld... " >&6; } +if ${ac_cv_lib_svld_dlopen+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lsvld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dlopen (); +int +main () +{ +return dlopen (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_svld_dlopen=yes +else + ac_cv_lib_svld_dlopen=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 +$as_echo "$ac_cv_lib_svld_dlopen" >&6; } +if test "x$ac_cv_lib_svld_dlopen" = xyes; then : + lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 +$as_echo_n "checking for dld_link in -ldld... " >&6; } +if ${ac_cv_lib_dld_dld_link+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ldld $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char dld_link (); +int +main () +{ +return dld_link (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_dld_dld_link=yes +else + ac_cv_lib_dld_dld_link=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 +$as_echo "$ac_cv_lib_dld_dld_link" >&6; } +if test "x$ac_cv_lib_dld_dld_link" = xyes; then : + lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld +fi + + +fi + + +fi + + +fi + + +fi + + +fi + + ;; + esac + + if test no = "$lt_cv_dlopen"; then + enable_dlopen=no + else + enable_dlopen=yes + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS=$CPPFLAGS + test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS=$LDFLAGS + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS=$LIBS + LIBS="$lt_cv_dlopen_libs $LIBS" + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 +$as_echo_n "checking whether a program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test yes = "$cross_compiling"; then : + lt_cv_dlopen_self=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisibility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 +$as_echo "$lt_cv_dlopen_self" >&6; } + + if test yes = "$lt_cv_dlopen_self"; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 +$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } +if ${lt_cv_dlopen_self_static+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test yes = "$cross_compiling"; then : + lt_cv_dlopen_self_static=cross +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisibility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +} +_LT_EOF + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 + (eval $ac_link) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then + (./conftest; exit; ) >&5 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; + x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; + esac + else : + # compilation failed + lt_cv_dlopen_self_static=no + fi +fi +rm -fr conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 +$as_echo "$lt_cv_dlopen_self_static" >&6; } + fi + + CPPFLAGS=$save_CPPFLAGS + LDFLAGS=$save_LDFLAGS + LIBS=$save_LIBS + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi + + + + + + + + + + + + + + + + + +striplib= +old_striplib= +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 +$as_echo_n "checking whether stripping libraries is possible... " >&6; } +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP"; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi + ;; + *) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + ;; + esac +fi + + + + + + + + + + + + + # Report what library types will actually be built + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 +$as_echo_n "checking if libtool supports shared libraries... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 +$as_echo "$can_build_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 +$as_echo_n "checking whether to build shared libraries... " >&6; } + test no = "$can_build_shared" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test yes = "$enable_shared" && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[4-9]*) + if test ia64 != "$host_cpu"; then + case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in + yes,aix,yes) ;; # shared object as lib.so file only + yes,svr4,*) ;; # shared object as lib.so archive member only + yes,*) enable_static=no ;; # shared object in lib.a archive as well + esac + fi + ;; + esac + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 +$as_echo "$enable_shared" >&6; } + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 +$as_echo_n "checking whether to build static libraries... " >&6; } + # Make sure either enable_shared or enable_static is yes. + test yes = "$enable_shared" || enable_static=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 +$as_echo "$enable_static" >&6; } + + + + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +CC=$lt_save_CC + + + + + + + + + + + + + + + + ac_config_commands="$ac_config_commands libtool" + + + + +# Only expand once: + + +# By default we simply use the C compiler to build assembly code. + +test "${CCAS+set}" = set || CCAS=$CC +test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS + + + +depcc="$CCAS" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CCAS_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CCAS_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CCAS_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CCAS_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CCAS_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CCAS_dependencies_compiler_type" >&6; } +CCASDEPMODE=depmode=$am_cv_CCAS_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CCAS_dependencies_compiler_type" = gcc3; then + am__fastdepCCAS_TRUE= + am__fastdepCCAS_FALSE='#' +else + am__fastdepCCAS_TRUE='#' + am__fastdepCCAS_FALSE= +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_ac_ct_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if ${ac_cv_cxx_compiler_gnu+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if ${ac_cv_prog_cxx_g+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if ${am_cv_CXX_dependencies_compiler_type+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named 'D' -- because '-MD' means "put the output + # in D". + rm -rf conftest.dir + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with + # Solaris 10 /bin/sh. + echo '/* dummy */' > sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with '-c' and '-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle '-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs. + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # After this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested. + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvc7 | msvc7msys | msvisualcpp | msvcmsys) + # This compiler won't grok '-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + + + +func_stripname_cnf () +{ + case $2 in + .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; + *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; + esac +} # func_stripname_cnf + + if test -n "$CXX" && ( test no != "$CXX" && + ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || + (test g++ != "$CXX"))); then + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 +$as_echo_n "checking how to run the C++ preprocessor... " >&6; } +if test -z "$CXXCPP"; then + if ${ac_cv_prog_CXXCPP+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CXXCPP needs to be expanded + for CXXCPP in "$CXX -E" "/lib/cpp" + do + ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CXXCPP=$CXXCPP + +fi + CXXCPP=$ac_cv_prog_CXXCPP +else + ac_cv_prog_CXXCPP=$CXXCPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 +$as_echo "$CXXCPP" >&6; } +ac_preproc_ok=false +for ac_cxx_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.i conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +_ACEOF +if ac_fn_cxx_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.i conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.i conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check +See \`config.log' for more details" "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +else + _lt_caught_CXX_error=yes +fi + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +archive_cmds_need_lc_CXX=no +allow_undefined_flag_CXX= +always_export_symbols_CXX=no +archive_expsym_cmds_CXX= +compiler_needs_object_CXX=no +export_dynamic_flag_spec_CXX= +hardcode_direct_CXX=no +hardcode_direct_absolute_CXX=no +hardcode_libdir_flag_spec_CXX= +hardcode_libdir_separator_CXX= +hardcode_minus_L_CXX=no +hardcode_shlibpath_var_CXX=unsupported +hardcode_automatic_CXX=no +inherit_rpath_CXX=no +module_cmds_CXX= +module_expsym_cmds_CXX= +link_all_deplibs_CXX=unknown +old_archive_cmds_CXX=$old_archive_cmds +reload_flag_CXX=$reload_flag +reload_cmds_CXX=$reload_cmds +no_undefined_flag_CXX= +whole_archive_flag_spec_CXX= +enable_shared_with_static_runtimes_CXX=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +objext_CXX=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test yes != "$_lt_caught_CXX_error"; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + + + + + + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC + + + # save warnings/boilerplate of simple test code + ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* + + ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* + + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + compiler_CXX=$CC + func_cc_basename $compiler +cc_basename=$func_cc_basename_result + + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test yes = "$GXX"; then + lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' + else + lt_prog_compiler_no_builtin_flag_CXX= + fi + + if test yes = "$GXX"; then + # Set up default GNU C++ configuration + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +ac_prog=ld +if test yes = "$GCC"; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return, which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD=$ac_prog + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test yes = "$with_gnu_ld"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${lt_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS=$lt_save_ifs + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD=$ac_dir/$ac_prog + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${lt_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$lt_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$lt_cv_prog_gnu_ld + + + + + + + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test yes = "$with_gnu_ld"; then + archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='$wl' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + else + whole_archive_flag_spec_CXX= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + ld_shlibs_CXX=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aix[4-9]*) + if test ia64 = "$host_cpu"; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag= + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # have runtime linking enabled, and use it for executables. + # For shared libraries, we enable/disable runtime linking + # depending on the kind of the shared library created - + # when "with_aix_soname,aix_use_runtimelinking" is: + # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables + # "aix,yes" lib.so shared, rtl:yes, for executables + # lib.a static archive + # "both,no" lib.so.V(shr.o) shared, rtl:yes + # lib.a(lib.so.V) shared, rtl:no, for executables + # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a(lib.so.V) shared, rtl:no + # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables + # lib.a static archive + case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then + # With aix-soname=svr4, we create the lib.so.V shared archives only, + # so we don't have lib.a shared libs to link our executables. + # We have to force runtime linking in this case. + aix_use_runtimelinking=yes + LDFLAGS="$LDFLAGS -Wl,-brtl" + fi + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + archive_cmds_CXX='' + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + file_list_spec_CXX='$wl-f,' + case $with_aix_soname,$aix_use_runtimelinking in + aix,*) ;; # no import file + svr4,* | *,yes) # use import file + # The Import File defines what to hardcode. + hardcode_direct_CXX=no + hardcode_direct_absolute_CXX=no + ;; + esac + + if test yes = "$GXX"; then + case $host_os in aix4.[012]|aix4.[012].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`$CC -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + hardcode_direct_CXX=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + hardcode_minus_L_CXX=yes + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_libdir_separator_CXX= + fi + esac + shared_flag='-shared' + if test yes = "$aix_use_runtimelinking"; then + shared_flag=$shared_flag' $wl-G' + fi + # Need to ensure runtime linking is disabled for the traditional + # shared library, or the linker may eventually find shared libraries + # /with/ Import File - we do not want to mix them. + shared_flag_aix='-shared' + shared_flag_svr4='-shared $wl-G' + else + # not using gcc + if test ia64 = "$host_cpu"; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test yes = "$aix_use_runtimelinking"; then + shared_flag='$wl-G' + else + shared_flag='$wl-bM:SRE' + fi + shared_flag_aix='$wl-bM:SRE' + shared_flag_svr4='$wl-G' + fi + fi + + export_dynamic_flag_spec_CXX='$wl-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + always_export_symbols_CXX=yes + if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + # The "-G" linker flag allows undefined symbols. + no_undefined_flag_CXX='-bernotok' + # Determine the default libpath from the value encoded in an empty + # executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" + + archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + else + if test ia64 = "$host_cpu"; then + hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' + allow_undefined_flag_CXX="-z nodefs" + archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + if test set = "${lt_cv_aix_libpath+set}"; then + aix_libpath=$lt_cv_aix_libpath +else + if ${lt_cv_aix_libpath__CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + + lt_aix_libpath_sed=' + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }' + lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$lt_cv_aix_libpath__CXX"; then + lt_cv_aix_libpath__CXX=/usr/lib:/lib + fi + +fi + + aix_libpath=$lt_cv_aix_libpath__CXX +fi + + hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + no_undefined_flag_CXX=' $wl-bernotok' + allow_undefined_flag_CXX=' $wl-berok' + if test yes = "$with_gnu_ld"; then + # We only use this code for GNU lds that support --whole-archive. + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + whole_archive_flag_spec_CXX='$convenience' + fi + archive_cmds_need_lc_CXX=yes + archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' + # -brtl affects multiple linker settings, -berok does not and is overridden later + compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' + if test svr4 != "$with_aix_soname"; then + # This is similar to how AIX traditionally builds its shared + # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' + fi + if test aix != "$with_aix_soname"; then + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' + else + # used by -dlpreopen to get the symbols + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' + fi + archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + allow_undefined_flag_CXX=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + else + ld_shlibs_CXX=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec_CXX=' ' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=yes + file_list_spec_CXX='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=.dll + # FIXME: Setting linknames here is a bad hack. + archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp "$export_symbols" "$output_objdir/$soname.def"; + echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; + else + $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' + enable_shared_with_static_runtimes_CXX=yes + # Don't use ranlib + old_postinstall_cmds_CXX='chmod 644 $oldlib' + postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile=$lt_outputfile.exe + lt_tool_outputfile=$lt_tool_outputfile.exe + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, + # as there is no search path for DLLs. + hardcode_libdir_flag_spec_CXX='-L$libdir' + export_dynamic_flag_spec_CXX='$wl--export-all-symbols' + allow_undefined_flag_CXX=unsupported + always_export_symbols_CXX=no + enable_shared_with_static_runtimes_CXX=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file, use it as + # is; otherwise, prepend EXPORTS... + archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + ld_shlibs_CXX=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + + + archive_cmds_need_lc_CXX=no + hardcode_direct_CXX=no + hardcode_automatic_CXX=yes + hardcode_shlibpath_var_CXX=unsupported + if test yes = "$lt_cv_ld_force_load"; then + whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + + else + whole_archive_flag_spec_CXX='' + fi + link_all_deplibs_CXX=yes + allow_undefined_flag_CXX=$_lt_dar_allow_undefined + case $cc_basename in + ifort*|nagfor*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test yes = "$_lt_dar_can_shared"; then + output_verbose_link_cmd=func_echo_all + archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" + module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" + module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + if test yes != "$lt_cv_apple_cc_single_mod"; then + archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" + archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" + fi + + else + ld_shlibs_CXX=no + fi + + ;; + + os2*) + hardcode_libdir_flag_spec_CXX='-L$libdir' + hardcode_minus_L_CXX=yes + allow_undefined_flag_CXX=unsupported + shrext_cmds=.dll + archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ + $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ + $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ + $ECHO EXPORTS >> $output_objdir/$libname.def~ + prefix_cmds="$SED"~ + if test EXPORTS = "`$SED 1q $export_symbols`"; then + prefix_cmds="$prefix_cmds -e 1d"; + fi~ + prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ + cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ + $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ + emximp -o $lib $output_objdir/$libname.def' + old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' + enable_shared_with_static_runtimes_CXX=yes + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + ld_shlibs_CXX=no + ;; + + freebsd-elf*) + archive_cmds_need_lc_CXX=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + ld_shlibs_CXX=yes + ;; + + haiku*) + archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + link_all_deplibs_CXX=yes + ;; + + hpux9*) + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' + hardcode_libdir_separator_CXX=: + export_dynamic_flag_spec_CXX='$wl-E' + hardcode_direct_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes = "$GXX"; then + archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test no = "$with_gnu_ld"; then + hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' + hardcode_libdir_separator_CXX=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + export_dynamic_flag_spec_CXX='$wl-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + ;; + *) + hardcode_direct_CXX=yes + hardcode_direct_absolute_CXX=yes + hardcode_minus_L_CXX=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP " \-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + case $host_cpu in + hppa*64*) + archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + interix[3-9]*) + hardcode_direct_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test yes = "$GXX"; then + if test no = "$with_gnu_ld"; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + else + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' + fi + fi + link_all_deplibs_CXX=yes + ;; + esac + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + hardcode_libdir_separator_CXX=: + inherit_rpath_CXX=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + archive_cmds_need_lc_CXX=no + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [1-5].* | *pgcpp\ [1-5].*) + prelink_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + old_archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + archive_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + ;; + cxx*) + # Compaq C++ + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + export_dynamic_flag_spec_CXX='$wl--export-dynamic' + archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + if test yes = "$supports_anon_versioning"; then + archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' + hardcode_libdir_flag_spec_CXX='-R$libdir' + whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + compiler_needs_object_CXX=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + ld_shlibs_CXX=yes + ;; + + openbsd* | bitrig*) + if test -f /usr/libexec/ld.so; then + hardcode_direct_CXX=yes + hardcode_shlibpath_var_CXX=no + hardcode_direct_absolute_CXX=yes + archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then + archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' + export_dynamic_flag_spec_CXX='$wl-E' + whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + ld_shlibs_CXX=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' + hardcode_libdir_separator_CXX=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + cxx*) + case $host in + osf3*) + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + ;; + *) + allow_undefined_flag_CXX=' -expect_unresolved \*' + archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ + $RM $lib.exp' + hardcode_libdir_flag_spec_CXX='-rpath $libdir' + ;; + esac + + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test yes,no = "$GXX,$with_gnu_ld"; then + allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' + case $host in + osf3*) + archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + ;; + *) + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + ;; + esac + + hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' + hardcode_libdir_separator_CXX=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' + + else + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + archive_cmds_need_lc_CXX=yes + no_undefined_flag_CXX=' -zdefs' + archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + hardcode_libdir_flag_spec_CXX='-R$libdir' + hardcode_shlibpath_var_CXX=no + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands '-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' + ;; + esac + link_all_deplibs_CXX=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test yes,no = "$GXX,$with_gnu_ld"; then + no_undefined_flag_CXX=' $wl-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' + else + # g++ 2.7 appears to require '-G' NOT '-shared' on this + # platform. + archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP " \-L"' + fi + + hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' + case $host_os in + solaris2.[0-5] | solaris2.[0-5].*) ;; + *) + whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) + no_undefined_flag_CXX='$wl-z,text' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We CANNOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + no_undefined_flag_CXX='$wl-z,text' + allow_undefined_flag_CXX='$wl-z,nodefs' + archive_cmds_need_lc_CXX=no + hardcode_shlibpath_var_CXX=no + hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' + hardcode_libdir_separator_CXX=':' + link_all_deplibs_CXX=yes + export_dynamic_flag_spec_CXX='$wl-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ + '"$old_archive_cmds_CXX" + reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ + '"$reload_cmds_CXX" + ;; + *) + archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + + *) + # FIXME: insert proper C++ library support + ld_shlibs_CXX=no + ;; + esac + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } + test no = "$ld_shlibs_CXX" && can_build_shared=no + + GCC_CXX=$GXX + LD_CXX=$LD + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + # Dependencies to place before and after the object being linked: +predep_objects_CXX= +postdep_objects_CXX= +predeps_CXX= +postdeps_CXX= +compiler_lib_search_path_CXX= + +cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF + + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case $prev$p in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test x-L = "$p" || + test x-R = "$p"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test no = "$pre_test_object_deps_done"; then + case $prev in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$compiler_lib_search_path_CXX"; then + compiler_lib_search_path_CXX=$prev$p + else + compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$postdeps_CXX"; then + postdeps_CXX=$prev$p + else + postdeps_CXX="${postdeps_CXX} $prev$p" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test no = "$pre_test_object_deps_done"; then + if test -z "$predep_objects_CXX"; then + predep_objects_CXX=$p + else + predep_objects_CXX="$predep_objects_CXX $p" + fi + else + if test -z "$postdep_objects_CXX"; then + postdep_objects_CXX=$p + else + postdep_objects_CXX="$postdep_objects_CXX $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling CXX test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +case $host_os in +interix[3-9]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + predep_objects_CXX= + postdep_objects_CXX= + postdeps_CXX= + ;; +esac + + +case " $postdeps_CXX " in +*" -lc "*) archive_cmds_need_lc_CXX=no ;; +esac + compiler_lib_search_dirs_CXX= +if test -n "${compiler_lib_search_path_CXX}"; then + compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` +fi + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + lt_prog_compiler_wl_CXX= +lt_prog_compiler_pic_CXX= +lt_prog_compiler_static_CXX= + + + # C++ specific cases for pic, static, wl, etc. + if test yes = "$GXX"; then + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + fi + lt_prog_compiler_pic_CXX='-fPIC' + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + lt_prog_compiler_pic_CXX='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the '-m68020' flag to GCC prevents building anything better, + # like '-m68040'. + lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + case $host_os in + os2*) + lt_prog_compiler_static_CXX='$wl-static' + ;; + esac + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + lt_prog_compiler_pic_CXX='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + lt_prog_compiler_pic_CXX= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + lt_prog_compiler_static_CXX= + ;; + interix[3-9]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + lt_prog_compiler_pic_CXX=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + *) + lt_prog_compiler_pic_CXX='-fPIC' + ;; + esac + else + case $host_os in + aix[4-9]*) + # All AIX code is PIC. + if test ia64 = "$host_cpu"; then + # AIX 5 now supports IA64 processor + lt_prog_compiler_static_CXX='-Bstatic' + else + lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + lt_prog_compiler_pic_CXX='-DDLL_EXPORT' + ;; + dgux*) + case $cc_basename in + ec++*) + lt_prog_compiler_pic_CXX='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' + if test ia64 != "$host_cpu"; then + lt_prog_compiler_pic_CXX='+Z' + fi + ;; + aCC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='$wl-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + lt_prog_compiler_pic_CXX='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_static_CXX='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + case $cc_basename in + KCC*) + # KAI C++ Compiler + lt_prog_compiler_wl_CXX='--backend -Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64, which still supported -KPIC. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fPIC' + lt_prog_compiler_static_CXX='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-fpic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-qpic' + lt_prog_compiler_static_CXX='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + lt_prog_compiler_pic_CXX='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + lt_prog_compiler_pic_CXX='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + lt_prog_compiler_wl_CXX='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + lt_prog_compiler_pic_CXX='-pic' + ;; + cxx*) + # Digital/Compaq C++ + lt_prog_compiler_wl_CXX='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + lt_prog_compiler_pic_CXX= + lt_prog_compiler_static_CXX='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + lt_prog_compiler_wl_CXX='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + lt_prog_compiler_pic_CXX='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + lt_prog_compiler_pic_CXX='-pic' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + lcc*) + # Lucid + lt_prog_compiler_pic_CXX='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + lt_prog_compiler_wl_CXX='-Wl,' + lt_prog_compiler_pic_CXX='-KPIC' + lt_prog_compiler_static_CXX='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + lt_prog_compiler_pic_CXX='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + lt_prog_compiler_can_build_shared_CXX=no + ;; + esac + fi + +case $host_os in + # For platforms that do not support PIC, -DPIC is meaningless: + *djgpp*) + lt_prog_compiler_pic_CXX= + ;; + *) + lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" + ;; +esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 +$as_echo_n "checking for $compiler option to produce PIC... " >&6; } +if ${lt_cv_prog_compiler_pic_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_CXX" >&6; } +lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$lt_prog_compiler_pic_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 +$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } +if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_pic_works_CXX=no + ac_outfile=conftest.$ac_objext + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_pic_works_CXX=yes + fi + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } + +if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then + case $lt_prog_compiler_pic_CXX in + "" | " "*) ;; + *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; + esac +else + lt_prog_compiler_pic_CXX= + lt_prog_compiler_can_build_shared_CXX=no +fi + +fi + + + + + +# +# Check to make sure the static flag actually works. +# +wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 +$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } +if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_static_works_CXX=no + save_LDFLAGS=$LDFLAGS + LDFLAGS="$LDFLAGS $lt_tmp_static_flag" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&5 + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + lt_cv_prog_compiler_static_works_CXX=yes + fi + else + lt_cv_prog_compiler_static_works_CXX=yes + fi + fi + $RM -r conftest* + LDFLAGS=$save_LDFLAGS + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } + +if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then + : +else + lt_prog_compiler_static_CXX= +fi + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 +$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } +if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_prog_compiler_c_o_CXX=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + lt_cv_prog_compiler_c_o_CXX=yes + fi + fi + chmod u+w . 2>&5 + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 +$as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } + + + + +hard_links=nottested +if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then + # do not overwrite the value of need_locks provided by the user + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 +$as_echo_n "checking if we can lock with hard links... " >&6; } + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 +$as_echo "$hard_links" >&6; } + if test no = "$hard_links"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 +$as_echo "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} + need_locks=warn + fi +else + need_locks=no +fi + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 +$as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } + + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' + case $host_os in + aix[4-9]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to GNU nm, but means don't demangle to AIX nm. + # Without the "-l" option, or with the "-B" option, AIX nm treats + # weak defined symbols like other global defined symbols, whereas + # GNU nm marks them as "W". + # While the 'weak' keyword is ignored in the Export File, we need + # it in the Import File for the 'aix-soname' feature, so we have + # to replace the "-B" option with "-P" for AIX nm. + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + else + export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + export_symbols_cmds_CXX=$ltdll_cmds + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' + exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + link_all_deplibs_CXX=no + ;; + *) + export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 +$as_echo "$ld_shlibs_CXX" >&6; } +test no = "$ld_shlibs_CXX" && can_build_shared=no + +with_gnu_ld_CXX=$with_gnu_ld + + + + + + +# +# Do we need to explicitly link libc? +# +case "x$archive_cmds_need_lc_CXX" in +x|xyes) + # Assume -lc should be added + archive_cmds_need_lc_CXX=yes + + if test yes,yes = "$GCC,$enable_shared"; then + case $archive_cmds_CXX in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 +$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } +if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : + $as_echo_n "(cached) " >&6 +else + $RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$lt_prog_compiler_wl_CXX + pic_flag=$lt_prog_compiler_pic_CXX + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$allow_undefined_flag_CXX + allow_undefined_flag_CXX= + if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 + (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + then + lt_cv_archive_cmds_need_lc_CXX=no + else + lt_cv_archive_cmds_need_lc_CXX=yes + fi + allow_undefined_flag_CXX=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 +$as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } + archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX + ;; + esac + fi + ;; +esac + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 +$as_echo_n "checking dynamic linker characteristics... " >&6; } + +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=.so +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + + + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='$libname$release$shared_ext$major' + ;; + +aix[4-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test ia64 = "$host_cpu"; then + # AIX 5 supports IA64 + library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line '#! .'. This would cause the generated library to + # depend on '.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[01] | aix4.[01].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # Using Import Files as archive members, it is possible to support + # filename-based versioning of shared library archives on AIX. While + # this would work for both with and without runtime linking, it will + # prevent static linking of such archives. So we do filename-based + # shared library versioning with .so extension only, which is used + # when both runtime linking and shared linking is enabled. + # Unfortunately, runtime linking may impact performance, so we do + # not want this to be the default eventually. Also, we use the + # versioned .so libs for executables only if there is the -brtl + # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. + # To allow for filename-based versioning support, we need to create + # libNAME.so.V as an archive file, containing: + # *) an Import File, referring to the versioned filename of the + # archive as well as the shared archive member, telling the + # bitwidth (32 or 64) of that shared object, and providing the + # list of exported symbols of that shared object, eventually + # decorated with the 'weak' keyword + # *) the shared object with the F_LOADONLY flag set, to really avoid + # it being seen by the linker. + # At run time we better use the real file rather than another symlink, + # but for link time we create the symlink libNAME.so -> libNAME.so.V + + case $with_aix_soname,$aix_use_runtimelinking in + # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + aix,yes) # traditional libtool + dynamic_linker='AIX unversionable lib.so' + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + aix,no) # traditional AIX only + dynamic_linker='AIX lib.a(lib.so.V)' + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + ;; + svr4,*) # full svr4 only + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,yes) # both, prefer svr4 + dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" + library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' + # unpreferred sharedlib libNAME.a needs extra handling + postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' + postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' + # We do not specify a path in Import Files, so LIBPATH fires. + shlibpath_overrides_runpath=yes + ;; + *,no) # both, prefer aix + dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" + library_names_spec='$libname$release.a $libname.a' + soname_spec='$libname$release$shared_ext$major' + # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling + postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' + postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' + ;; + esac + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='$libname$shared_ext' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[45]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' + library_names_spec='$libname.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec=$LIB + if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' + soname_spec='$libname$release$major$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[23].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[01]* | freebsdelf3.[01]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ + freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=no + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + if test 32 = "$HPUX_IA64_MODE"; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + sys_lib_dlsearch_path_spec=/usr/lib/hpux32 + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + sys_lib_dlsearch_path_spec=/usr/lib/hpux64 + fi + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[3-9]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test yes = "$lt_cv_prog_gnu_ld"; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" + sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +linux*android*) + version_type=none # Android doesn't support versioned libraries. + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext' + soname_spec='$libname$release$shared_ext' + finish_cmds= + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + dynamic_linker='Android linker' + # Don't embed -rpath directories since the linker doesn't support them. + hardcode_libdir_flag_spec_CXX='-L$libdir' + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + if ${lt_cv_shlibpath_overrides_runpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ + LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : + lt_cv_shlibpath_overrides_runpath=yes +fi +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + +fi + + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Ideally, we could use ldconfig to report *all* directores which are + # searched for libraries, however this is still not possible. Aside from not + # being certain /sbin/ldconfig is available, command + # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, + # even though it is searched at run-time. Try to do the best guess by + # appending ld.so.conf contents (and includes) to the search path. + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd* | bitrig*) + version_type=sunos + sys_lib_dlsearch_path_spec=/usr/lib + need_lib_prefix=no + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + need_version=no + else + need_version=yes + fi + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +os2*) + libname_spec='$name' + version_type=windows + shrext_cmds=.dll + need_version=no + need_lib_prefix=no + # OS/2 can only load a DLL with a base name of 8 characters or less. + soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; + v=$($ECHO $release$versuffix | tr -d .-); + n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); + $ECHO $n$v`$shared_ext' + library_names_spec='${libname}_dll.$libext' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=BEGINLIBPATH + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + postinstall_cmds='base_file=`basename \$file`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='$libname$release$shared_ext$major' + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test yes = "$with_gnu_ld"; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec; then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' + soname_spec='$libname$shared_ext.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=sco + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test yes = "$with_gnu_ld"; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='$libname$release$shared_ext$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 +$as_echo "$dynamic_linker" >&6; } +test no = "$dynamic_linker" && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test yes = "$GCC"; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then + sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec +fi + +if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then + sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec +fi + +# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... +configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec + +# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code +func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" + +# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool +configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 +$as_echo_n "checking how to hardcode library paths into programs... " >&6; } +hardcode_action_CXX= +if test -n "$hardcode_libdir_flag_spec_CXX" || + test -n "$runpath_var_CXX" || + test yes = "$hardcode_automatic_CXX"; then + + # We can hardcode non-existent directories. + if test no != "$hardcode_direct_CXX" && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && + test no != "$hardcode_minus_L_CXX"; then + # Linking always hardcodes the temporary library directory. + hardcode_action_CXX=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + hardcode_action_CXX=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + hardcode_action_CXX=unsupported +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 +$as_echo "$hardcode_action_CXX" >&6; } + +if test relink = "$hardcode_action_CXX" || + test yes = "$inherit_rpath_CXX"; then + # Fast installation is not supported + enable_fast_install=no +elif test yes = "$shlibpath_overrides_runpath" || + test no = "$enable_shared"; then + # Fast installation is not necessary + enable_fast_install=needless +fi + + + + + + + + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test yes != "$_lt_caught_CXX_error" + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the CLANG C compiler" >&5 +$as_echo_n "checking whether we are using the CLANG C compiler... " >&6; } +if ${xiph_cv_c_compiler_clang+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ + + #ifndef __clang__ + This is not clang! + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + xiph_cv_c_compiler_clang=yes +else + xiph_cv_c_compiler_clang=no + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xiph_cv_c_compiler_clang" >&5 +$as_echo "$xiph_cv_c_compiler_clang" >&6; } + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + + if test "x$ac_cv_c_compiler_gnu" = "xyes" ; then + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ + + #ifdef __clang__ + This is clang! + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_c_compiler_gnu=yes +else + ac_cv_c_compiler_gnu=no + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + + + +# Check whether --enable-largefile was given. +if test "${enable_largefile+set}" = set; then : + enableval=$enable_largefile; +fi + +if test "$enable_largefile" != no; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 +$as_echo_n "checking for special C compiler options needed for large files... " >&6; } +if ${ac_cv_sys_largefile_CC+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_sys_largefile_CC=no + if test "$GCC" != yes; then + ac_save_CC=$CC + while :; do + # IRIX 6.2 and later do not support large files by default, + # so use the C compiler's -n32 option if that helps. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF + if ac_fn_c_try_compile "$LINENO"; then : + break +fi +rm -f core conftest.err conftest.$ac_objext + CC="$CC -n32" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_largefile_CC=' -n32'; break +fi +rm -f core conftest.err conftest.$ac_objext + break + done + CC=$ac_save_CC + rm -f conftest.$ac_ext + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5 +$as_echo "$ac_cv_sys_largefile_CC" >&6; } + if test "$ac_cv_sys_largefile_CC" != no; then + CC=$CC$ac_cv_sys_largefile_CC + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 +$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } +if ${ac_cv_sys_file_offset_bits+:} false; then : + $as_echo_n "(cached) " >&6 +else + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=no; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#define _FILE_OFFSET_BITS 64 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_file_offset_bits=64; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_file_offset_bits=unknown + break +done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5 +$as_echo "$ac_cv_sys_file_offset_bits" >&6; } +case $ac_cv_sys_file_offset_bits in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits +_ACEOF +;; +esac +rm -rf conftest* + if test $ac_cv_sys_file_offset_bits = unknown; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 +$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } +if ${ac_cv_sys_large_files+:} false; then : + $as_echo_n "(cached) " >&6 +else + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=no; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#define _LARGE_FILES 1 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_sys_large_files=1; break +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_large_files=unknown + break +done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5 +$as_echo "$ac_cv_sys_large_files" >&6; } +case $ac_cv_sys_large_files in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _LARGE_FILES $ac_cv_sys_large_files +_ACEOF +;; +esac +rm -rf conftest* + fi + + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5 +$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; } +if ${ac_cv_sys_largefile_source+:} false; then : + $as_echo_n "(cached) " >&6 +else + while :; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include /* for off_t */ + #include +int +main () +{ +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_sys_largefile_source=no; break +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#define _LARGEFILE_SOURCE 1 +#include /* for off_t */ + #include +int +main () +{ +int (*fp) (FILE *, off_t, int) = fseeko; + return fseeko (stdin, 0, 0) && fp (stdin, 0, 0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_sys_largefile_source=1; break +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_cv_sys_largefile_source=unknown + break +done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_source" >&5 +$as_echo "$ac_cv_sys_largefile_source" >&6; } +case $ac_cv_sys_largefile_source in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _LARGEFILE_SOURCE $ac_cv_sys_largefile_source +_ACEOF +;; +esac +rm -rf conftest* + +# We used to try defining _XOPEN_SOURCE=500 too, to work around a bug +# in glibc 2.1.3, but that breaks too many other things. +# If you want fseeko and ftello with glibc, upgrade to a fixed glibc. +if test $ac_cv_sys_largefile_source != unknown; then + +$as_echo "#define HAVE_FSEEKO 1" >>confdefs.h + +fi + + +# The cast to long int works around a bug in the HP C Compiler +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. +# This bug is HP SR number 8606223364. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of off_t" >&5 +$as_echo_n "checking size of off_t... " >&6; } +if ${ac_cv_sizeof_off_t+:} false; then : + $as_echo_n "(cached) " >&6 +else + if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (off_t))" "ac_cv_sizeof_off_t" "$ac_includes_default"; then : + +else + if test "$ac_cv_type_off_t" = yes; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "cannot compute sizeof (off_t) +See \`config.log' for more details" "$LINENO" 5; } + else + ac_cv_sizeof_off_t=0 + fi +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_off_t" >&5 +$as_echo "$ac_cv_sizeof_off_t" >&6; } + + + +cat >>confdefs.h <<_ACEOF +#define SIZEOF_OFF_T $ac_cv_sizeof_off_t +_ACEOF + + # Fake default value. +# The cast to long int works around a bug in the HP C Compiler +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. +# This bug is HP SR number 8606223364. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void*" >&5 +$as_echo_n "checking size of void*... " >&6; } +if ${ac_cv_sizeof_voidp+:} false; then : + $as_echo_n "(cached) " >&6 +else + if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void*))" "ac_cv_sizeof_voidp" "$ac_includes_default"; then : + +else + if test "$ac_cv_type_voidp" = yes; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "cannot compute sizeof (void*) +See \`config.log' for more details" "$LINENO" 5; } + else + ac_cv_sizeof_voidp=0 + fi +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_voidp" >&5 +$as_echo "$ac_cv_sizeof_voidp" >&6; } + + + +cat >>confdefs.h <<_ACEOF +#define SIZEOF_VOIDP $ac_cv_sizeof_voidp +_ACEOF + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing lround" >&5 +$as_echo_n "checking for library containing lround... " >&6; } +if ${ac_cv_search_lround+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_func_search_save_LIBS=$LIBS +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char lround (); +int +main () +{ +return lround (); + ; + return 0; +} +_ACEOF +for ac_lib in '' m; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + if ac_fn_c_try_link "$LINENO"; then : + ac_cv_search_lround=$ac_res +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext + if ${ac_cv_search_lround+:} false; then : + break +fi +done +if ${ac_cv_search_lround+:} false; then : + +else + ac_cv_search_lround=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_lround" >&5 +$as_echo "$ac_cv_search_lround" >&6; } +ac_res=$ac_cv_search_lround +if test "$ac_res" != no; then : + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + +$as_echo "#define HAVE_LROUND 1" >>confdefs.h + +fi + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + +# c++ flavor first + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for variable-length arrays" >&5 +$as_echo_n "checking for variable-length arrays... " >&6; } +if ${ac_cv_c_vararrays+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +static int x; char a[++x]; a[sizeof a - 1] = 0; return a[0]; + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_c_vararrays=yes +else + ac_cv_c_vararrays=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_vararrays" >&5 +$as_echo "$ac_cv_c_vararrays" >&6; } + if test $ac_cv_c_vararrays = yes; then + +$as_echo "#define HAVE_C_VARARRAYS 1" >>confdefs.h + + fi + +if test $ac_cv_c_vararrays = yes; then + +$as_echo "#define HAVE_CXX_VARARRAYS 1" >>confdefs.h + +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +# c flavor +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if ${ac_cv_header_stdc+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "#define STDC_HEADERS 1" >>confdefs.h + +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 +$as_echo_n "checking for inline... " >&6; } +if ${ac_cv_c_inline+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_c_inline=no +for ac_kw in inline __inline__ __inline; do + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifndef __cplusplus +typedef int foo_t; +static $ac_kw foo_t static_foo () {return 0; } +$ac_kw foo_t foo () {return 0; } +#endif + +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_inline=$ac_kw +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test "$ac_cv_c_inline" != no && break +done + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 +$as_echo "$ac_cv_c_inline" >&6; } + +case $ac_cv_c_inline in + inline | yes) ;; + *) + case $ac_cv_c_inline in + no) ac_val=;; + *) ac_val=$ac_cv_c_inline;; + esac + cat >>confdefs.h <<_ACEOF +#ifndef __cplusplus +#define inline $ac_val +#endif +_ACEOF + ;; +esac + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for variable-length arrays" >&5 +$as_echo_n "checking for variable-length arrays... " >&6; } +if ${ac_cv_c_vararrays+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +static int x; char a[++x]; a[sizeof a - 1] = 0; return a[0]; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_vararrays=yes +else + ac_cv_c_vararrays=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_vararrays" >&5 +$as_echo "$ac_cv_c_vararrays" >&6; } + if test $ac_cv_c_vararrays = yes; then + +$as_echo "#define HAVE_C_VARARRAYS 1" >>confdefs.h + + fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for typeof syntax and keyword spelling" >&5 +$as_echo_n "checking for typeof syntax and keyword spelling... " >&6; } +if ${ac_cv_c_typeof+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_c_typeof=no + for ac_kw in typeof __typeof__ no; do + test $ac_kw = no && break + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + int value; + typedef struct { + char a [1 + + ! (($ac_kw (value)) + (($ac_kw (value)) 0 < ($ac_kw (value)) -1 + ? ($ac_kw (value)) - 1 + : ~ (~ ($ac_kw (value)) 0 + << sizeof ($ac_kw (value)))))]; } + ac__typeof_type_; + return + (! ((void) ((ac__typeof_type_ *) 0), 0)); + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_typeof=$ac_kw +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test $ac_cv_c_typeof != no && break + done +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_typeof" >&5 +$as_echo "$ac_cv_c_typeof" >&6; } + if test $ac_cv_c_typeof != no; then + +$as_echo "#define HAVE_TYPEOF 1" >>confdefs.h + + if test $ac_cv_c_typeof != typeof; then + +cat >>confdefs.h <<_ACEOF +#define typeof $ac_cv_c_typeof +_ACEOF + + fi + fi + + +for ac_header in stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : + cat >>confdefs.h <<_ACEOF +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for bswap32 intrinsic" >&5 +$as_echo_n "checking for bswap32 intrinsic... " >&6; } +if ${ac_cv_c_bswap32+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Initialize to no + ac_cv_c_bswap32=no + HAVE_BSWAP32=0 + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +return __builtin_bswap32 (0) ; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_c_bswap32=yes + HAVE_BSWAP32=1 + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +cat >>confdefs.h <<_ACEOF +#define HAVE_BSWAP32 ${HAVE_BSWAP32} +_ACEOF + + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bswap32" >&5 +$as_echo "$ac_cv_c_bswap32" >&6; } + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for bswap16 intrinsic" >&5 +$as_echo_n "checking for bswap16 intrinsic... " >&6; } +if ${ac_cv_c_bswap16+:} false; then : + $as_echo_n "(cached) " >&6 +else + # Initialize to no + ac_cv_c_bswap16=no + HAVE_BSWAP16=0 + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +return __builtin_bswap16 (0) ; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_c_bswap16=yes + HAVE_BSWAP16=1 + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +cat >>confdefs.h <<_ACEOF +#define HAVE_BSWAP16 ${HAVE_BSWAP16} +_ACEOF + + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bswap16" >&5 +$as_echo "$ac_cv_c_bswap16" >&6; } + + +ac_cv_c_big_endian=0 +ac_cv_c_little_endian=0 + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 +$as_echo_n "checking whether byte ordering is bigendian... " >&6; } +if ${ac_cv_c_bigendian+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_c_bigendian=unknown + # See if we're dealing with a universal compiler. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#ifndef __APPLE_CC__ + not a universal capable compiler + #endif + typedef int dummy; + +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + + # Check for potential -arch flags. It is not universal unless + # there are at least two -arch flags with different values. + ac_arch= + ac_prev= + for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do + if test -n "$ac_prev"; then + case $ac_word in + i?86 | x86_64 | ppc | ppc64) + if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then + ac_arch=$ac_word + else + ac_cv_c_bigendian=universal + break + fi + ;; + esac + ac_prev= + elif test "x$ac_word" = "x-arch"; then + ac_prev=arch + fi + done +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + if test $ac_cv_c_bigendian = unknown; then + # See if sys/param.h defines the BYTE_ORDER macro. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + #include + +int +main () +{ +#if ! (defined BYTE_ORDER && defined BIG_ENDIAN \ + && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \ + && LITTLE_ENDIAN) + bogus endian macros + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + # It does; now see whether it defined to BIG_ENDIAN or not. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + #include + +int +main () +{ +#if BYTE_ORDER != BIG_ENDIAN + not big endian + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_bigendian=yes +else + ac_cv_c_bigendian=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test $ac_cv_c_bigendian = unknown; then + # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +int +main () +{ +#if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) + bogus endian macros + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + # It does; now see whether it defined to _BIG_ENDIAN or not. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +int +main () +{ +#ifndef _BIG_ENDIAN + not big endian + #endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_bigendian=yes +else + ac_cv_c_bigendian=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + if test $ac_cv_c_bigendian = unknown; then + # Compile a test program. + if test "$cross_compiling" = yes; then : + # Try to guess by grepping values from an object file. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +short int ascii_mm[] = + { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; + short int ascii_ii[] = + { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; + int use_ascii (int i) { + return ascii_mm[i] + ascii_ii[i]; + } + short int ebcdic_ii[] = + { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; + short int ebcdic_mm[] = + { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; + int use_ebcdic (int i) { + return ebcdic_mm[i] + ebcdic_ii[i]; + } + extern int foo; + +int +main () +{ +return use_ascii (foo) == use_ebcdic (foo); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + if grep BIGenDianSyS conftest.$ac_objext >/dev/null; then + ac_cv_c_bigendian=yes + fi + if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then + if test "$ac_cv_c_bigendian" = unknown; then + ac_cv_c_bigendian=no + else + # finding both strings is unlikely to happen, but who knows? + ac_cv_c_bigendian=unknown + fi + fi +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* Are we little or big endian? From Harbison&Steele. */ + union + { + long int l; + char c[sizeof (long int)]; + } u; + u.l = 1; + return u.c[sizeof (long int) - 1] == 1; + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + ac_cv_c_bigendian=no +else + ac_cv_c_bigendian=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 +$as_echo "$ac_cv_c_bigendian" >&6; } + case $ac_cv_c_bigendian in #( + yes) + ac_cv_c_big_endian=1;; #( + no) + ac_cv_c_little_endian=1 ;; #( + universal) + +$as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h + + ;; #( + *) + + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *****************************************************************" >&5 +$as_echo "$as_me: WARNING: *****************************************************************" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Not able to determine endian-ness of target processor. " >&5 +$as_echo "$as_me: WARNING: *** Not able to determine endian-ness of target processor. " >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in " >&5 +$as_echo "$as_me: WARNING: *** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in " >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** config.h may need to be hand editied. " >&5 +$as_echo "$as_me: WARNING: *** config.h may need to be hand editied. " >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *****************************************************************" >&5 +$as_echo "$as_me: WARNING: *****************************************************************" >&2;} + ;; + esac + + +cat >>confdefs.h <<_ACEOF +#define CPU_IS_BIG_ENDIAN ${ac_cv_c_big_endian} +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define CPU_IS_LITTLE_ENDIAN ${ac_cv_c_little_endian} +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define WORDS_BIGENDIAN ${ac_cv_c_big_endian} +_ACEOF + + +# Check whether --enable-asm-optimizations was given. +if test "${enable_asm_optimizations+set}" = set; then : + enableval=$enable_asm_optimizations; asm_opt=no +else + asm_opt=yes +fi + + if test "x$asm_opt" = xno; then + FLaC__NO_ASM_TRUE= + FLaC__NO_ASM_FALSE='#' +else + FLaC__NO_ASM_TRUE='#' + FLaC__NO_ASM_FALSE= +fi + +if test "x$asm_opt" = xno ; then +$as_echo "#define FLAC__NO_ASM 1" >>confdefs.h + + +fi + +# For the XMMS plugin. +ac_fn_c_check_type "$LINENO" "socklen_t" "ac_cv_type_socklen_t" "$ac_includes_default" +if test "x$ac_cv_type_socklen_t" = xyes; then : + +cat >>confdefs.h <<_ACEOF +#define HAVE_SOCKLEN_T 1 +_ACEOF + + +fi + + +for ac_func in getopt_long +do : + ac_fn_c_check_func "$LINENO" "getopt_long" "ac_cv_func_getopt_long" +if test "x$ac_cv_func_getopt_long" = xyes; then : + cat >>confdefs.h <<_ACEOF +#define HAVE_GETOPT_LONG 1 +_ACEOF + +fi +done + + +# The cast to long int works around a bug in the HP C Compiler +# version HP92453-01 B.11.11.23709.GP, which incorrectly rejects +# declarations like `int a3[[(sizeof (unsigned char)) >= 0]];'. +# This bug is HP SR number 8606223364. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of void*" >&5 +$as_echo_n "checking size of void*... " >&6; } +if ${ac_cv_sizeof_voidp+:} false; then : + $as_echo_n "(cached) " >&6 +else + if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void*))" "ac_cv_sizeof_voidp" "$ac_includes_default"; then : + +else + if test "$ac_cv_type_voidp" = yes; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error 77 "cannot compute sizeof (void*) +See \`config.log' for more details" "$LINENO" 5; } + else + ac_cv_sizeof_voidp=0 + fi +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_voidp" >&5 +$as_echo "$ac_cv_sizeof_voidp" >&6; } + + + +cat >>confdefs.h <<_ACEOF +#define SIZEOF_VOIDP $ac_cv_sizeof_voidp +_ACEOF + + + +asm_optimisation=no +case "$host_cpu" in + amd64|x86_64) + case "$host" in + *gnux32) + # x32 user space and 64 bit kernel. + cpu_x86_64=true + $as_echo "#define FLAC__CPU_X86_64 1" >>confdefs.h + + + asm_optimisation=$asm_opt + ;; + *) + if test $ac_cv_sizeof_voidp = 4 ; then + # This must be a 32 bit user space running on 64 bit kernel so treat + # this as ia32. + cpu_ia32=true + $as_echo "#define FLAC__CPU_IA32 1" >>confdefs.h + + + else + # x86_64 user space and kernel. + cpu_x86_64=true + $as_echo "#define FLAC__CPU_X86_64 1" >>confdefs.h + + + fi + asm_optimisation=$asm_opt + ;; + esac + ;; + i*86) + cpu_ia32=true + $as_echo "#define FLAC__CPU_IA32 1" >>confdefs.h + + + asm_optimisation=$asm_opt + ;; + powerpc64|powerpc64le) + cpu_ppc64=true + cpu_ppc=true + $as_echo "#define FLAC__CPU_PPC 1" >>confdefs.h + + + $as_echo "#define FLAC__CPU_PPC64 1" >>confdefs.h + + + asm_optimisation=$asm_opt + ;; + powerpc|powerpcle) + cpu_ppc=true + $as_echo "#define FLAC__CPU_PPC 1" >>confdefs.h + + + asm_optimisation=$asm_opt + ;; + sparc) + cpu_sparc=true + $as_echo "#define FLAC__CPU_SPARC 1" >>confdefs.h + + + asm_optimisation=$asm_opt + ;; +esac + if test "x$cpu_x86_64" = xtrue; then + FLAC__CPU_X86_64_TRUE= + FLAC__CPU_X86_64_FALSE='#' +else + FLAC__CPU_X86_64_TRUE='#' + FLAC__CPU_X86_64_FALSE= +fi + + if test "x$cpu_ia32" = xtrue; then + FLaC__CPU_IA32_TRUE= + FLaC__CPU_IA32_FALSE='#' +else + FLaC__CPU_IA32_TRUE='#' + FLaC__CPU_IA32_FALSE= +fi + + if test "x$cpu_ppc" = xtrue; then + FLaC__CPU_PPC_TRUE= + FLaC__CPU_PPC_FALSE='#' +else + FLaC__CPU_PPC_TRUE='#' + FLaC__CPU_PPC_FALSE= +fi + + if test "x$cpu_ppc64" = xtrue; then + FLaC__CPU_PPC64_TRUE= + FLaC__CPU_PPC64_FALSE='#' +else + FLaC__CPU_PPC64_TRUE='#' + FLaC__CPU_PPC64_FALSE= +fi + + if test "x$cpu_sparc" = xtrue; then + FLaC__CPU_SPARC_TRUE= + FLaC__CPU_SPARC_FALSE='#' +else + FLaC__CPU_SPARC_TRUE='#' + FLaC__CPU_SPARC_FALSE= +fi + + +if test "x$ac_cv_header_x86intrin_h" = xyes; then + +$as_echo "#define FLAC__HAS_X86INTRIN 1" >>confdefs.h + +else +$as_echo "#define FLAC__HAS_X86INTRIN 0" >>confdefs.h + +fi + +if test x"$cpu_ppc64" = xtrue ; then + +as_CACHEVAR=`$as_echo "ax_cv_c_attribute_target("cpu=power8")" | $as_tr_sh` +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__ ((target(\"cpu=power8\")))" >&5 +$as_echo_n "checking for __attribute__ ((target(\"cpu=power8\")))... " >&6; } +if eval \${$as_CACHEVAR+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + void foo(void) __attribute__ ((target("cpu=power8"))); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$as_CACHEVAR=yes" +else + eval "$as_CACHEVAR=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$as_CACHEVAR + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +if eval test \"x\$"$as_CACHEVAR"\" = x"yes"; then : + have_cpu_power8=yes +else + have_cpu_power8=no +fi + +if test x"$have_cpu_power8" = xyes ; then + $as_echo "#define FLAC__HAS_TARGET_POWER8 1" >>confdefs.h + + +fi + +as_CACHEVAR=`$as_echo "ax_cv_c_attribute_target("cpu=power9")" | $as_tr_sh` +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__ ((target(\"cpu=power9\")))" >&5 +$as_echo_n "checking for __attribute__ ((target(\"cpu=power9\")))... " >&6; } +if eval \${$as_CACHEVAR+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + void foo(void) __attribute__ ((target("cpu=power9"))); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$as_CACHEVAR=yes" +else + eval "$as_CACHEVAR=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$as_CACHEVAR + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +if eval test \"x\$"$as_CACHEVAR"\" = x"yes"; then : + have_cpu_power9=yes +else + have_cpu_power9=no +fi + +if test x"$have_cpu_power9" = xyes ; then + $as_echo "#define FLAC__HAS_TARGET_POWER9 1" >>confdefs.h + + +fi + +fi + +case "$host" in + i386-*-openbsd3.[0-3]) OBJ_FORMAT=aoutb ;; + *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;; + *-*-darwin*) OBJ_FORMAT=macho ;; + *emx*) OBJ_FORMAT=aout ;; + *djgpp) OBJ_FORMAT=coff ;; + *) OBJ_FORMAT=elf ;; +esac + + +os_is_windows=no +case "$host" in + *mingw*) + CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS" + os_is_windows=yes + ;; +esac + + if test "x$os_is_windows" = xyes; then + OS_IS_WINDOWS_TRUE= + OS_IS_WINDOWS_FALSE='#' +else + OS_IS_WINDOWS_TRUE='#' + OS_IS_WINDOWS_FALSE= +fi + + +case "$host" in + *-linux-*) + sys_linux=true + $as_echo "#define FLAC__SYS_LINUX 1" >>confdefs.h + + + ;; + *-*-darwin*) + sys_darwin=true + $as_echo "#define FLAC__SYS_DARWIN 1" >>confdefs.h + + + ;; +esac + if test "x$sys_darwin" = xtrue; then + FLaC__SYS_DARWIN_TRUE= + FLaC__SYS_DARWIN_FALSE='#' +else + FLaC__SYS_DARWIN_TRUE='#' + FLaC__SYS_DARWIN_FALSE= +fi + + if test "x$sys_linux" = xtrue; then + FLaC__SYS_LINUX_TRUE= + FLaC__SYS_LINUX_FALSE='#' +else + FLaC__SYS_LINUX_TRUE='#' + FLaC__SYS_LINUX_FALSE= +fi + + +if test "x$cpu_ia32" = xtrue || test "x$cpu_x86_64" = xtrue ; then +$as_echo "#define FLAC__ALIGN_MALLOC_DATA 1" >>confdefs.h + + +fi + + if test "x${ax_enable_debug}" = "xyes" || test "x${ax_enable_debug}" = "xinfo"; then + DEBUG_TRUE= + DEBUG_FALSE='#' +else + DEBUG_TRUE='#' + DEBUG_FALSE= +fi + + +# Check whether --enable-sse was given. +if test "${enable_sse+set}" = set; then : + enableval=$enable_sse; case "${enableval}" in + yes) sse_os=yes ;; + no) sse_os=no ;; + *) as_fn_error $? "bad value ${enableval} for --enable-sse" "$LINENO" 5 ;; +esac +else + sse_os=yes +fi + + +# Check whether --enable-altivec was given. +if test "${enable_altivec+set}" = set; then : + enableval=$enable_altivec; case "${enableval}" in + yes) use_altivec=true ;; + no) use_altivec=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-altivec" "$LINENO" 5 ;; +esac +else + use_altivec=true +fi + + if test "x$use_altivec" = xtrue; then + FLaC__USE_ALTIVEC_TRUE= + FLaC__USE_ALTIVEC_FALSE='#' +else + FLaC__USE_ALTIVEC_TRUE='#' + FLaC__USE_ALTIVEC_FALSE= +fi + +if test "x$use_altivec" = xtrue ; then +$as_echo "#define FLAC__USE_ALTIVEC 1" >>confdefs.h + + +fi + +# Check whether --enable-vsx was given. +if test "${enable_vsx+set}" = set; then : + enableval=$enable_vsx; case "${enableval}" in + yes) use_vsx=true ;; + no) use_vsx=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-vsx" "$LINENO" 5 ;; +esac +else + use_vsx=true +fi + + if test "x$use_vsx" = xtrue; then + FLaC__USE_VSX_TRUE= + FLaC__USE_VSX_FALSE='#' +else + FLaC__USE_VSX_TRUE='#' + FLaC__USE_VSX_FALSE= +fi + +if test "x$use_vsx" = xtrue ; then +$as_echo "#define FLAC__USE_VSX 1" >>confdefs.h + + +fi + +# Check whether --enable-avx was given. +if test "${enable_avx+set}" = set; then : + enableval=$enable_avx; case "${enableval}" in + yes) use_avx=true ;; + no) use_avx=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-avx" "$LINENO" 5 ;; +esac +else + use_avx=true +fi + + if test "x$use_avx" = xtrue; then + FLaC__USE_AVX_TRUE= + FLaC__USE_AVX_FALSE='#' +else + FLaC__USE_AVX_TRUE='#' + FLaC__USE_AVX_FALSE= +fi + +if test "x$use_avx" = xtrue ; then +$as_echo "#define FLAC__USE_AVX 1" >>confdefs.h + + +fi + +# Check whether --enable-thorough-tests was given. +if test "${enable_thorough_tests+set}" = set; then : + enableval=$enable_thorough_tests; case "${enableval}" in + yes) thorough_tests=true ;; + no) thorough_tests=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-thorough-tests" "$LINENO" 5 ;; +esac +else + thorough_tests=true +fi + +# Check whether --enable-exhaustive-tests was given. +if test "${enable_exhaustive_tests+set}" = set; then : + enableval=$enable_exhaustive_tests; case "${enableval}" in + yes) exhaustive_tests=true ;; + no) exhaustive_tests=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-exhaustive-tests" "$LINENO" 5 ;; +esac +else + exhaustive_tests=false +fi + +if test "x$thorough_tests" = xfalse ; then +FLAC__TEST_LEVEL=0 +elif test "x$exhaustive_tests" = xfalse ; then +FLAC__TEST_LEVEL=1 +else +FLAC__TEST_LEVEL=2 +fi + + +# Check whether --enable-werror was given. +if test "${enable_werror+set}" = set; then : + enableval=$enable_werror; +fi + + +# Check whether --enable-stack-smash-protection was given. +if test "${enable_stack_smash_protection+set}" = set; then : + enableval=$enable_stack_smash_protection; +fi + + +# Check whether --enable-64-bit-words was given. +if test "${enable_64_bit_words+set}" = set; then : + enableval=$enable_64_bit_words; +fi + +if test "x$enable_64_bit_words" = xyes ; then + +cat >>confdefs.h <<_ACEOF +#define ENABLE_64_BIT_WORDS 1 +_ACEOF + +else + cat >>confdefs.h <<_ACEOF +#define ENABLE_64_BIT_WORDS 0 +_ACEOF + + fi + + +# Check whether --enable-valgrind-testing was given. +if test "${enable_valgrind_testing+set}" = set; then : + enableval=$enable_valgrind_testing; case "${enableval}" in + yes) FLAC__TEST_WITH_VALGRIND=yes ;; + no) FLAC__TEST_WITH_VALGRIND=no ;; + *) as_fn_error $? "bad value ${enableval} for --enable-valgrind-testing" "$LINENO" 5 ;; +esac +else + FLAC__TEST_WITH_VALGRIND=no +fi + + + +# Check whether --enable-doxygen-docs was given. +if test "${enable_doxygen_docs+set}" = set; then : + enableval=$enable_doxygen_docs; case "${enableval}" in + yes) enable_doxygen_docs=true ;; + no) enable_doxygen_docs=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-doxygen-docs" "$LINENO" 5 ;; +esac +else + enable_doxygen_docs=true +fi + +if test "x$enable_doxygen_docs" != xfalse ; then + for ac_prog in doxygen +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DOXYGEN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DOXYGEN"; then + ac_cv_prog_DOXYGEN="$DOXYGEN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DOXYGEN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DOXYGEN=$ac_cv_prog_DOXYGEN +if test -n "$DOXYGEN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOXYGEN" >&5 +$as_echo "$DOXYGEN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DOXYGEN" && break +done + +fi + if test -n "$DOXYGEN"; then + FLaC__HAS_DOXYGEN_TRUE= + FLaC__HAS_DOXYGEN_FALSE='#' +else + FLaC__HAS_DOXYGEN_TRUE='#' + FLaC__HAS_DOXYGEN_FALSE= +fi + + +# Check whether --enable-local-xmms-plugin was given. +if test "${enable_local_xmms_plugin+set}" = set; then : + enableval=$enable_local_xmms_plugin; case "${enableval}" in + yes) install_xmms_plugin_locally=true ;; + no) install_xmms_plugin_locally=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-local-xmms-plugin" "$LINENO" 5 ;; +esac +else + install_xmms_plugin_locally=false +fi + + if test "x$install_xmms_plugin_locally" = xtrue; then + FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_TRUE= + FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_FALSE='#' +else + FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_TRUE='#' + FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_FALSE= +fi + + +# Check whether --enable-xmms-plugin was given. +if test "${enable_xmms_plugin+set}" = set; then : + enableval=$enable_xmms_plugin; case "${enableval}" in + yes) enable_xmms_plugin=true ;; + no) enable_xmms_plugin=false ;; + *) as_fn_error $? "bad value ${enableval} for --enable-xmms-plugin" "$LINENO" 5 ;; +esac +else + enable_xmms_plugin=true +fi + +if test "x$enable_xmms_plugin" != xfalse ; then + + +# Check whether --with-xmms-prefix was given. +if test "${with_xmms_prefix+set}" = set; then : + withval=$with_xmms_prefix; xmms_config_prefix="$withval" +else + xmms_config_prefix="" +fi + + +# Check whether --with-xmms-exec-prefix was given. +if test "${with_xmms_exec_prefix+set}" = set; then : + withval=$with_xmms_exec_prefix; xmms_config_exec_prefix="$withval" +else + xmms_config_exec_prefix="" +fi + + +if test x$xmms_config_exec_prefix != x; then + xmms_config_args="$xmms_config_args --exec-prefix=$xmms_config_exec_prefix" + if test x${XMMS_CONFIG+set} != xset; then + XMMS_CONFIG=$xmms_config_exec_prefix/bin/xmms-config + fi +fi + +if test x$xmms_config_prefix != x; then + xmms_config_args="$xmms_config_args --prefix=$xmms_config_prefix" + if test x${XMMS_CONFIG+set} != xset; then + XMMS_CONFIG=$xmms_config_prefix/bin/xmms-config + fi +fi + +# Extract the first word of "xmms-config", so it can be a program name with args. +set dummy xmms-config; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_path_XMMS_CONFIG+:} false; then : + $as_echo_n "(cached) " >&6 +else + case $XMMS_CONFIG in + [\\/]* | ?:[\\/]*) + ac_cv_path_XMMS_CONFIG="$XMMS_CONFIG" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_path_XMMS_CONFIG="$as_dir/$ac_word$ac_exec_ext" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + + test -z "$ac_cv_path_XMMS_CONFIG" && ac_cv_path_XMMS_CONFIG="no" + ;; +esac +fi +XMMS_CONFIG=$ac_cv_path_XMMS_CONFIG +if test -n "$XMMS_CONFIG"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XMMS_CONFIG" >&5 +$as_echo "$XMMS_CONFIG" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +min_xmms_version=0.9.5.1 + +if test "$XMMS_CONFIG" = "no"; then + no_xmms=yes +else + XMMS_CFLAGS=`$XMMS_CONFIG $xmms_config_args --cflags` + XMMS_LIBS=`$XMMS_CONFIG $xmms_config_args --libs` + XMMS_VERSION=`$XMMS_CONFIG $xmms_config_args --version` + XMMS_DATA_DIR=`$XMMS_CONFIG $xmms_config_args --data-dir` + XMMS_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --plugin-dir` + XMMS_VISUALIZATION_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args \ + --visualization-plugin-dir` + XMMS_INPUT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --input-plugin-dir` + XMMS_OUTPUT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --output-plugin-dir` + XMMS_EFFECT_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --effect-plugin-dir` + XMMS_GENERAL_PLUGIN_DIR=`$XMMS_CONFIG $xmms_config_args --general-plugin-dir` + + + +# Determine which version number is greater. Prints 2 to stdout if +# the second number is greater, 1 if the first number is greater, +# 0 if the numbers are equal. + +# Written 15 December 1999 by Ben Gertzfield +# Revised 15 December 1999 by Jim Monty + + for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_AWK+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + + xmms_got_version=` $AWK ' \ +BEGIN { \ + print vercmp(ARGV[1], ARGV[2]); \ +} \ + \ +function vercmp(ver1, ver2, ver1arr, ver2arr, \ + ver1len, ver2len, \ + ver1int, ver2int, len, i, p) { \ + \ + ver1len = split(ver1, ver1arr, /\./); \ + ver2len = split(ver2, ver2arr, /\./); \ + \ + len = ver1len > ver2len ? ver1len : ver2len; \ + \ + for (i = 1; i <= len; i++) { \ + p = 1000 ^ (len - i); \ + ver1int += ver1arr[i] * p; \ + ver2int += ver2arr[i] * p; \ + } \ + \ + if (ver1int < ver2int) \ + return 2; \ + else if (ver1int > ver2int) \ + return 1; \ + else \ + return 0; \ +}' $XMMS_VERSION $min_xmms_version` + + if test $xmms_got_version -eq 2; then # failure + no_xmms=version + else # success! + : + fi + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XMMS - version >= $min_xmms_version" >&5 +$as_echo_n "checking for XMMS - version >= $min_xmms_version... " >&6; } + +if test "x$no_xmms" = x; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + : +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + + if test "$XMMS_CONFIG" = "no" ; then + echo "*** The xmms-config script installed by XMMS could not be found." + echo "*** If XMMS was installed in PREFIX, make sure PREFIX/bin is in" + echo "*** your path, or set the XMMS_CONFIG environment variable to the" + echo "*** full path to xmms-config." + else + if test "$no_xmms" = "version"; then + echo "*** An old version of XMMS, $XMMS_VERSION, was found." + echo "*** You need a version of XMMS newer than $min_xmms_version." + echo "*** The latest version of XMMS is always available from" + echo "*** http://www.xmms.org/" + echo "***" + + echo "*** If you have already installed a sufficiently new version, this error" + echo "*** probably means that the wrong copy of the xmms-config shell script is" + echo "*** being found. The easiest way to fix this is to remove the old version" + echo "*** of XMMS, but you can also set the XMMS_CONFIG environment to point to the" + echo "*** correct copy of xmms-config. (In this case, you will have to" + echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf" + echo "*** so that the correct libraries are found at run-time)" + fi + fi + XMMS_CFLAGS="" + XMMS_LIBS="" + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** XMMS >= 0.9.5.1 not installed - XMMS support will not be built" >&5 +$as_echo "$as_me: WARNING: *** XMMS >= 0.9.5.1 not installed - XMMS support will not be built" >&2;} +fi + + + + + + + + + + + +fi + if test -n "$XMMS_INPUT_PLUGIN_DIR"; then + FLaC__HAS_XMMS_TRUE= + FLaC__HAS_XMMS_FALSE='#' +else + FLaC__HAS_XMMS_TRUE='#' + FLaC__HAS_XMMS_FALSE= +fi + + +# Check whether --enable-cpplibs was given. +if test "${enable_cpplibs+set}" = set; then : + enableval=$enable_cpplibs; case "${enableval}" in + yes) disable_cpplibs=false ;; + no) disable_cpplibs=true ;; + *) as_fn_error $? "bad value ${enableval} for --enable-cpplibs" "$LINENO" 5 ;; +esac +else + disable_cpplibs=false +fi + + if test "x$disable_cpplibs" != xtrue; then + FLaC__WITH_CPPLIBS_TRUE= + FLaC__WITH_CPPLIBS_FALSE='#' +else + FLaC__WITH_CPPLIBS_TRUE='#' + FLaC__WITH_CPPLIBS_FALSE= +fi + + +# Check whether --enable-ogg was given. +if test "${enable_ogg+set}" = set; then : + enableval=$enable_ogg; want_ogg=$enableval +else + want_ogg=yes +fi + + +if test "x$want_ogg" != "xno"; then + +# Check whether --with-ogg was given. +if test "${with_ogg+set}" = set; then : + withval=$with_ogg; ogg_prefix="$withval" +else + ogg_prefix="" +fi + + +# Check whether --with-ogg-libraries was given. +if test "${with_ogg_libraries+set}" = set; then : + withval=$with_ogg_libraries; ogg_libraries="$withval" +else + ogg_libraries="" +fi + + +# Check whether --with-ogg-includes was given. +if test "${with_ogg_includes+set}" = set; then : + withval=$with_ogg_includes; ogg_includes="$withval" +else + ogg_includes="" +fi + +# Check whether --enable-oggtest was given. +if test "${enable_oggtest+set}" = set; then : + enableval=$enable_oggtest; +else + enable_oggtest=yes +fi + + + if test "x$ogg_libraries" != "x" ; then + OGG_LIBS="-L$ogg_libraries" + elif test "x$ogg_prefix" = "xno" || test "x$ogg_prefix" = "xyes" ; then + OGG_LIBS="" + elif test "x$ogg_prefix" != "x" ; then + OGG_LIBS="-L$ogg_prefix/lib" + elif test "x$prefix" != "xNONE" ; then + OGG_LIBS="-L$prefix/lib" + fi + + if test "x$ogg_prefix" != "xno" ; then + OGG_LIBS="$OGG_LIBS -logg" + fi + + if test "x$ogg_includes" != "x" ; then + OGG_CFLAGS="-I$ogg_includes" + elif test "x$ogg_prefix" = "xno" || test "x$ogg_prefix" = "xyes" ; then + OGG_CFLAGS="" + elif test "x$ogg_prefix" != "x" ; then + OGG_CFLAGS="-I$ogg_prefix/include" + elif test "x$prefix" != "xNONE"; then + OGG_CFLAGS="-I$prefix/include" + fi + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Ogg" >&5 +$as_echo_n "checking for Ogg... " >&6; } + if test "x$ogg_prefix" = "xno" ; then + no_ogg="disabled" + enable_oggtest="no" + else + no_ogg="" + fi + + + if test "x$enable_oggtest" = "xyes" ; then + ac_save_CFLAGS="$CFLAGS" + ac_save_LIBS="$LIBS" + CFLAGS="$CFLAGS $OGG_CFLAGS" + LIBS="$LIBS $OGG_LIBS" + rm -f conf.oggtest + if test "$cross_compiling" = yes; then : + echo $ac_n "cross compiling; assumed OK... $ac_c" +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include +#include +#include + +int main () +{ + system("touch conf.oggtest"); + return 0; +} + + +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + no_ogg=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + + if test "x$no_ogg" = "xdisabled" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Ogg development environment not installed - Ogg support will not be built" >&5 +$as_echo "$as_me: WARNING: *** Ogg development environment not installed - Ogg support will not be built" >&2;} + elif test "x$no_ogg" = "x" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + have_ogg=yes + else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + if test -f conf.oggtest ; then + : + else + echo "*** Could not run Ogg test program, checking why..." + CFLAGS="$CFLAGS $OGG_CFLAGS" + LIBS="$LIBS $OGG_LIBS" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include + +int +main () +{ + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + echo "*** The test program compiled, but did not run. This usually means" + echo "*** that the run-time linker is not finding Ogg or finding the wrong" + echo "*** version of Ogg. If it is not finding Ogg, you'll need to set your" + echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" + echo "*** to the installed location Also, make sure you have run ldconfig if that" + echo "*** is required on your system" + echo "***" + echo "*** If you have an old version installed, it is best to remove it, although" + echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" +else + echo "*** The test program failed to compile or link. See the file config.log for the" + echo "*** exact error that occurred. This usually means Ogg was incorrectly installed" + echo "*** or that you have moved Ogg since it was installed." +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + CFLAGS="$ac_save_CFLAGS" + LIBS="$ac_save_LIBS" + fi + OGG_CFLAGS="" + OGG_LIBS="" + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** Ogg development environment not installed - Ogg support will not be built" >&5 +$as_echo "$as_me: WARNING: *** Ogg development environment not installed - Ogg support will not be built" >&2;} + fi + + + rm -f conf.oggtest + +fi + +FLAC__HAS_OGG=0 + if test "x$have_ogg" = xyes; then + FLaC__HAS_OGG_TRUE= + FLaC__HAS_OGG_FALSE='#' +else + FLaC__HAS_OGG_TRUE='#' + FLaC__HAS_OGG_FALSE= +fi + +if test "x$have_ogg" = xyes ; then + FLAC__HAS_OGG=1 + OGG_PACKAGE="ogg" +else + have_ogg=no +fi + +cat >>confdefs.h <<_ACEOF +#define FLAC__HAS_OGG $FLAC__HAS_OGG +_ACEOF + + + + +# Check whether --enable-examples was given. +if test "${enable_examples+set}" = set; then : + enableval=$enable_examples; +fi + + if test "x$enable_examples" != "xno"; then + EXAMPLES_TRUE= + EXAMPLES_FALSE='#' +else + EXAMPLES_TRUE='#' + EXAMPLES_FALSE= +fi + + + + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then : + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which + # contains only /bin. Note that ksh looks also at the FPATH variable, + # so we have to set that as well for the test. + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ + || PATH_SEPARATOR=';' + } +fi + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 +$as_echo_n "checking for ld used by $CC... " >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | ?:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'` + while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 +$as_echo_n "checking for GNU ld... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 +$as_echo_n "checking for non-GNU ld... " >&6; } +fi +if ${acl_cv_path_LD+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$LD"; then + acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$acl_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$acl_cv_path_LD" -v 2>&1 &5 +$as_echo "$LD" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi +test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 +$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } +if ${acl_cv_prog_gnu_ld+:} false; then : + $as_echo_n "(cached) " >&6 +else + # I'd rather use --version here, but apparently some GNU lds only accept -v. +case `$LD -v 2>&1 &5 +$as_echo "$acl_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$acl_cv_prog_gnu_ld + + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 +$as_echo_n "checking for shared library run path origin... " >&6; } +if ${acl_cv_rpath+:} false; then : + $as_echo_n "(cached) " >&6 +else + + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 +$as_echo "$acl_cv_rpath" >&6; } + wl="$acl_cv_wl" + acl_libext="$acl_cv_libext" + acl_shlibext="$acl_cv_shlibext" + acl_libname_spec="$acl_cv_libname_spec" + acl_library_names_spec="$acl_cv_library_names_spec" + acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + acl_hardcode_direct="$acl_cv_hardcode_direct" + acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" + # Check whether --enable-rpath was given. +if test "${enable_rpath+set}" = set; then : + enableval=$enable_rpath; : +else + enable_rpath=yes +fi + + + + + acl_libdirstem=lib + acl_libdirstem2= + case "$host_os" in + solaris*) + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 +$as_echo_n "checking for 64-bit host... " >&6; } +if ${gl_cv_solaris_64bit+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#ifdef _LP64 +sixtyfour bits +#endif + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "sixtyfour bits" >/dev/null 2>&1; then : + gl_cv_solaris_64bit=yes +else + gl_cv_solaris_64bit=no +fi +rm -f conftest* + + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 +$as_echo "$gl_cv_solaris_64bit" >&6; } + if test $gl_cv_solaris_64bit = yes; then + acl_libdirstem=lib/64 + case "$host_cpu" in + sparc*) acl_libdirstem2=lib/sparcv9 ;; + i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; + esac + fi + ;; + *) + searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` + if test -n "$searchpath"; then + acl_save_IFS="${IFS= }"; IFS=":" + for searchdir in $searchpath; do + if test -d "$searchdir"; then + case "$searchdir" in + */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; + */../ | */.. ) + # Better ignore directories of this form. They are misleading. + ;; + *) searchdir=`cd "$searchdir" && pwd` + case "$searchdir" in + */lib64 ) acl_libdirstem=lib64 ;; + esac ;; + esac + fi + done + IFS="$acl_save_IFS" + fi + ;; + esac + test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" + + + + + + + + + + + + + use_additional=yes + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + +# Check whether --with-libiconv-prefix was given. +if test "${with_libiconv_prefix+set}" = set; then : + withval=$with_libiconv_prefix; + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + if test "$acl_libdirstem2" != "$acl_libdirstem" \ + && ! test -d "$withval/$acl_libdirstem"; then + additional_libdir="$withval/$acl_libdirstem2" + fi + fi + fi + +fi + + LIBICONV= + LTLIBICONV= + INCICONV= + LIBICONV_PREFIX= + HAVE_LIBICONV= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='iconv ' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" + else + : + fi + else + found_dir= + found_la= + found_so= + found_a= + eval libname=\"$acl_libname_spec\" # typically: libname=lib$name + if test -n "$acl_shlibext"; then + shrext=".$acl_shlibext" # typically: shrext=.so + else + shrext= + fi + if test $use_additional = yes; then + dir="$additional_libdir" + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$acl_shlibext"; then + if test -f "$dir/$libname$shrext"; then + found_dir="$dir" + found_so="$dir/$libname$shrext" + else + if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then + ver=`(cd "$dir" && \ + for f in "$libname$shrext".*; do echo "$f"; done \ + | sed -e "s,^$libname$shrext\\\\.,," \ + | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ + | sed 1q ) 2>/dev/null` + if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then + found_dir="$dir" + found_so="$dir/$libname$shrext.$ver" + fi + else + eval library_names=\"$acl_library_names_spec\" + for f in $library_names; do + if test -f "$dir/$f"; then + found_dir="$dir" + found_so="$dir/$f" + break + fi + done + fi + fi + fi + if test "X$found_dir" = "X"; then + if test -f "$dir/$libname.$acl_libext"; then + found_dir="$dir" + found_a="$dir/$libname.$acl_libext" + fi + fi + if test "X$found_dir" != "X"; then + if test -f "$dir/$libname.la"; then + found_la="$dir/$libname.la" + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + if test "$enable_rpath" = no \ + || test "X$found_dir" = "X/usr/$acl_libdirstem" \ + || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + if test "$acl_hardcode_direct" = yes; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" + fi + if test "$acl_hardcode_minus_L" != no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" + fi + fi + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + if test "$name" = 'iconv'; then + LIBICONV_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + */$acl_libdirstem2 | */$acl_libdirstem2/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` + if test "$name" = 'iconv'; then + LIBICONV_PREFIX="$basedir" + fi + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INCICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + if test -n "$found_la"; then + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ + && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ + || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" + ;; + esac + done + fi + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$acl_hardcode_libdir_separator"; then + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + else + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$acl_hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + for found_dir in $ltrpathdirs; do + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" + done + fi + + + + + + + + + + + + + am_save_CPPFLAGS="$CPPFLAGS" + + for element in $INCICONV; do + haveit= + for x in $CPPFLAGS; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" + fi + done + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 +$as_echo_n "checking for iconv... " >&6; } +if ${am_cv_func_iconv+:} false; then : + $as_echo_n "(cached) " >&6 +else + + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include + +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_func_iconv=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include + +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_lib_iconv=yes + am_cv_func_iconv=yes +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$am_save_LIBS" + fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 +$as_echo "$am_cv_func_iconv" >&6; } + if test "$am_cv_func_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working iconv" >&5 +$as_echo_n "checking for working iconv... " >&6; } +if ${am_cv_func_iconv_works+:} false; then : + $as_echo_n "(cached) " >&6 +else + + am_save_LIBS="$LIBS" + if test $am_cv_lib_iconv = yes; then + LIBS="$LIBS $LIBICONV" + fi + if test "$cross_compiling" = yes; then : + + case "$host_os" in + aix* | hpux*) am_cv_func_iconv_works="guessing no" ;; + *) am_cv_func_iconv_works="guessing yes" ;; + esac + +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include +int main () +{ + int result = 0; + /* Test against AIX 5.1 bug: Failures are not distinguishable from successful + returns. */ + { + iconv_t cd_utf8_to_88591 = iconv_open ("ISO8859-1", "UTF-8"); + if (cd_utf8_to_88591 != (iconv_t)(-1)) + { + static const char input[] = "\342\202\254"; /* EURO SIGN */ + char buf[10]; + const char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_utf8_to_88591, + (char **) &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 1; + iconv_close (cd_utf8_to_88591); + } + } + /* Test against Solaris 10 bug: Failures are not distinguishable from + successful returns. */ + { + iconv_t cd_ascii_to_88591 = iconv_open ("ISO8859-1", "646"); + if (cd_ascii_to_88591 != (iconv_t)(-1)) + { + static const char input[] = "\263"; + char buf[10]; + const char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_ascii_to_88591, + (char **) &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res == 0) + result |= 2; + iconv_close (cd_ascii_to_88591); + } + } + /* Test against AIX 6.1..7.1 bug: Buffer overrun. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("UTF-8", "ISO-8859-1"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static const char input[] = "\304"; + static char buf[2] = { (char)0xDE, (char)0xAD }; + const char *inptr = input; + size_t inbytesleft = 1; + char *outptr = buf; + size_t outbytesleft = 1; + size_t res = iconv (cd_88591_to_utf8, + (char **) &inptr, &inbytesleft, + &outptr, &outbytesleft); + if (res != (size_t)(-1) || outptr - buf > 1 || buf[1] != (char)0xAD) + result |= 4; + iconv_close (cd_88591_to_utf8); + } + } +#if 0 /* This bug could be worked around by the caller. */ + /* Test against HP-UX 11.11 bug: Positive return value instead of 0. */ + { + iconv_t cd_88591_to_utf8 = iconv_open ("utf8", "iso88591"); + if (cd_88591_to_utf8 != (iconv_t)(-1)) + { + static const char input[] = "\304rger mit b\366sen B\374bchen ohne Augenma\337"; + char buf[50]; + const char *inptr = input; + size_t inbytesleft = strlen (input); + char *outptr = buf; + size_t outbytesleft = sizeof (buf); + size_t res = iconv (cd_88591_to_utf8, + (char **) &inptr, &inbytesleft, + &outptr, &outbytesleft); + if ((int)res > 0) + result |= 8; + iconv_close (cd_88591_to_utf8); + } + } +#endif + /* Test against HP-UX 11.11 bug: No converter from EUC-JP to UTF-8 is + provided. */ + if (/* Try standardized names. */ + iconv_open ("UTF-8", "EUC-JP") == (iconv_t)(-1) + /* Try IRIX, OSF/1 names. */ + && iconv_open ("UTF-8", "eucJP") == (iconv_t)(-1) + /* Try AIX names. */ + && iconv_open ("UTF-8", "IBM-eucJP") == (iconv_t)(-1) + /* Try HP-UX names. */ + && iconv_open ("utf8", "eucJP") == (iconv_t)(-1)) + result |= 16; + return result; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + am_cv_func_iconv_works=yes +else + am_cv_func_iconv_works=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + + LIBS="$am_save_LIBS" + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv_works" >&5 +$as_echo "$am_cv_func_iconv_works" >&6; } + case "$am_cv_func_iconv_works" in + *no) am_func_iconv=no am_cv_lib_iconv=no ;; + *) am_func_iconv=yes ;; + esac + else + am_func_iconv=no am_cv_lib_iconv=no + fi + if test "$am_func_iconv" = yes; then + +$as_echo "#define HAVE_ICONV 1" >>confdefs.h + + fi + if test "$am_cv_lib_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 +$as_echo_n "checking how to link with libiconv... " >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 +$as_echo "$LIBICONV" >&6; } + else + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + + + + if test "$am_cv_func_iconv" = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 +$as_echo_n "checking for iconv declaration... " >&6; } + if ${am_cv_proto_iconv+:} false; then : + $as_echo_n "(cached) " >&6 +else + + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +#include +#include +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(_MSC_VER) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + am_cv_proto_iconv_arg1="" +else + am_cv_proto_iconv_arg1="const" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" +fi + + am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: + $am_cv_proto_iconv" >&5 +$as_echo " + $am_cv_proto_iconv" >&6; } + +cat >>confdefs.h <<_ACEOF +#define ICONV_CONST $am_cv_proto_iconv_arg1 +_ACEOF + + + fi + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 +$as_echo_n "checking for nl_langinfo and CODESET... " >&6; } +if ${am_cv_langinfo_codeset+:} false; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +char* cs = nl_langinfo(CODESET); return !cs; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + am_cv_langinfo_codeset=yes +else + am_cv_langinfo_codeset=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5 +$as_echo "$am_cv_langinfo_codeset" >&6; } + if test $am_cv_langinfo_codeset = yes; then + +$as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h + + fi + + +for ac_prog in docbook-to-man docbook2man +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_DOCBOOK_TO_MAN+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$DOCBOOK_TO_MAN"; then + ac_cv_prog_DOCBOOK_TO_MAN="$DOCBOOK_TO_MAN" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_DOCBOOK_TO_MAN="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +DOCBOOK_TO_MAN=$ac_cv_prog_DOCBOOK_TO_MAN +if test -n "$DOCBOOK_TO_MAN"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DOCBOOK_TO_MAN" >&5 +$as_echo "$DOCBOOK_TO_MAN" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$DOCBOOK_TO_MAN" && break +done + + if test -n "$DOCBOOK_TO_MAN"; then + FLaC__HAS_DOCBOOK_TO_MAN_TRUE= + FLaC__HAS_DOCBOOK_TO_MAN_FALSE='#' +else + FLaC__HAS_DOCBOOK_TO_MAN_TRUE='#' + FLaC__HAS_DOCBOOK_TO_MAN_FALSE= +fi + +if test -n "$DOCBOOK_TO_MAN" ; then +$as_echo "#define FLAC__HAS_DOCBOOK_TO_MAN 1" >>confdefs.h + + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5 +$as_echo_n "checking for clock_gettime in -lrt... " >&6; } +if ${ac_cv_lib_rt_clock_gettime+:} false; then : + $as_echo_n "(cached) " >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lrt $LIBS" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char clock_gettime (); +int +main () +{ +return clock_gettime (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + ac_cv_lib_rt_clock_gettime=yes +else + ac_cv_lib_rt_clock_gettime=no +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5 +$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; } +if test "x$ac_cv_lib_rt_clock_gettime" = xyes; then : + LIB_CLOCK_GETTIME=-lrt + $as_echo "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h + + +fi + + + +# only matters for x86 +for ac_prog in nasm +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if ${ac_cv_prog_NASM+:} false; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$NASM"; then + ac_cv_prog_NASM="$NASM" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then + ac_cv_prog_NASM="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +NASM=$ac_cv_prog_NASM +if test -n "$NASM"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NASM" >&5 +$as_echo "$NASM" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$NASM" && break +done + + if test -n "$NASM"; then + FLaC__HAS_NASM_TRUE= + FLaC__HAS_NASM_FALSE='#' +else + FLaC__HAS_NASM_TRUE='#' + FLaC__HAS_NASM_FALSE= +fi + +if test -n "$NASM" ; then +$as_echo "#define FLAC__HAS_NASM 1" >>confdefs.h + + +fi + +if test "x${ax_enable_debug}" = "xno" && test "x${enable_flags_setting}" = "xyes"; then : + + CFLAGS="-O3 -funroll-loops" + +fi + + +if test "x$ac_cv_c_compiler_gnu" = "xyes" ; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for version of $CC" >&5 +$as_echo_n "checking for version of $CC... " >&6; } + GCC_VERSION=`$CC -dumpversion` + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GCC_VERSION" >&5 +$as_echo "$GCC_VERSION" >&6; } + + GCC_MAJOR_VERSION=`echo $GCC_VERSION | cut -d. -f 1` + GCC_MINOR_VERSION=`echo $GCC_VERSION | cut -d. -f 2` + fi + + + + + + + +if test x$ac_cv_c_compiler_gnu = xyes ; then + CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Wconversion + CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Woverloaded-virtual -Wmissing-declarations + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -Wdeclaration-after-statement" >&5 +$as_echo_n "checking if $CC accepts -Wdeclaration-after-statement... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-Wdeclaration-after-statement" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -Wdeclaration-after-statement" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS" >&5 +$as_echo_n "checking whether to add -D_FORTIFY_SOURCE=2 to CPPFLAGS... " >&6; } + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + + int main() { + #ifndef _FORTIFY_SOURCE + return 0; + #else + this_is_an_error; + #endif + } + + +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2" + +else + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CXX accepts -Weffc++" >&5 +$as_echo_n "checking if $CXX accepts -Weffc++... " >&6; } + + ac_add_cxxflags__old_cxxflags="$CXXFLAGS" + CXXFLAGS="-Weffc++" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CXXFLAGS="$ac_add_cxxflags__old_cxxflags -Weffc++" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CXXFLAGS="$ac_add_cxxflags__old_cxxflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then + CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR" + CFLAGS="$CFLAGS -fvisibility=hidden" + CXXFLAGS="$CXXFLAGS -fvisibility=hidden" + fi + + if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = macho; then + CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR" + CFLAGS="$CFLAGS -fvisibility=hidden" + CXXFLAGS="$CXXFLAGS -fvisibility=hidden" + fi + + if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -fgnu89-inline" >&5 +$as_echo_n "checking if $CC accepts -fgnu89-inline... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-fgnu89-inline" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -fgnu89-inline" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + fi + + if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x47" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -fno-inline-small-functions" >&5 +$as_echo_n "checking if $CC accepts -fno-inline-small-functions... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-fno-inline-small-functions" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -fno-inline-small-functions" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + fi + + if test "x$asm_optimisation$sse_os" = "xyesyes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -msse2" >&5 +$as_echo_n "checking if $CC accepts -msse2... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-msse2" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -msse2" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + fi + + fi + +case "$host_os" in + "mingw32"|"os2") + if test "$host_cpu" = "i686"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -mstackrealign" >&5 +$as_echo_n "checking if $CC accepts -mstackrealign... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-mstackrealign" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -mstackrealign" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + fi + esac + +if test x$enable_werror = "xyes" ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC accepts -Werror" >&5 +$as_echo_n "checking if $CC accepts -Werror... " >&6; } + ac_add_cflags__old_cflags="$CFLAGS" + CFLAGS="-Werror" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$ac_add_cflags__old_cflags -Werror" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$ac_add_cflags__old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CXX accepts -Werror" >&5 +$as_echo_n "checking if $CXX accepts -Werror... " >&6; } + + ac_add_cxxflags__old_cxxflags="$CXXFLAGS" + CXXFLAGS="-Werror" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CXXFLAGS="$ac_add_cxxflags__old_cxxflags -Werror" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CXXFLAGS="$ac_add_cxxflags__old_cxxflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + fi + +if test x$enable_stack_smash_protection = "xyes" ; then + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports stack smash protection" >&5 +$as_echo_n "checking if $CC supports stack smash protection... " >&6; } + xiph_stack_check_old_cflags="$CFLAGS" + SSP_FLAGS="-fstack-protector --param ssp-buffer-size=4" + CFLAGS=$SSP_FLAGS + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$xiph_stack_check_old_cflags $SSP_FLAGS" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$xiph_stack_check_old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + + ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + + { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CXX supports stack smash protection" >&5 +$as_echo_n "checking if $CXX supports stack smash protection... " >&6; } + xiph_stack_check_old_cflags="$CFLAGS" + SSP_FLAGS="-fstack-protector --param ssp-buffer-size=4" + CFLAGS=$SSP_FLAGS + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + + #include + +int +main () +{ +puts("Hello, World!"); return 0; + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_link "$LINENO"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + CFLAGS="$xiph_stack_check_old_cflags $SSP_FLAGS" +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + CFLAGS="$xiph_stack_check_old_cflags" + +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + fi + +ac_config_files="$ac_config_files Makefile src/Makefile src/libFLAC/Makefile src/libFLAC/flac.pc src/libFLAC/ia32/Makefile src/libFLAC/include/Makefile src/libFLAC/include/private/Makefile src/libFLAC/include/protected/Makefile src/libFLAC++/Makefile src/libFLAC++/flac++.pc src/flac/Makefile src/metaflac/Makefile src/plugin_common/Makefile src/plugin_xmms/Makefile src/share/Makefile src/test_grabbag/Makefile src/test_grabbag/cuesheet/Makefile src/test_grabbag/picture/Makefile src/test_libs_common/Makefile src/test_libFLAC/Makefile src/test_libFLAC++/Makefile src/test_seeking/Makefile src/test_streams/Makefile src/utils/Makefile src/utils/flacdiff/Makefile src/utils/flactimer/Makefile examples/Makefile examples/c/Makefile examples/c/decode/Makefile examples/c/decode/file/Makefile examples/c/encode/Makefile examples/c/encode/file/Makefile examples/cpp/Makefile examples/cpp/decode/Makefile examples/cpp/decode/file/Makefile examples/cpp/encode/Makefile examples/cpp/encode/file/Makefile include/Makefile include/FLAC/Makefile include/FLAC++/Makefile include/share/Makefile include/share/grabbag/Makefile include/test_libs_common/Makefile doc/Doxyfile doc/Makefile doc/html/Makefile doc/html/images/Makefile m4/Makefile man/Makefile test/common.sh test/Makefile test/cuesheets/Makefile test/flac-to-flac-metadata-test-files/Makefile test/metaflac-test-files/Makefile test/pictures/Makefile build/Makefile objs/Makefile objs/debug/Makefile objs/debug/bin/Makefile objs/debug/lib/Makefile objs/release/Makefile objs/release/bin/Makefile objs/release/lib/Makefile microbench/Makefile" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + if test "x$cache_file" != "x/dev/null"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + if test ! -f "$cache_file" || test -h "$cache_file"; then + cat confcache >"$cache_file" + else + case $cache_file in #( + */* | ?:*) + mv -f confcache "$cache_file"$$ && + mv -f "$cache_file"$$ "$cache_file" ;; #( + *) + mv -f confcache "$cache_file" ;; + esac + fi + fi + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +U= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 +$as_echo_n "checking that generated files are newer than configure... " >&6; } + if test -n "$am_sleep_pid"; then + # Hide warnings about reused PIDs. + wait $am_sleep_pid 2>/dev/null + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 +$as_echo "done" >&6; } + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error $? "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCCAS_TRUE}" && test -z "${am__fastdepCCAS_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCCAS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +if test -z "${FLaC__NO_ASM_TRUE}" && test -z "${FLaC__NO_ASM_FALSE}"; then + as_fn_error $? "conditional \"FLaC__NO_ASM\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLAC__CPU_X86_64_TRUE}" && test -z "${FLAC__CPU_X86_64_FALSE}"; then + as_fn_error $? "conditional \"FLAC__CPU_X86_64\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__CPU_IA32_TRUE}" && test -z "${FLaC__CPU_IA32_FALSE}"; then + as_fn_error $? "conditional \"FLaC__CPU_IA32\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__CPU_PPC_TRUE}" && test -z "${FLaC__CPU_PPC_FALSE}"; then + as_fn_error $? "conditional \"FLaC__CPU_PPC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__CPU_PPC64_TRUE}" && test -z "${FLaC__CPU_PPC64_FALSE}"; then + as_fn_error $? "conditional \"FLaC__CPU_PPC64\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__CPU_SPARC_TRUE}" && test -z "${FLaC__CPU_SPARC_FALSE}"; then + as_fn_error $? "conditional \"FLaC__CPU_SPARC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${OS_IS_WINDOWS_TRUE}" && test -z "${OS_IS_WINDOWS_FALSE}"; then + as_fn_error $? "conditional \"OS_IS_WINDOWS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__SYS_DARWIN_TRUE}" && test -z "${FLaC__SYS_DARWIN_FALSE}"; then + as_fn_error $? "conditional \"FLaC__SYS_DARWIN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__SYS_LINUX_TRUE}" && test -z "${FLaC__SYS_LINUX_FALSE}"; then + as_fn_error $? "conditional \"FLaC__SYS_LINUX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${DEBUG_TRUE}" && test -z "${DEBUG_FALSE}"; then + as_fn_error $? "conditional \"DEBUG\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__USE_ALTIVEC_TRUE}" && test -z "${FLaC__USE_ALTIVEC_FALSE}"; then + as_fn_error $? "conditional \"FLaC__USE_ALTIVEC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__USE_VSX_TRUE}" && test -z "${FLaC__USE_VSX_FALSE}"; then + as_fn_error $? "conditional \"FLaC__USE_VSX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__USE_AVX_TRUE}" && test -z "${FLaC__USE_AVX_FALSE}"; then + as_fn_error $? "conditional \"FLaC__USE_AVX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__HAS_DOXYGEN_TRUE}" && test -z "${FLaC__HAS_DOXYGEN_FALSE}"; then + as_fn_error $? "conditional \"FLaC__HAS_DOXYGEN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_TRUE}" && test -z "${FLaC__INSTALL_XMMS_PLUGIN_LOCALLY_FALSE}"; then + as_fn_error $? "conditional \"FLaC__INSTALL_XMMS_PLUGIN_LOCALLY\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__HAS_XMMS_TRUE}" && test -z "${FLaC__HAS_XMMS_FALSE}"; then + as_fn_error $? "conditional \"FLaC__HAS_XMMS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__WITH_CPPLIBS_TRUE}" && test -z "${FLaC__WITH_CPPLIBS_FALSE}"; then + as_fn_error $? "conditional \"FLaC__WITH_CPPLIBS\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__HAS_OGG_TRUE}" && test -z "${FLaC__HAS_OGG_FALSE}"; then + as_fn_error $? "conditional \"FLaC__HAS_OGG\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${EXAMPLES_TRUE}" && test -z "${EXAMPLES_FALSE}"; then + as_fn_error $? "conditional \"EXAMPLES\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__HAS_DOCBOOK_TO_MAN_TRUE}" && test -z "${FLaC__HAS_DOCBOOK_TO_MAN_FALSE}"; then + as_fn_error $? "conditional \"FLaC__HAS_DOCBOOK_TO_MAN\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${FLaC__HAS_NASM_TRUE}" && test -z "${FLaC__HAS_NASM_FALSE}"; then + as_fn_error $? "conditional \"FLaC__HAS_NASM\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: "${CONFIG_STATUS=./config.status}" +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +as_myself= +case $0 in #(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error STATUS ERROR [LINENO LOG_FD] +# ---------------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with STATUS, using 1 if that was 0. +as_fn_error () +{ + as_status=$1; test $as_status -eq 0 && as_status=1 + if test "$4"; then + as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 + fi + $as_echo "$as_me: error: $2" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in #((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -pR'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -pR' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -pR' + fi +else + as_ln_s='cp -pR' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + + +# as_fn_executable_p FILE +# ----------------------- +# Test if FILE is an executable regular file. +as_fn_executable_p () +{ + test -f "$1" && test -x "$1" +} # as_fn_executable_p +as_test_x='test -x' +as_executable_p=as_fn_executable_p + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by flac $as_me 1.3.3, which was +generated by GNU Autoconf 2.69. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to . +flac home page: ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +flac config.status 1.3.3 +configured by $0, generated by GNU Autoconf 2.69, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2012 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=?*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + --*=) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg= + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + '') as_fn_error $? "missing file argument" ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error $? "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error $? "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" + + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' +macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' +AS='`$ECHO "$AS" | $SED "$delay_single_quote_subst"`' +DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' +OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' +enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' +pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' +enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' +enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' +shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' +SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' +ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' +PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' +host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' +host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' +host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' +build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' +build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' +build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' +SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' +Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' +GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' +EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' +FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' +LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' +NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' +LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' +max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' +ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' +exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' +lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' +lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' +lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' +lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' +lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' +reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' +reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' +deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' +file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' +file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' +want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' +sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' +AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' +AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' +archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' +STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' +RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' +old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' +old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' +lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' +CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' +CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' +compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' +GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' +lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' +nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' +lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' +lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' +objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' +MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' +need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' +MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' +DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' +NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' +LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' +OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' +OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' +libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' +shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' +extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' +compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' +archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' +module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' +with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' +no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' +hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' +hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' +inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' +link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' +always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' +exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' +include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' +prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' +postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' +file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' +variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' +need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' +need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' +version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' +runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' +shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' +libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' +library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' +soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' +install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' +postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' +postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' +finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' +finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' +hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' +sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' +configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' +configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' +hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' +enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' +enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' +old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' +striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' +predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' +postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' +predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' +postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' +LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' +reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' +reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' +GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' +lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' +lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' +enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' +export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' +old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' +archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' +module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' +with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' +allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' +inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' +link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' +always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' +export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' +exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' +prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' +file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' +hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' +predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' +postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' +predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' +postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' +compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' + +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in AS \ +DLLTOOL \ +OBJDUMP \ +SHELL \ +ECHO \ +PATH_SEPARATOR \ +SED \ +GREP \ +EGREP \ +FGREP \ +LD \ +NM \ +LN_S \ +lt_SP2NL \ +lt_NL2SP \ +reload_flag \ +deplibs_check_method \ +file_magic_cmd \ +file_magic_glob \ +want_nocaseglob \ +sharedlib_from_linklib_cmd \ +AR \ +AR_FLAGS \ +archiver_list_spec \ +STRIP \ +RANLIB \ +CC \ +CFLAGS \ +compiler \ +lt_cv_sys_global_symbol_pipe \ +lt_cv_sys_global_symbol_to_cdecl \ +lt_cv_sys_global_symbol_to_import \ +lt_cv_sys_global_symbol_to_c_name_address \ +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ +lt_cv_nm_interface \ +nm_file_list_spec \ +lt_cv_truncate_bin \ +lt_prog_compiler_no_builtin_flag \ +lt_prog_compiler_pic \ +lt_prog_compiler_wl \ +lt_prog_compiler_static \ +lt_cv_prog_compiler_c_o \ +need_locks \ +MANIFEST_TOOL \ +DSYMUTIL \ +NMEDIT \ +LIPO \ +OTOOL \ +OTOOL64 \ +shrext_cmds \ +export_dynamic_flag_spec \ +whole_archive_flag_spec \ +compiler_needs_object \ +with_gnu_ld \ +allow_undefined_flag \ +no_undefined_flag \ +hardcode_libdir_flag_spec \ +hardcode_libdir_separator \ +exclude_expsyms \ +include_expsyms \ +file_list_spec \ +variables_saved_for_relink \ +libname_spec \ +library_names_spec \ +soname_spec \ +install_override_mode \ +finish_eval \ +old_striplib \ +striplib \ +compiler_lib_search_dirs \ +predep_objects \ +postdep_objects \ +predeps \ +postdeps \ +compiler_lib_search_path \ +LD_CXX \ +reload_flag_CXX \ +compiler_CXX \ +lt_prog_compiler_no_builtin_flag_CXX \ +lt_prog_compiler_pic_CXX \ +lt_prog_compiler_wl_CXX \ +lt_prog_compiler_static_CXX \ +lt_cv_prog_compiler_c_o_CXX \ +export_dynamic_flag_spec_CXX \ +whole_archive_flag_spec_CXX \ +compiler_needs_object_CXX \ +with_gnu_ld_CXX \ +allow_undefined_flag_CXX \ +no_undefined_flag_CXX \ +hardcode_libdir_flag_spec_CXX \ +hardcode_libdir_separator_CXX \ +exclude_expsyms_CXX \ +include_expsyms_CXX \ +file_list_spec_CXX \ +compiler_lib_search_dirs_CXX \ +predep_objects_CXX \ +postdep_objects_CXX \ +predeps_CXX \ +postdeps_CXX \ +compiler_lib_search_path_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in reload_cmds \ +old_postinstall_cmds \ +old_postuninstall_cmds \ +old_archive_cmds \ +extract_expsyms_cmds \ +old_archive_from_new_cmds \ +old_archive_from_expsyms_cmds \ +archive_cmds \ +archive_expsym_cmds \ +module_cmds \ +module_expsym_cmds \ +export_symbols_cmds \ +prelink_cmds \ +postlink_cmds \ +postinstall_cmds \ +postuninstall_cmds \ +finish_cmds \ +sys_lib_search_path_spec \ +configure_time_dlsearch_path \ +configure_time_lt_sys_library_path \ +reload_cmds_CXX \ +old_archive_cmds_CXX \ +old_archive_from_new_cmds_CXX \ +old_archive_from_expsyms_cmds_CXX \ +archive_cmds_CXX \ +archive_expsym_cmds_CXX \ +module_cmds_CXX \ +module_expsym_cmds_CXX \ +export_symbols_cmds_CXX \ +prelink_cmds_CXX \ +postlink_cmds_CXX; do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[\\\\\\\`\\"\\\$]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +ac_aux_dir='$ac_aux_dir' + +# See if we are running on zsh, and set the options that allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST +fi + + + PACKAGE='$PACKAGE' + VERSION='$VERSION' + RM='$RM' + ofile='$ofile' + + + + + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "src/libFLAC/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC/Makefile" ;; + "src/libFLAC/flac.pc") CONFIG_FILES="$CONFIG_FILES src/libFLAC/flac.pc" ;; + "src/libFLAC/ia32/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC/ia32/Makefile" ;; + "src/libFLAC/include/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC/include/Makefile" ;; + "src/libFLAC/include/private/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC/include/private/Makefile" ;; + "src/libFLAC/include/protected/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC/include/protected/Makefile" ;; + "src/libFLAC++/Makefile") CONFIG_FILES="$CONFIG_FILES src/libFLAC++/Makefile" ;; + "src/libFLAC++/flac++.pc") CONFIG_FILES="$CONFIG_FILES src/libFLAC++/flac++.pc" ;; + "src/flac/Makefile") CONFIG_FILES="$CONFIG_FILES src/flac/Makefile" ;; + "src/metaflac/Makefile") CONFIG_FILES="$CONFIG_FILES src/metaflac/Makefile" ;; + "src/plugin_common/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugin_common/Makefile" ;; + "src/plugin_xmms/Makefile") CONFIG_FILES="$CONFIG_FILES src/plugin_xmms/Makefile" ;; + "src/share/Makefile") CONFIG_FILES="$CONFIG_FILES src/share/Makefile" ;; + "src/test_grabbag/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_grabbag/Makefile" ;; + "src/test_grabbag/cuesheet/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_grabbag/cuesheet/Makefile" ;; + "src/test_grabbag/picture/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_grabbag/picture/Makefile" ;; + "src/test_libs_common/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_libs_common/Makefile" ;; + "src/test_libFLAC/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_libFLAC/Makefile" ;; + "src/test_libFLAC++/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_libFLAC++/Makefile" ;; + "src/test_seeking/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_seeking/Makefile" ;; + "src/test_streams/Makefile") CONFIG_FILES="$CONFIG_FILES src/test_streams/Makefile" ;; + "src/utils/Makefile") CONFIG_FILES="$CONFIG_FILES src/utils/Makefile" ;; + "src/utils/flacdiff/Makefile") CONFIG_FILES="$CONFIG_FILES src/utils/flacdiff/Makefile" ;; + "src/utils/flactimer/Makefile") CONFIG_FILES="$CONFIG_FILES src/utils/flactimer/Makefile" ;; + "examples/Makefile") CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; + "examples/c/Makefile") CONFIG_FILES="$CONFIG_FILES examples/c/Makefile" ;; + "examples/c/decode/Makefile") CONFIG_FILES="$CONFIG_FILES examples/c/decode/Makefile" ;; + "examples/c/decode/file/Makefile") CONFIG_FILES="$CONFIG_FILES examples/c/decode/file/Makefile" ;; + "examples/c/encode/Makefile") CONFIG_FILES="$CONFIG_FILES examples/c/encode/Makefile" ;; + "examples/c/encode/file/Makefile") CONFIG_FILES="$CONFIG_FILES examples/c/encode/file/Makefile" ;; + "examples/cpp/Makefile") CONFIG_FILES="$CONFIG_FILES examples/cpp/Makefile" ;; + "examples/cpp/decode/Makefile") CONFIG_FILES="$CONFIG_FILES examples/cpp/decode/Makefile" ;; + "examples/cpp/decode/file/Makefile") CONFIG_FILES="$CONFIG_FILES examples/cpp/decode/file/Makefile" ;; + "examples/cpp/encode/Makefile") CONFIG_FILES="$CONFIG_FILES examples/cpp/encode/Makefile" ;; + "examples/cpp/encode/file/Makefile") CONFIG_FILES="$CONFIG_FILES examples/cpp/encode/file/Makefile" ;; + "include/Makefile") CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; + "include/FLAC/Makefile") CONFIG_FILES="$CONFIG_FILES include/FLAC/Makefile" ;; + "include/FLAC++/Makefile") CONFIG_FILES="$CONFIG_FILES include/FLAC++/Makefile" ;; + "include/share/Makefile") CONFIG_FILES="$CONFIG_FILES include/share/Makefile" ;; + "include/share/grabbag/Makefile") CONFIG_FILES="$CONFIG_FILES include/share/grabbag/Makefile" ;; + "include/test_libs_common/Makefile") CONFIG_FILES="$CONFIG_FILES include/test_libs_common/Makefile" ;; + "doc/Doxyfile") CONFIG_FILES="$CONFIG_FILES doc/Doxyfile" ;; + "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; + "doc/html/Makefile") CONFIG_FILES="$CONFIG_FILES doc/html/Makefile" ;; + "doc/html/images/Makefile") CONFIG_FILES="$CONFIG_FILES doc/html/images/Makefile" ;; + "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; + "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; + "test/common.sh") CONFIG_FILES="$CONFIG_FILES test/common.sh" ;; + "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; + "test/cuesheets/Makefile") CONFIG_FILES="$CONFIG_FILES test/cuesheets/Makefile" ;; + "test/flac-to-flac-metadata-test-files/Makefile") CONFIG_FILES="$CONFIG_FILES test/flac-to-flac-metadata-test-files/Makefile" ;; + "test/metaflac-test-files/Makefile") CONFIG_FILES="$CONFIG_FILES test/metaflac-test-files/Makefile" ;; + "test/pictures/Makefile") CONFIG_FILES="$CONFIG_FILES test/pictures/Makefile" ;; + "build/Makefile") CONFIG_FILES="$CONFIG_FILES build/Makefile" ;; + "objs/Makefile") CONFIG_FILES="$CONFIG_FILES objs/Makefile" ;; + "objs/debug/Makefile") CONFIG_FILES="$CONFIG_FILES objs/debug/Makefile" ;; + "objs/debug/bin/Makefile") CONFIG_FILES="$CONFIG_FILES objs/debug/bin/Makefile" ;; + "objs/debug/lib/Makefile") CONFIG_FILES="$CONFIG_FILES objs/debug/lib/Makefile" ;; + "objs/release/Makefile") CONFIG_FILES="$CONFIG_FILES objs/release/Makefile" ;; + "objs/release/bin/Makefile") CONFIG_FILES="$CONFIG_FILES objs/release/bin/Makefile" ;; + "objs/release/lib/Makefile") CONFIG_FILES="$CONFIG_FILES objs/release/lib/Makefile" ;; + "microbench/Makefile") CONFIG_FILES="$CONFIG_FILES microbench/Makefile" ;; + + *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= ac_tmp= + trap 'exit_status=$? + : "${ac_tmp:=$tmp}" + { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 +ac_tmp=$tmp + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$ac_tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ + || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove sole $(srcdir), +# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ +h +s/// +s/^/:/ +s/[ ]*$/:/ +s/:\$(srcdir):/:/g +s/:\${srcdir}:/:/g +s/:@srcdir@:/:/g +s/^:*// +s/:*$// +x +s/\(=[ ]*\).*/\1/ +G +s/\n// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$ac_tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_tt=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_tt"; then + break + elif $ac_last_try; then + as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$ac_tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$ac_tmp/stdin" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ + >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ + "$ac_tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined" >&2;} + + rm -f "$ac_tmp/stdin" + case $ac_file in + -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; + *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; + esac \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" + } >"$ac_tmp/config.h" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$ac_tmp/config.h" "$ac_file" \ + || as_fn_error $? "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error $? "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Older Autoconf quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + # TODO: see whether this extra hack can be removed once we start + # requiring Autoconf 2.70 or later. + case $CONFIG_FILES in #( + *\'*) : + eval set x "$CONFIG_FILES" ;; #( + *) : + set x $CONFIG_FILES ;; #( + *) : + ;; +esac + shift + # Used to flag and report bootstrapping failures. + am_rc=0 + for am_mf + do + # Strip MF so we end up with the name of the file. + am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile which includes + # dependency-tracking related rules and includes. + # Grep'ing the whole file directly is not great: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ + || continue + am_dirpart=`$as_dirname -- "$am_mf" || +$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$am_mf" : 'X\(//\)[^/]' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$am_mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + am_filepart=`$as_basename -- "$am_mf" || +$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ + X"$am_mf" : 'X\(//\)$' \| \ + X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$am_mf" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { echo "$as_me:$LINENO: cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles" >&5 + (cd "$am_dirpart" \ + && sed -e '/# am--include-marker/d' "$am_filepart" \ + | $MAKE -f - am--depfiles) >&5 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } || am_rc=$? + done + if test $am_rc -ne 0; then + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error $? "Something went wrong bootstrapping makefile fragments + for automatic dependency tracking. Try re-running configure with the + '--disable-dependency-tracking' option to at least be able to build + the package (albeit without support for automatic dependency tracking). +See \`config.log' for more details" "$LINENO" 5; } + fi + { am_dirpart=; unset am_dirpart;} + { am_filepart=; unset am_filepart;} + { am_mf=; unset am_mf;} + { am_rc=; unset am_rc;} + rm -f conftest-deps.mk +} + ;; + "libtool":C) + + # See if we are running on zsh, and set the options that allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}"; then + setopt NO_GLOB_SUBST + fi + + cfgfile=${ofile}T + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL +# Generated automatically by $as_me ($PACKAGE) $VERSION +# NOTE: Changes made to this file will be lost: look at ltmain.sh. + +# Provide generalized library-building support services. +# Written by Gordon Matzigkeit, 1996 + +# Copyright (C) 2014 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of of the License, or +# (at your option) any later version. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program or library that is built +# using GNU Libtool, you may include this file under the same +# distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + + +# The names of the tagged configurations supported by this script. +available_tags='CXX ' + +# Configured defaults for sys_lib_dlsearch_path munging. +: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} + +# ### BEGIN LIBTOOL CONFIG + +# Which release of libtool.m4 was used? +macro_version=$macro_version +macro_revision=$macro_revision + +# Assembler program. +AS=$lt_AS + +# DLL creation program. +DLLTOOL=$lt_DLLTOOL + +# Object dumper program. +OBJDUMP=$lt_OBJDUMP + +# Whether or not to build static libraries. +build_old_libs=$enable_static + +# What type of objects to build. +pic_mode=$pic_mode + +# Whether or not to build shared libraries. +build_libtool_libs=$enable_shared + +# Whether or not to optimize for fast installation. +fast_install=$enable_fast_install + +# Shared archive member basename,for filename based shared library versioning on AIX. +shared_archive_member_spec=$shared_archive_member_spec + +# Shell to use when invoking shell scripts. +SHELL=$lt_SHELL + +# An echo program that protects backslashes. +ECHO=$lt_ECHO + +# The PATH separator for the build system. +PATH_SEPARATOR=$lt_PATH_SEPARATOR + +# The host system. +host_alias=$host_alias +host=$host +host_os=$host_os + +# The build system. +build_alias=$build_alias +build=$build +build_os=$build_os + +# A sed program that does not truncate output. +SED=$lt_SED + +# Sed that helps us avoid accidentally triggering echo(1) options like -n. +Xsed="\$SED -e 1s/^X//" + +# A grep program that handles long lines. +GREP=$lt_GREP + +# An ERE matcher. +EGREP=$lt_EGREP + +# A literal string matcher. +FGREP=$lt_FGREP + +# A BSD- or MS-compatible name lister. +NM=$lt_NM + +# Whether we need soft or hard links. +LN_S=$lt_LN_S + +# What is the maximum length of a command? +max_cmd_len=$max_cmd_len + +# Object file suffix (normally "o"). +objext=$ac_objext + +# Executable file suffix (normally ""). +exeext=$exeext + +# whether the shell understands "unset". +lt_unset=$lt_unset + +# turn spaces into newlines. +SP2NL=$lt_lt_SP2NL + +# turn newlines into spaces. +NL2SP=$lt_lt_NL2SP + +# convert \$build file names to \$host format. +to_host_file_cmd=$lt_cv_to_host_file_cmd + +# convert \$build files to toolchain format. +to_tool_file_cmd=$lt_cv_to_tool_file_cmd + +# Method to check whether dependent libraries are shared objects. +deplibs_check_method=$lt_deplibs_check_method + +# Command to use when deplibs_check_method = "file_magic". +file_magic_cmd=$lt_file_magic_cmd + +# How to find potential files when deplibs_check_method = "file_magic". +file_magic_glob=$lt_file_magic_glob + +# Find potential files using nocaseglob when deplibs_check_method = "file_magic". +want_nocaseglob=$lt_want_nocaseglob + +# Command to associate shared and link libraries. +sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd + +# The archiver. +AR=$lt_AR + +# Flags to create an archive. +AR_FLAGS=$lt_AR_FLAGS + +# How to feed a file listing to the archiver. +archiver_list_spec=$lt_archiver_list_spec + +# A symbol stripping program. +STRIP=$lt_STRIP + +# Commands used to install an old-style archive. +RANLIB=$lt_RANLIB +old_postinstall_cmds=$lt_old_postinstall_cmds +old_postuninstall_cmds=$lt_old_postuninstall_cmds + +# Whether to use a lock for old archive extraction. +lock_old_archive_extraction=$lock_old_archive_extraction + +# A C compiler. +LTCC=$lt_CC + +# LTCC compiler flags. +LTCFLAGS=$lt_CFLAGS + +# Take the output of nm and produce a listing of raw symbols and C names. +global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe + +# Transform the output of nm in a proper C declaration. +global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl + +# Transform the output of nm into a list of symbols to manually relocate. +global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import + +# Transform the output of nm in a C name address pair. +global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address + +# Transform the output of nm in a C name address pair when lib prefix is needed. +global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix + +# The name lister interface. +nm_interface=$lt_lt_cv_nm_interface + +# Specify filename containing input files for \$NM. +nm_file_list_spec=$lt_nm_file_list_spec + +# The root where to search for dependent libraries,and where our libraries should be installed. +lt_sysroot=$lt_sysroot + +# Command to truncate a binary pipe. +lt_truncate_bin=$lt_lt_cv_truncate_bin + +# The name of the directory that contains temporary libtool files. +objdir=$objdir + +# Used to examine libraries when file_magic_cmd begins with "file". +MAGIC_CMD=$MAGIC_CMD + +# Must we lock files when doing compilation? +need_locks=$lt_need_locks + +# Manifest tool. +MANIFEST_TOOL=$lt_MANIFEST_TOOL + +# Tool to manipulate archived DWARF debug symbol files on Mac OS X. +DSYMUTIL=$lt_DSYMUTIL + +# Tool to change global to local symbols on Mac OS X. +NMEDIT=$lt_NMEDIT + +# Tool to manipulate fat objects and archives on Mac OS X. +LIPO=$lt_LIPO + +# ldd/readelf like tool for Mach-O binaries on Mac OS X. +OTOOL=$lt_OTOOL + +# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. +OTOOL64=$lt_OTOOL64 + +# Old archive suffix (normally "a"). +libext=$libext + +# Shared library suffix (normally ".so"). +shrext_cmds=$lt_shrext_cmds + +# The commands to extract the exported symbol list from a shared archive. +extract_expsyms_cmds=$lt_extract_expsyms_cmds + +# Variables whose values should be saved in libtool wrapper scripts and +# restored at link time. +variables_saved_for_relink=$lt_variables_saved_for_relink + +# Do we need the "lib" prefix for modules? +need_lib_prefix=$need_lib_prefix + +# Do we need a version for libraries? +need_version=$need_version + +# Library versioning type. +version_type=$version_type + +# Shared library runtime path variable. +runpath_var=$runpath_var + +# Shared library path variable. +shlibpath_var=$shlibpath_var + +# Is shlibpath searched before the hard-coded library search path? +shlibpath_overrides_runpath=$shlibpath_overrides_runpath + +# Format of library name prefix. +libname_spec=$lt_libname_spec + +# List of archive names. First name is the real one, the rest are links. +# The last name is the one that the linker finds with -lNAME +library_names_spec=$lt_library_names_spec + +# The coded name of the library, if different from the real name. +soname_spec=$lt_soname_spec + +# Permission mode override for installation of shared libraries. +install_override_mode=$lt_install_override_mode + +# Command to use after installation of a shared archive. +postinstall_cmds=$lt_postinstall_cmds + +# Command to use after uninstallation of a shared archive. +postuninstall_cmds=$lt_postuninstall_cmds + +# Commands used to finish a libtool library installation in a directory. +finish_cmds=$lt_finish_cmds + +# As "finish_cmds", except a single script fragment to be evaled but +# not shown. +finish_eval=$lt_finish_eval + +# Whether we should hardcode library paths into libraries. +hardcode_into_libs=$hardcode_into_libs + +# Compile-time system search path for libraries. +sys_lib_search_path_spec=$lt_sys_lib_search_path_spec + +# Detected run-time system search path for libraries. +sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path + +# Explicit LT_SYS_LIBRARY_PATH set during ./configure time. +configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path + +# Whether dlopen is supported. +dlopen_support=$enable_dlopen + +# Whether dlopen of programs is supported. +dlopen_self=$enable_dlopen_self + +# Whether dlopen of statically linked programs is supported. +dlopen_self_static=$enable_dlopen_self_static + +# Commands to strip libraries. +old_striplib=$lt_old_striplib +striplib=$lt_striplib + + +# The linker used to build libraries. +LD=$lt_LD + +# How to create reloadable object files. +reload_flag=$lt_reload_flag +reload_cmds=$lt_reload_cmds + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds + +# A language specific compiler. +CC=$lt_compiler + +# Is the compiler the GNU compiler? +with_gcc=$GCC + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds +archive_expsym_cmds=$lt_archive_expsym_cmds + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds +module_expsym_cmds=$lt_module_expsym_cmds + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects +postdep_objects=$lt_postdep_objects +predeps=$lt_predeps +postdeps=$lt_postdeps + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path + +# ### END LIBTOOL CONFIG + +_LT_EOF + + cat <<'_LT_EOF' >> "$cfgfile" + +# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE + +# func_munge_path_list VARIABLE PATH +# ----------------------------------- +# VARIABLE is name of variable containing _space_ separated list of +# directories to be munged by the contents of PATH, which is string +# having a format: +# "DIR[:DIR]:" +# string "DIR[ DIR]" will be prepended to VARIABLE +# ":DIR[:DIR]" +# string "DIR[ DIR]" will be appended to VARIABLE +# "DIRP[:DIRP]::[DIRA:]DIRA" +# string "DIRP[ DIRP]" will be prepended to VARIABLE and string +# "DIRA[ DIRA]" will be appended to VARIABLE +# "DIR[:DIR]" +# VARIABLE will be replaced by "DIR[ DIR]" +func_munge_path_list () +{ + case x$2 in + x) + ;; + *:) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" + ;; + x:*) + eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" + ;; + *::*) + eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" + eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" + ;; + *) + eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" + ;; + esac +} + + +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +func_cc_basename () +{ + for cc_temp in $*""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac + done + func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +} + + +# ### END FUNCTIONS SHARED WITH CONFIGURE + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test set != "${COLLECT_NAMES+set}"; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + +ltmain=$ac_aux_dir/ltmain.sh + + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" + + + cat <<_LT_EOF >> "$ofile" + +# ### BEGIN LIBTOOL TAG CONFIG: CXX + +# The linker used to build libraries. +LD=$lt_LD_CXX + +# How to create reloadable object files. +reload_flag=$lt_reload_flag_CXX +reload_cmds=$lt_reload_cmds_CXX + +# Commands used to build an old-style archive. +old_archive_cmds=$lt_old_archive_cmds_CXX + +# A language specific compiler. +CC=$lt_compiler_CXX + +# Is the compiler the GNU compiler? +with_gcc=$GCC_CXX + +# Compiler flag to turn off builtin functions. +no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX + +# Additional compiler flags for building library objects. +pic_flag=$lt_lt_prog_compiler_pic_CXX + +# How to pass a linker flag through the compiler. +wl=$lt_lt_prog_compiler_wl_CXX + +# Compiler flag to prevent dynamic linking. +link_static_flag=$lt_lt_prog_compiler_static_CXX + +# Does compiler simultaneously support -c and -o options? +compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX + +# Whether or not to add -lc for building shared libraries. +build_libtool_need_lc=$archive_cmds_need_lc_CXX + +# Whether or not to disallow shared libs when runtime libs are static. +allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX + +# Compiler flag to allow reflexive dlopens. +export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX + +# Compiler flag to generate shared objects directly from archives. +whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX + +# Whether the compiler copes with passing no objects directly. +compiler_needs_object=$lt_compiler_needs_object_CXX + +# Create an old-style archive from a shared archive. +old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX + +# Create a temporary old-style archive to link instead of a shared archive. +old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX + +# Commands used to build a shared archive. +archive_cmds=$lt_archive_cmds_CXX +archive_expsym_cmds=$lt_archive_expsym_cmds_CXX + +# Commands used to build a loadable module if different from building +# a shared archive. +module_cmds=$lt_module_cmds_CXX +module_expsym_cmds=$lt_module_expsym_cmds_CXX + +# Whether we are building with GNU ld or not. +with_gnu_ld=$lt_with_gnu_ld_CXX + +# Flag that allows shared libraries with undefined symbols to be built. +allow_undefined_flag=$lt_allow_undefined_flag_CXX + +# Flag that enforces no undefined symbols. +no_undefined_flag=$lt_no_undefined_flag_CXX + +# Flag to hardcode \$libdir into a binary during linking. +# This must work even if \$libdir does not exist +hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX + +# Whether we need a single "-rpath" flag with a separated argument. +hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary. +hardcode_direct=$hardcode_direct_CXX + +# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes +# DIR into the resulting binary and the resulting library dependency is +# "absolute",i.e impossible to change by setting \$shlibpath_var if the +# library is relocated. +hardcode_direct_absolute=$hardcode_direct_absolute_CXX + +# Set to "yes" if using the -LDIR flag during linking hardcodes DIR +# into the resulting binary. +hardcode_minus_L=$hardcode_minus_L_CXX + +# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR +# into the resulting binary. +hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX + +# Set to "yes" if building a shared library automatically hardcodes DIR +# into the library and all subsequent libraries and executables linked +# against it. +hardcode_automatic=$hardcode_automatic_CXX + +# Set to yes if linker adds runtime paths of dependent libraries +# to runtime path list. +inherit_rpath=$inherit_rpath_CXX + +# Whether libtool must link a program against all its dependency libraries. +link_all_deplibs=$link_all_deplibs_CXX + +# Set to "yes" if exported symbols are required. +always_export_symbols=$always_export_symbols_CXX + +# The commands to list exported symbols. +export_symbols_cmds=$lt_export_symbols_cmds_CXX + +# Symbols that should not be listed in the preloaded symbols. +exclude_expsyms=$lt_exclude_expsyms_CXX + +# Symbols that must always be exported. +include_expsyms=$lt_include_expsyms_CXX + +# Commands necessary for linking programs (against libraries) with templates. +prelink_cmds=$lt_prelink_cmds_CXX + +# Commands necessary for finishing linking programs. +postlink_cmds=$lt_postlink_cmds_CXX + +# Specify filename containing input files. +file_list_spec=$lt_file_list_spec_CXX + +# How to hardcode a shared library path into an executable. +hardcode_action=$hardcode_action_CXX + +# The directories searched by this compiler when creating a shared library. +compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX + +# Dependencies to place before and after the objects being linked to +# create a shared library. +predep_objects=$lt_predep_objects_CXX +postdep_objects=$lt_postdep_objects_CXX +predeps=$lt_predeps_CXX +postdeps=$lt_postdeps_CXX + +# The library search path used internally by the compiler when linking +# a shared library. +compiler_lib_search_path=$lt_compiler_lib_search_path_CXX + +# ### END LIBTOOL TAG CONFIG: CXX +_LT_EOF + + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit 1 +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: +-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=- + + Configuration summary : + + FLAC version : ........................ ${VERSION} + + Host CPU : ............................ ${host_cpu} + Host Vendor : ......................... ${host_vendor} + Host OS : ............................. ${host_os} +" >&5 +$as_echo " +-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=- + + Configuration summary : + + FLAC version : ........................ ${VERSION} + + Host CPU : ............................ ${host_cpu} + Host Vendor : ......................... ${host_vendor} + Host OS : ............................. ${host_os} +" >&6; } + + echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}" +if test x$ac_cv_c_compiler_gnu = xyes ; then + echo " GCC version : ......................... ${GCC_VERSION}" +fi + echo " Compiler is Clang : ................... ${xiph_cv_c_compiler_clang}" + echo " SSE optimizations : ................... ${sse_os}" + echo " Asm optimizations : ................... ${asm_optimisation}" + echo " Ogg/FLAC support : .................... ${have_ogg}" +echo diff --git a/Frameworks/FLAC/flac-1.3.3/configure.ac b/Frameworks/FLAC/flac-1.3.3/configure.ac new file mode 100644 index 000000000..0228a1249 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/configure.ac @@ -0,0 +1,584 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +# NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__ +# instead of FLAC__ since autoconf triggers off 'AC_' in strings + +AC_PREREQ(2.60) +AC_INIT([flac], [1.3.3], [flac-dev@xiph.org], [flac], [https://www.xiph.org/flac/]) +AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_SRCDIR([src/flac/main.c]) +AC_CONFIG_MACRO_DIR([m4]) +AM_INIT_AUTOMAKE([foreign 1.10 -Wall tar-pax no-dist-gzip dist-xz subdir-objects]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) + +AC_MSG_CHECKING([whether configure should try to set CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS]) +AS_IF([test "x${CFLAGS+set}" = "xset" || test "x${CXXFLAGS+set}" = "xset" || test "x${CPPFLAGS+set}" = "xset" || test "x${LDFLAGS+set}" = "xset"], + [enable_flags_setting=no], + [enable_flags_setting=yes] +) +AC_MSG_RESULT([${enable_flags_setting}]) +AX_CHECK_ENABLE_DEBUG +user_cflags=$CFLAGS + +#Prefer whatever the current ISO standard is. +AC_PROG_CC_STDC +AC_USE_SYSTEM_EXTENSIONS +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) +LT_INIT([win32-dll disable-static pic-only]) +AM_PROG_AS +AC_PROG_CXX +XIPH_C_COMPILER_IS_CLANG +XIPH_GCC_REALLY_IS_GCC +AC_PROG_MAKE_SET +AC_PROG_MKDIR_P + +AC_SYS_LARGEFILE +AC_FUNC_FSEEKO + +AC_CHECK_SIZEOF(off_t,1) # Fake default value. +AC_CHECK_SIZEOF([void*]) +AC_SEARCH_LIBS([lround],[m], [AC_DEFINE(HAVE_LROUND,1,lround support)]) + +AC_LANG_PUSH([C++]) +# c++ flavor first +AC_C_VARARRAYS +if test $ac_cv_c_vararrays = yes; then + AC_DEFINE([HAVE_CXX_VARARRAYS], 1, [Define to 1 if C++ supports variable-length arrays.]) +fi +AC_LANG_POP([C++]) + +# c flavor +AC_HEADER_STDC +AM_PROG_CC_C_O +AC_C_INLINE +AC_C_VARARRAYS +AC_C_TYPEOF + +AC_CHECK_HEADERS([stdint.h inttypes.h byteswap.h sys/param.h sys/ioctl.h termios.h x86intrin.h cpuid.h]) + +XIPH_C_BSWAP32 +XIPH_C_BSWAP16 + +ac_cv_c_big_endian=0 +ac_cv_c_little_endian=0 +AC_C_BIGENDIAN([ac_cv_c_big_endian=1], [ac_cv_c_little_endian=1], [ + AC_MSG_WARN([[*****************************************************************]]) + AC_MSG_WARN([[*** Not able to determine endian-ness of target processor. ]]) + AC_MSG_WARN([[*** The constants CPU_IS_BIG_ENDIAN and CPU_IS_LITTLE_ENDIAN in ]]) + AC_MSG_WARN([[*** config.h may need to be hand editied. ]]) + AC_MSG_WARN([[*****************************************************************]]) +]) +AC_DEFINE_UNQUOTED(CPU_IS_BIG_ENDIAN, ${ac_cv_c_big_endian}, + [Target processor is big endian.]) +AC_DEFINE_UNQUOTED(CPU_IS_LITTLE_ENDIAN, ${ac_cv_c_little_endian}, + [Target processor is little endian.]) +AC_DEFINE_UNQUOTED(WORDS_BIGENDIAN, ${ac_cv_c_big_endian}, + [Target processor is big endian.]) + +AC_ARG_ENABLE(asm-optimizations, AC_HELP_STRING([--disable-asm-optimizations], [Don't use any assembly optimization routines]), asm_opt=no, asm_opt=yes) +dnl ' Terminate the damn single quote +AM_CONDITIONAL(FLaC__NO_ASM, test "x$asm_opt" = xno) +if test "x$asm_opt" = xno ; then +AC_DEFINE(FLAC__NO_ASM) +AH_TEMPLATE(FLAC__NO_ASM, [define to disable use of assembly code]) +fi + +# For the XMMS plugin. +AC_CHECK_TYPES(socklen_t, [], []) + +dnl check for getopt in standard library +dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] ) +AC_CHECK_FUNCS(getopt_long, [], []) + +AC_CHECK_SIZEOF(void*,1) + +asm_optimisation=no +case "$host_cpu" in + amd64|x86_64) + case "$host" in + *gnux32) + # x32 user space and 64 bit kernel. + cpu_x86_64=true + AC_DEFINE(FLAC__CPU_X86_64) + AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64]) + asm_optimisation=$asm_opt + ;; + *) + if test $ac_cv_sizeof_voidp = 4 ; then + # This must be a 32 bit user space running on 64 bit kernel so treat + # this as ia32. + cpu_ia32=true + AC_DEFINE(FLAC__CPU_IA32) + AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386]) + else + # x86_64 user space and kernel. + cpu_x86_64=true + AC_DEFINE(FLAC__CPU_X86_64) + AH_TEMPLATE(FLAC__CPU_X86_64, [define if building for x86_64]) + fi + asm_optimisation=$asm_opt + ;; + esac + ;; + i*86) + cpu_ia32=true + AC_DEFINE(FLAC__CPU_IA32) + AH_TEMPLATE(FLAC__CPU_IA32, [define if building for ia32/i386]) + asm_optimisation=$asm_opt + ;; + powerpc64|powerpc64le) + cpu_ppc64=true + cpu_ppc=true + AC_DEFINE(FLAC__CPU_PPC) + AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC]) + AC_DEFINE(FLAC__CPU_PPC64) + AH_TEMPLATE(FLAC__CPU_PPC64, [define if building for PowerPC64]) + asm_optimisation=$asm_opt + ;; + powerpc|powerpcle) + cpu_ppc=true + AC_DEFINE(FLAC__CPU_PPC) + AH_TEMPLATE(FLAC__CPU_PPC, [define if building for PowerPC]) + asm_optimisation=$asm_opt + ;; + sparc) + cpu_sparc=true + AC_DEFINE(FLAC__CPU_SPARC) + AH_TEMPLATE(FLAC__CPU_SPARC, [define if building for SPARC]) + asm_optimisation=$asm_opt + ;; +esac +AM_CONDITIONAL(FLAC__CPU_X86_64, test "x$cpu_x86_64" = xtrue) +AM_CONDITIONAL(FLaC__CPU_IA32, test "x$cpu_ia32" = xtrue) +AM_CONDITIONAL(FLaC__CPU_PPC, test "x$cpu_ppc" = xtrue) +AM_CONDITIONAL(FLaC__CPU_PPC64, test "x$cpu_ppc64" = xtrue) +AM_CONDITIONAL(FLaC__CPU_SPARC, test "x$cpu_sparc" = xtrue) + +if test "x$ac_cv_header_x86intrin_h" = xyes; then +AC_DEFINE([FLAC__HAS_X86INTRIN], 1, [Set to 1 if is available.]) +else +AC_DEFINE([FLAC__HAS_X86INTRIN], 0) +fi + +if test x"$cpu_ppc64" = xtrue ; then + +AC_C_ATTRIBUTE([target("cpu=power8")], + [have_cpu_power8=yes], + [have_cpu_power8=no]) +if test x"$have_cpu_power8" = xyes ; then + AC_DEFINE(FLAC__HAS_TARGET_POWER8) + AH_TEMPLATE(FLAC__HAS_TARGET_POWER8, [define if compiler has __attribute__((target("cpu=power8"))) support]) +fi + +AC_C_ATTRIBUTE([target("cpu=power9")], + [have_cpu_power9=yes], + [have_cpu_power9=no]) +if test x"$have_cpu_power9" = xyes ; then + AC_DEFINE(FLAC__HAS_TARGET_POWER9) + AH_TEMPLATE(FLAC__HAS_TARGET_POWER9, [define if compiler has __attribute__((target("cpu=power9"))) support]) +fi + +fi + +case "$host" in + i386-*-openbsd3.[[0-3]]) OBJ_FORMAT=aoutb ;; + *-*-cygwin|*mingw*) OBJ_FORMAT=win32 ;; + *-*-darwin*) OBJ_FORMAT=macho ;; + *emx*) OBJ_FORMAT=aout ;; + *djgpp) OBJ_FORMAT=coff ;; + *) OBJ_FORMAT=elf ;; +esac +AC_SUBST(OBJ_FORMAT) + +os_is_windows=no +case "$host" in + *mingw*) + CPPFLAGS="-D__MSVCRT_VERSION__=0x0601 $CPPFLAGS" + os_is_windows=yes + ;; +esac + +AM_CONDITIONAL(OS_IS_WINDOWS, test "x$os_is_windows" = xyes) + +case "$host" in + *-linux-*) + sys_linux=true + AC_DEFINE(FLAC__SYS_LINUX) + AH_TEMPLATE(FLAC__SYS_LINUX, [define if building for Linux]) + ;; + *-*-darwin*) + sys_darwin=true + AC_DEFINE(FLAC__SYS_DARWIN) + AH_TEMPLATE(FLAC__SYS_DARWIN, [define if building for Darwin / MacOS X]) + ;; +esac +AM_CONDITIONAL(FLaC__SYS_DARWIN, test "x$sys_darwin" = xtrue) +AM_CONDITIONAL(FLaC__SYS_LINUX, test "x$sys_linux" = xtrue) + +if test "x$cpu_ia32" = xtrue || test "x$cpu_x86_64" = xtrue ; then +AC_DEFINE(FLAC__ALIGN_MALLOC_DATA) +AH_TEMPLATE(FLAC__ALIGN_MALLOC_DATA, [define to align allocated memory on 32-byte boundaries]) +fi + +AM_CONDITIONAL([DEBUG], [test "x${ax_enable_debug}" = "xyes" || test "x${ax_enable_debug}" = "xinfo"]) + +AC_ARG_ENABLE(sse, +AC_HELP_STRING([--disable-sse], [Disable passing of -msse2 to the compiler]), +[case "${enableval}" in + yes) sse_os=yes ;; + no) sse_os=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;; +esac],[sse_os=yes]) + +AC_ARG_ENABLE(altivec, +AC_HELP_STRING([--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_CONDITIONAL(FLaC__USE_ALTIVEC, test "x$use_altivec" = xtrue) +if test "x$use_altivec" = xtrue ; then +AC_DEFINE(FLAC__USE_ALTIVEC) +AH_TEMPLATE(FLAC__USE_ALTIVEC, [define to enable use of Altivec instructions]) +fi + +AC_ARG_ENABLE(vsx, +AC_HELP_STRING([--disable-vsx], [Disable VSX optimizations]), +[case "${enableval}" in + yes) use_vsx=true ;; + no) use_vsx=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-vsx) ;; +esac],[use_vsx=true]) +AM_CONDITIONAL(FLaC__USE_VSX, test "x$use_vsx" = xtrue) +if test "x$use_vsx" = xtrue ; then +AC_DEFINE(FLAC__USE_VSX) +AH_TEMPLATE(FLAC__USE_VSX, [define to enable use of VSX instructions]) +fi + +AC_ARG_ENABLE(avx, +AC_HELP_STRING([--disable-avx], [Disable AVX, AVX2 optimizations]), +[case "${enableval}" in + yes) use_avx=true ;; + no) use_avx=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-avx) ;; +esac],[use_avx=true]) +AM_CONDITIONAL(FLaC__USE_AVX, test "x$use_avx" = xtrue) +if test "x$use_avx" = xtrue ; then +AC_DEFINE(FLAC__USE_AVX) +AH_TEMPLATE(FLAC__USE_AVX, [define to enable use of AVX instructions]) +fi + +AC_ARG_ENABLE(thorough-tests, +AC_HELP_STRING([--disable-thorough-tests], [Disable thorough (long) testing, do only basic tests]), +[case "${enableval}" in + yes) thorough_tests=true ;; + no) thorough_tests=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-thorough-tests) ;; +esac],[thorough_tests=true]) +AC_ARG_ENABLE(exhaustive-tests, +AC_HELP_STRING([--enable-exhaustive-tests], [Enable exhaustive testing (VERY long)]), +[case "${enableval}" in + yes) exhaustive_tests=true ;; + no) exhaustive_tests=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;; +esac],[exhaustive_tests=false]) +if test "x$thorough_tests" = xfalse ; then +FLAC__TEST_LEVEL=0 +elif test "x$exhaustive_tests" = xfalse ; then +FLAC__TEST_LEVEL=1 +else +FLAC__TEST_LEVEL=2 +fi +AC_SUBST(FLAC__TEST_LEVEL) + +AC_ARG_ENABLE(werror, + AC_HELP_STRING([--enable-werror], [Enable -Werror in all Makefiles])) + +AC_ARG_ENABLE(stack-smash-protection, + AC_HELP_STRING([--enable-stack-smash-protection], [Enable GNU GCC stack smash protection])) + +AC_ARG_ENABLE(64-bit-words, + AC_HELP_STRING([--enable-64-bit-words], [Set FLAC__BYTES_PER_WORD to 8 (4 is the default)])) +if test "x$enable_64_bit_words" = xyes ; then + AC_DEFINE_UNQUOTED([ENABLE_64_BIT_WORDS],1,[Set FLAC__BYTES_PER_WORD to 8 (4 is the default)]) +else + AC_DEFINE_UNQUOTED([ENABLE_64_BIT_WORDS],0) + fi +AC_SUBST(ENABLE_64_BIT_WORDS) + +AC_ARG_ENABLE(valgrind-testing, +AC_HELP_STRING([--enable-valgrind-testing], [Run all tests inside Valgrind]), +[case "${enableval}" in + yes) FLAC__TEST_WITH_VALGRIND=yes ;; + no) FLAC__TEST_WITH_VALGRIND=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-valgrind-testing) ;; +esac],[FLAC__TEST_WITH_VALGRIND=no]) +AC_SUBST(FLAC__TEST_WITH_VALGRIND) + +AC_ARG_ENABLE(doxygen-docs, +AC_HELP_STRING([--disable-doxygen-docs], [Disable API documentation building via Doxygen]), +[case "${enableval}" in + yes) enable_doxygen_docs=true ;; + no) enable_doxygen_docs=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-doxygen-docs) ;; +esac],[enable_doxygen_docs=true]) +if test "x$enable_doxygen_docs" != xfalse ; then + AC_CHECK_PROGS(DOXYGEN, doxygen) +fi +AM_CONDITIONAL(FLaC__HAS_DOXYGEN, test -n "$DOXYGEN") + +AC_ARG_ENABLE(local-xmms-plugin, +AC_HELP_STRING([--enable-local-xmms-plugin], [Install XMMS plugin to ~/.xmms/Plugins instead of system location]), +[case "${enableval}" in + yes) install_xmms_plugin_locally=true ;; + no) install_xmms_plugin_locally=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-local-xmms-plugin) ;; +esac],[install_xmms_plugin_locally=false]) +AM_CONDITIONAL(FLaC__INSTALL_XMMS_PLUGIN_LOCALLY, test "x$install_xmms_plugin_locally" = xtrue) + +AC_ARG_ENABLE(xmms-plugin, +AC_HELP_STRING([--disable-xmms-plugin], [Do not build XMMS plugin]), +[case "${enableval}" in + yes) enable_xmms_plugin=true ;; + no) enable_xmms_plugin=false ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-xmms-plugin) ;; +esac],[enable_xmms_plugin=true]) +if test "x$enable_xmms_plugin" != xfalse ; then + AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - XMMS support will not be built])) +fi +AM_CONDITIONAL(FLaC__HAS_XMMS, test -n "$XMMS_INPUT_PLUGIN_DIR") + +dnl build FLAC++ or not +AC_ARG_ENABLE([cpplibs], +AC_HELP_STRING([--disable-cpplibs], [Do not build libFLAC++]), +[case "${enableval}" in + yes) disable_cpplibs=false ;; + no) disable_cpplibs=true ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-cpplibs) ;; +esac], [disable_cpplibs=false]) +AM_CONDITIONAL(FLaC__WITH_CPPLIBS, [test "x$disable_cpplibs" != xtrue]) + +dnl check for ogg library +AC_ARG_ENABLE([ogg], + AC_HELP_STRING([--disable-ogg], [Disable ogg support (default: test for libogg)]), + [ want_ogg=$enableval ], [ want_ogg=yes ] ) + +if test "x$want_ogg" != "xno"; then + XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development environment not installed - Ogg support will not be built])) +fi + +FLAC__HAS_OGG=0 +AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes]) +if test "x$have_ogg" = xyes ; then + FLAC__HAS_OGG=1 + OGG_PACKAGE="ogg" +else + have_ogg=no +fi +AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],$FLAC__HAS_OGG,[define if you have the ogg library]) +AC_SUBST(FLAC__HAS_OGG) +AC_SUBST(OGG_PACKAGE) + +dnl Build examples? +AC_ARG_ENABLE([examples], + AS_HELP_STRING([--disable-examples], [Don't build and install examples])) +AM_CONDITIONAL([EXAMPLES], [test "x$enable_examples" != "xno"]) + +dnl check for i18n(internationalization); these are from libiconv/gettext +AM_ICONV +AM_LANGINFO_CODESET + +AC_CHECK_PROGS(DOCBOOK_TO_MAN, docbook-to-man docbook2man) +AM_CONDITIONAL(FLaC__HAS_DOCBOOK_TO_MAN, test -n "$DOCBOOK_TO_MAN") +if test -n "$DOCBOOK_TO_MAN" ; then +AC_DEFINE(FLAC__HAS_DOCBOOK_TO_MAN) +AH_TEMPLATE(FLAC__HAS_DOCBOOK_TO_MAN, [define if you have docbook-to-man or docbook2man]) +fi + +AC_CHECK_LIB(rt, clock_gettime, + LIB_CLOCK_GETTIME=-lrt + AC_DEFINE(HAVE_CLOCK_GETTIME) + AH_TEMPLATE(HAVE_CLOCK_GETTIME, [define if you have clock_gettime])) +AC_SUBST(LIB_CLOCK_GETTIME) + +# only matters for x86 +AC_CHECK_PROGS(NASM, nasm) +AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM") +if test -n "$NASM" ; then +AC_DEFINE(FLAC__HAS_NASM) +AH_TEMPLATE(FLAC__HAS_NASM, [define if you are compiling for x86 and have the NASM assembler]) +fi + +dnl If debugging is disabled AND no CFLAGS/CXXFLAGS/CPPFLAGS/LDFLAGS +dnl are provided, we can set defaults to our liking +AS_IF([test "x${ax_enable_debug}" = "xno" && test "x${enable_flags_setting}" = "xyes"], [ + CFLAGS="-O3 -funroll-loops" +]) + +XIPH_GCC_VERSION + +if test x$ac_cv_c_compiler_gnu = xyes ; then + CFLAGS="$CFLAGS -Wall -Wextra -Wstrict-prototypes -Wmissing-prototypes -Waggregate-return -Wcast-align -Wnested-externs -Wshadow -Wundef -Wmissing-declarations -Winline " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Wconversion + CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wcast-align -Wshadow -Wwrite-strings -Wctor-dtor-privacy -Wnon-virtual-dtor -Wreorder -Wsign-promo -Wundef " # -Wcast-qual -Wbad-function-cast -Wwrite-strings -Woverloaded-virtual -Wmissing-declarations + + XIPH_ADD_CFLAGS([-Wdeclaration-after-statement]) + + dnl some distributions (such as Gentoo) have _FORTIFY_SOURCE always + dnl enabled. We test for this situation in order to prevent polluting + dnl the console with messages of macro redefinitions. + AX_ADD_FORTIFY_SOURCE + + AC_LANG_PUSH([C++]) + XIPH_ADD_CXXFLAGS([-Weffc++]) + AC_LANG_POP([C++]) + + if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = elf; then + CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR" + CFLAGS="$CFLAGS -fvisibility=hidden" + CXXFLAGS="$CXXFLAGS -fvisibility=hidden" + fi + + if test "$GCC_MAJOR_VERSION" -ge 4 && test "$OBJ_FORMAT" = macho; then + CPPFLAGS="$CPPFLAGS -DFLAC__USE_VISIBILITY_ATTR" + CFLAGS="$CFLAGS -fvisibility=hidden" + CXXFLAGS="$CXXFLAGS -fvisibility=hidden" + fi + + if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then + XIPH_ADD_CFLAGS([-fgnu89-inline]) + fi + + if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x47" ; then + XIPH_ADD_CFLAGS([-fno-inline-small-functions]) + fi + + if test "x$asm_optimisation$sse_os" = "xyesyes" ; then + XIPH_ADD_CFLAGS([-msse2]) + fi + + fi + +case "$host_os" in + "mingw32"|"os2") + if test "$host_cpu" = "i686"; then + XIPH_ADD_CFLAGS([-mstackrealign]) + fi + esac + +if test x$enable_werror = "xyes" ; then + XIPH_ADD_CFLAGS([-Werror]) + AC_LANG_PUSH([C++]) + XIPH_ADD_CXXFLAGS([-Werror]) + AC_LANG_POP([C++]) + fi + +if test x$enable_stack_smash_protection = "xyes" ; then + XIPH_GCC_STACK_PROTECTOR + XIPH_GXX_STACK_PROTECTOR + fi + +AC_CONFIG_FILES([ \ + Makefile \ + src/Makefile \ + src/libFLAC/Makefile \ + src/libFLAC/flac.pc \ + src/libFLAC/ia32/Makefile \ + src/libFLAC/include/Makefile \ + src/libFLAC/include/private/Makefile \ + src/libFLAC/include/protected/Makefile \ + src/libFLAC++/Makefile \ + src/libFLAC++/flac++.pc \ + src/flac/Makefile \ + src/metaflac/Makefile \ + src/plugin_common/Makefile \ + src/plugin_xmms/Makefile \ + src/share/Makefile \ + src/test_grabbag/Makefile \ + src/test_grabbag/cuesheet/Makefile \ + src/test_grabbag/picture/Makefile \ + src/test_libs_common/Makefile \ + src/test_libFLAC/Makefile \ + src/test_libFLAC++/Makefile \ + src/test_seeking/Makefile \ + src/test_streams/Makefile \ + src/utils/Makefile \ + src/utils/flacdiff/Makefile \ + src/utils/flactimer/Makefile \ + examples/Makefile \ + examples/c/Makefile \ + examples/c/decode/Makefile \ + examples/c/decode/file/Makefile \ + examples/c/encode/Makefile \ + examples/c/encode/file/Makefile \ + examples/cpp/Makefile \ + examples/cpp/decode/Makefile \ + examples/cpp/decode/file/Makefile \ + examples/cpp/encode/Makefile \ + examples/cpp/encode/file/Makefile \ + include/Makefile \ + include/FLAC/Makefile \ + include/FLAC++/Makefile \ + include/share/Makefile \ + include/share/grabbag/Makefile \ + include/test_libs_common/Makefile \ + doc/Doxyfile \ + doc/Makefile \ + doc/html/Makefile \ + doc/html/images/Makefile \ + m4/Makefile \ + man/Makefile \ + test/common.sh \ + test/Makefile \ + test/cuesheets/Makefile \ + test/flac-to-flac-metadata-test-files/Makefile \ + test/metaflac-test-files/Makefile \ + test/pictures/Makefile \ + build/Makefile \ + objs/Makefile \ + objs/debug/Makefile \ + objs/debug/bin/Makefile \ + objs/debug/lib/Makefile \ + objs/release/Makefile \ + objs/release/bin/Makefile \ + objs/release/lib/Makefile \ + microbench/Makefile +]) +AC_OUTPUT + +AC_MSG_RESULT([ +-=-=-=-=-=-=-=-=-=-= Configuration Complete =-=-=-=-=-=-=-=-=-=- + + Configuration summary : + + FLAC version : ........................ ${VERSION} + + Host CPU : ............................ ${host_cpu} + Host Vendor : ......................... ${host_vendor} + Host OS : ............................. ${host_os} +]) + + echo " Compiler is GCC : ..................... ${ac_cv_c_compiler_gnu}" +if test x$ac_cv_c_compiler_gnu = xyes ; then + echo " GCC version : ......................... ${GCC_VERSION}" +fi + echo " Compiler is Clang : ................... ${xiph_cv_c_compiler_clang}" + echo " SSE optimizations : ................... ${sse_os}" + echo " Asm optimizations : ................... ${asm_optimisation}" + echo " Ogg/FLAC support : .................... ${have_ogg}" +echo diff --git a/Frameworks/FLAC/flac-1.3.3/depcomp b/Frameworks/FLAC/flac-1.3.3/depcomp new file mode 100755 index 000000000..65cbf7093 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/depcomp @@ -0,0 +1,791 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2018-03-07.03; # UTC + +# Copyright (C) 1999-2018 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try '$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by 'PROGRAMS ARGS'. + object Object file output by 'PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputting dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +# Get the directory component of the given path, and save it in the +# global variables '$dir'. Note that this directory component will +# be either empty or ending with a '/' character. This is deliberate. +set_dir_from () +{ + case $1 in + */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; + *) dir=;; + esac +} + +# Get the suffix-stripped basename of the given path, and save it the +# global variable '$base'. +set_base_from () +{ + base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` +} + +# If no dependency file was actually created by the compiler invocation, +# we still have to create a dummy depfile, to avoid errors with the +# Makefile "include basename.Plo" scheme. +make_dummy_depfile () +{ + echo "#dummy" > "$depfile" +} + +# Factor out some common post-processing of the generated depfile. +# Requires the auxiliary global variable '$tmpdepfile' to be set. +aix_post_process_depfile () +{ + # If the compiler actually managed to produce a dependency file, + # post-process it. + if test -f "$tmpdepfile"; then + # Each line is of the form 'foo.o: dependency.h'. + # Do two passes, one to just change these to + # $object: dependency.h + # and one to simply output + # dependency.h: + # which is needed to avoid the deleted-header problem. + { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" + sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" + } > "$depfile" + rm -f "$tmpdepfile" + else + make_dummy_depfile + fi +} + +# A tabulation character. +tab=' ' +# A newline character. +nl=' +' +# Character ranges might be problematic outside the C locale. +# These definitions help. +upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ +lower=abcdefghijklmnopqrstuvwxyz +digits=0123456789 +alpha=${upper}${lower} + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Avoid interferences from the environment. +gccflag= dashmflag= + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvisualcpp +fi + +if test "$depmode" = msvc7msys; then + # This is just like msvc7 but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u='sed s,\\\\,/,g' + depmode=msvc7 +fi + +if test "$depmode" = xlc; then + # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. + gccflag=-qmakedep=gcc,-MF + depmode=gcc +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. +## Unfortunately, FreeBSD c89 acceptance of flags depends upon +## the command line argument order; so add the flags where they +## appear in depend2.am. Note that the slowdown incurred here +## affects only configure: in makefiles, %FASTDEP% shortcuts this. + for arg + do + case $arg in + -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; + *) set fnord "$@" "$arg" ;; + esac + shift # fnord + shift # $arg + done + "$@" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. +## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. +## (see the conditional assignment to $gccflag above). +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). Also, it might not be +## supported by the other compilers which use the 'gcc' depmode. +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The second -e expression handles DOS-style file names with drive + # letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the "deleted header file" problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. +## Some versions of gcc put a space before the ':'. On the theory +## that the space means something, we add a space to the output as +## well. hp depmode also adds that space, but also prefixes the VPATH +## to the object. Take care to not repeat it in the output. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like '#:fec' to the end of the + # dependency line. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ + | tr "$nl" ' ' >> "$depfile" + echo >> "$depfile" + # The second pass generates a dummy entry for each header file. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" + ;; + +xlc) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts '$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u + "$@" -Wc,-M + else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u + "$@" -M + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + aix_post_process_depfile + ;; + +tcc) + # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 + # FIXME: That version still under development at the moment of writing. + # Make that this statement remains true also for stable, released + # versions. + # It will wrap lines (doesn't matter whether long or short) with a + # trailing '\', as in: + # + # foo.o : \ + # foo.c \ + # foo.h \ + # + # It will put a trailing '\' even on the last line, and will use leading + # spaces rather than leading tabs (at least since its commit 0394caf7 + # "Emit spaces for -MD"). + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. + # We have to change lines of the first kind to '$object: \'. + sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" + # And for each line of the second kind, we have to emit a 'dep.h:' + # dummy dependency, to avoid the deleted-header problem. + sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" + rm -f "$tmpdepfile" + ;; + +## The order of this option in the case statement is important, since the +## shell code in configure will try each of these formats in the order +## listed in this file. A plain '-MD' option would be understood by many +## compilers, so we must ensure this comes after the gcc and icc options. +pgcc) + # Portland's C compiler understands '-MD'. + # Will always output deps to 'file.d' where file is the root name of the + # source file under compilation, even if file resides in a subdirectory. + # The object file name does not affect the name of the '.d' file. + # pgcc 10.2 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using '\' : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + set_dir_from "$object" + # Use the source, not the object, to determine the base name, since + # that's sadly what pgcc will do too. + set_base_from "$source" + tmpdepfile=$base.d + + # For projects that build the same source file twice into different object + # files, the pgcc approach of using the *source* file root name can cause + # problems in parallel builds. Use a locking strategy to avoid stomping on + # the same $tmpdepfile. + lockdir=$base.d-lock + trap " + echo '$0: caught signal, cleaning up...' >&2 + rmdir '$lockdir' + exit 1 + " 1 2 13 15 + numtries=100 + i=$numtries + while test $i -gt 0; do + # mkdir is a portable test-and-set. + if mkdir "$lockdir" 2>/dev/null; then + # This process acquired the lock. + "$@" -MD + stat=$? + # Release the lock. + rmdir "$lockdir" + break + else + # If the lock is being held by a different process, wait + # until the winning process is done or we timeout. + while test -d "$lockdir" && test $i -gt 0; do + sleep 1 + i=`expr $i - 1` + done + fi + i=`expr $i - 1` + done + trap - 1 2 13 15 + if test $i -le 0; then + echo "$0: failed to acquire lock after $numtries attempts" >&2 + echo "$0: check lockdir '$lockdir'" >&2 + exit 1 + fi + + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp2) + # The "hp" stanza above does not work with aCC (C++) and HP's ia64 + # compilers, which have integrated preprocessors. The correct option + # to use with these is +Maked; it writes dependencies to a file named + # 'foo.d', which lands next to the object file, wherever that + # happens to be. + # Much of this is similar to the tru64 case; see comments there. + set_dir_from "$object" + set_base_from "$object" + if test "$libtool" = yes; then + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir.libs/$base.d + "$@" -Wc,+Maked + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + "$@" +Maked + fi + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" + # Add 'dependent.h:' lines. + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" + else + make_dummy_depfile + fi + rm -f "$tmpdepfile" "$tmpdepfile2" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in 'foo.d' instead, so we check for that too. + # Subdirectories are respected. + set_dir_from "$object" + set_base_from "$object" + + if test "$libtool" = yes; then + # Libtool generates 2 separate objects for the 2 libraries. These + # two compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir$base.o.d # libtool 1.5 + tmpdepfile2=$dir.libs/$base.o.d # Likewise. + tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -ne 0; then + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done + # Same post-processing that is required for AIX mode. + aix_post_process_depfile + ;; + +msvc7) + if test "$libtool" = yes; then + showIncludes=-Wc,-showIncludes + else + showIncludes=-showIncludes + fi + "$@" $showIncludes > "$tmpdepfile" + stat=$? + grep -v '^Note: including file: ' "$tmpdepfile" + if test $stat -ne 0; then + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + # The first sed program below extracts the file names and escapes + # backslashes for cygpath. The second sed program outputs the file + # name when reading, but also accumulates all include files in the + # hold buffer in order to output them again at the end. This only + # works with sed implementations that can handle large buffers. + sed < "$tmpdepfile" -n ' +/^Note: including file: *\(.*\)/ { + s//\1/ + s/\\/\\\\/g + p +}' | $cygpath_u | sort -u | sed -n ' +s/ /\\ /g +s/\(.*\)/'"$tab"'\1 \\/p +s/.\(.*\) \\/\1:/ +H +$ { + s/.*/'"$tab"'/ + G + p +}' >> "$depfile" + echo >> "$depfile" # make sure the fragment doesn't end with a backslash + rm -f "$tmpdepfile" + ;; + +msvc7msys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for ':' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. + "$@" $dashmflag | + sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this sed invocation + # correctly. Breaking it into two sed invocations is a workaround. + tr ' ' "$nl" < "$tmpdepfile" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no eat=no + for arg + do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + if test $eat = yes; then + eat=no + continue + fi + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix=`echo "$object" | sed 's/^.*\././'` + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + # makedepend may prepend the VPATH from the source file name to the object. + # No need to regex-escape $object, excess matching of '.' is harmless. + sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process the last invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed '1,2d' "$tmpdepfile" \ + | tr ' ' "$nl" \ + | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ + | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + # Remove '-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E \ + | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ + | sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + + IFS=" " + for arg + do + case "$arg" in + -o) + shift + ;; + $object) + shift + ;; + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" + echo "$tab" >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'before-save-hook 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC0" +# time-stamp-end: "; # UTC" +# End: diff --git a/Frameworks/FLAC/flac-1.3.3/doc/Doxyfile.in b/Frameworks/FLAC/flac-1.3.3/doc/Doxyfile.in new file mode 100644 index 000000000..7469abf9e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/Doxyfile.in @@ -0,0 +1,1220 @@ +# Doxyfile 1.4.2 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = FLAC + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 1.3.3 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = doxytmp + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, +# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, +# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, +# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, +# Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# This tag can be used to specify the encoding used in the generated output. +# The encoding is not always determined by the language that is chosen, +# but also whether or not the output is meant for Windows or non-Windows users. +# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES +# forces the Windows encoding (this is the default for the Windows binary), +# whereas setting the tag to NO uses a Unix-style encoding (the default for +# all platforms other than Windows). + +USE_WINDOWS_ENCODING = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = NO + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = YES + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = YES + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = .. + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = YES + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = "assert=\par Assertions:\n" \ + "default=\par Default Value:\n" + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources +# only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = NO + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = YES + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. + +SHOW_DIRECTORIES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from the +# version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = @top_srcdir@/include/FLAC \ + @top_srcdir@/include/FLAC++ + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. + +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = @top_srcdir@/doc/doxygen.footer.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = YES + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. + +EXPAND_ONLY_PREDEF = YES + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = FLAC__NO_DLL + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = FLAC_API FLACPP_API + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = FLAC.tag + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = NO + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that a graph may be further truncated if the graph's +# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH +# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), +# the graph is not depth-constrained. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, which results in a white background. +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/Frameworks/FLAC/flac-1.3.3/doc/FLAC.tag b/Frameworks/FLAC/flac-1.3.3/doc/FLAC.tag new file mode 100644 index 000000000..4e7fb8418 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/FLAC.tag @@ -0,0 +1,12312 @@ + + + + decoder.h + /home/erikd/Git/flac/include/FLAC++/ + decoder_8h + export.h + FLAC/stream_decoder.h + FLAC::Decoder::Stream + FLAC::Decoder::Stream::State + FLAC::Decoder::File + + + encoder.h + /home/erikd/Git/flac/include/FLAC++/ + encoder_8h + export.h + FLAC/stream_encoder.h + decoder.h + metadata.h + FLAC::Encoder::Stream + FLAC::Encoder::Stream::State + FLAC::Encoder::File + + + callback.h + /home/erikd/Git/flac/include/FLAC/ + callback_8h + FLAC__IOCallbacks + + void * + FLAC__IOHandle + group__flac__callbacks.html + ga4c329c3168dee6e352384c5e9306260d + + + + size_t(* + FLAC__IOCallback_Read + group__flac__callbacks.html + ga49d95218a6c09b215cd92cc96de71bf9 + )(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) + + + size_t(* + FLAC__IOCallback_Write + group__flac__callbacks.html + gad991792235879aecae289b56a112e1b8 + )(const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Seek + group__flac__callbacks.html + gab3942bbbd6ae09bcefe7cb3a0060c49c + )(FLAC__IOHandle handle, FLAC__int64 offset, int whence) + + + FLAC__int64(* + FLAC__IOCallback_Tell + group__flac__callbacks.html + ga45314930cabc2e9c04867eae6bca309f + )(FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Eof + group__flac__callbacks.html + ga00ae3b3d373e691908e9539ebf720675 + )(FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Close + group__flac__callbacks.html + ga0032267fac38220689778833e08f7387 + )(FLAC__IOHandle handle) + + + + export.h + /home/erikd/Git/flac/include/FLAC/ + export_8h + + #define + FLAC_API_VERSION_CURRENT + group__flac__export.html + ga31180fe15eea416cd8957cfca1a4c4f8 + + + + #define + FLAC_API_VERSION_REVISION + group__flac__export.html + ga811641dd9f8c542d9260240e7fbe8e93 + + + + #define + FLAC_API_VERSION_AGE + group__flac__export.html + ga1add3e09c8dfd57e8c921f299f0bbec1 + + + + int + FLAC_API_SUPPORTS_OGG_FLAC + group__flac__export.html + ga84ffcb0af1038c60eb3e21fd002093cf + + + + + export.h + /home/erikd/Git/flac/include/FLAC++/ + _09_2export_8h + + + format.h + /home/erikd/Git/flac/include/FLAC/ + format_8h + export.h + FLAC__EntropyCodingMethod_PartitionedRiceContents + FLAC__EntropyCodingMethod_PartitionedRice + FLAC__EntropyCodingMethod + FLAC__Subframe_Constant + FLAC__Subframe_Verbatim + FLAC__Subframe_Fixed + FLAC__Subframe_LPC + FLAC__Subframe + FLAC__FrameHeader + FLAC__FrameFooter + FLAC__Frame + FLAC__StreamMetadata_StreamInfo + FLAC__StreamMetadata_Padding + FLAC__StreamMetadata_Application + FLAC__StreamMetadata_SeekPoint + FLAC__StreamMetadata_SeekTable + FLAC__StreamMetadata_VorbisComment_Entry + FLAC__StreamMetadata_VorbisComment + FLAC__StreamMetadata_CueSheet_Index + FLAC__StreamMetadata_CueSheet_Track + FLAC__StreamMetadata_CueSheet + FLAC__StreamMetadata_Picture + FLAC__StreamMetadata_Unknown + FLAC__StreamMetadata + + #define + FLAC__MAX_METADATA_TYPE_CODE + group__flac__format.html + ga626a412545818c2271fa2202c02ff1d6 + + + + #define + FLAC__MIN_BLOCK_SIZE + group__flac__format.html + gaa5a85c2ea434221ce684be3469517003 + + + + #define + FLAC__MAX_BLOCK_SIZE + group__flac__format.html + gaef78bc1b04f721e7b4563381f5514e8d + + + + #define + FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ + group__flac__format.html + ga8f6ba2c28fbfcf52326d115c95b0a751 + + + + #define + FLAC__MAX_CHANNELS + group__flac__format.html + ga488aa5678a58d08f984f5d39185b763d + + + + #define + FLAC__MIN_BITS_PER_SAMPLE + group__flac__format.html + ga30b0f21abbb2cdfd461fe04b425b5438 + + + + #define + FLAC__MAX_BITS_PER_SAMPLE + group__flac__format.html + gad0156d56751e80241fa349d1e25064a6 + + + + #define + FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE + group__flac__format.html + ga0fc418d96053d385fd2f56dce8007fbc + + + + #define + FLAC__MAX_SAMPLE_RATE + group__flac__format.html + ga99abeef0c05c6bc76eacfa865abbfa70 + + + + #define + FLAC__MAX_LPC_ORDER + group__flac__format.html + ga16108d413f524329f338cff6e05f3aff + + + + #define + FLAC__SUBSET_MAX_LPC_ORDER_48000HZ + group__flac__format.html + ga9791efa78147196820c86a6041d7774d + + + + #define + FLAC__MIN_QLP_COEFF_PRECISION + group__flac__format.html + gaf52033b2950b9396dd92b167b3bbe4db + + + + #define + FLAC__MAX_QLP_COEFF_PRECISION + group__flac__format.html + ga6aa38a4bc5b9d96a78253ccb8b08bd1f + + + + #define + FLAC__MAX_FIXED_ORDER + group__flac__format.html + gabd0d5d6fe71b337244712b244ae7cb0f + + + + #define + FLAC__MAX_RICE_PARTITION_ORDER + group__flac__format.html + ga78a2e97e230b2aa7f99edc94a466f5bb + + + + #define + FLAC__SUBSET_MAX_RICE_PARTITION_ORDER + group__flac__format.html + gab19dec1b56de482ccfeb5f9843f60a14 + + + + #define + FLAC__STREAM_SYNC_LENGTH + group__flac__format.html + gae7ddaf298d3ceb83aae6301908675c1d + + + + #define + FLAC__STREAM_METADATA_STREAMINFO_LENGTH + group__flac__format.html + ga06dfae7260da40e4c5f8fc4d531b326c + + + + #define + FLAC__STREAM_METADATA_SEEKPOINT_LENGTH + group__flac__format.html + gabdf85aa2c9a483378dfe850b85ab93ef + + + + #define + FLAC__STREAM_METADATA_HEADER_LENGTH + group__flac__format.html + ga706a29b8a14902c457783bfd4fd7bab2 + + + + + FLAC__EntropyCodingMethodType + group__flac__format.html + ga951733d2ea01943514290012cd622d3a + + + + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE + group__flac__format.html + gga951733d2ea01943514290012cd622d3aa5253f8b8edc61220739f229a299775dd + + + + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 + group__flac__format.html + gga951733d2ea01943514290012cd622d3aa202960a608ee91f9f11c2575b9ecc5aa + + + + + FLAC__SubframeType + group__flac__format.html + ga1f431eaf213e74d7747589932d263348 + + + + FLAC__SUBFRAME_TYPE_CONSTANT + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a9bf56d836aeffb11d614e29ea1cdf2a9 + + + + FLAC__SUBFRAME_TYPE_VERBATIM + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a8520596ef07d6c8577f07025f137657b + + + + FLAC__SUBFRAME_TYPE_FIXED + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a6b3cce73039a513f9afefdc8e4f664a5 + + + + FLAC__SUBFRAME_TYPE_LPC + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a31437462c3e4c3a5a214a91eff8cc3af + + + + + FLAC__ChannelAssignment + group__flac__format.html + ga79855f8525672e37f299bbe02952ef9c + + + + FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca3c554e4c8512c2de31dfd3305f8b31b3 + + + + FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca28d41295b20593561dc9934cc977d5cb + + + + FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9cad155b61582140b2b90362005f1a93e2e + + + + FLAC__CHANNEL_ASSIGNMENT_MID_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca85c1512c0473b5ede364a9943759a80c + + + + + FLAC__FrameNumberType + group__flac__format.html + ga8fe9ebc78386cd2a3d23b7b8e3818e1c + + + + FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER + group__flac__format.html + gga8fe9ebc78386cd2a3d23b7b8e3818e1ca0b9cbf3853f0ae105cf9b5360164f794 + + + + FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER + group__flac__format.html + gga8fe9ebc78386cd2a3d23b7b8e3818e1ca9220ce93dcc151e5edd5db7e7155b35a + + + + + FLAC__MetadataType + group__flac__format.html + gac71714ba8ddbbd66d26bb78a427fac01 + + + + FLAC__METADATA_TYPE_STREAMINFO + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acffa517e969ba6a868dcf10e5da75c28 + + + + FLAC__METADATA_TYPE_PADDING + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a6dcb741fc0aef389580f110e88beb896 + + + + FLAC__METADATA_TYPE_APPLICATION + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a2b287a22a1ac9440b309127884c8d41b + + + + FLAC__METADATA_TYPE_SEEKTABLE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a5f6323e489be1318f0e3747960ebdd91 + + + + FLAC__METADATA_TYPE_VORBIS_COMMENT + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01ad013576bc5196b907547739518605520 + + + + FLAC__METADATA_TYPE_CUESHEET + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a0b3f07ae60609126562cd0233ce00a65 + + + + FLAC__METADATA_TYPE_PICTURE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acf28ae2788366617c1aeab81d5961c6e + + + + FLAC__METADATA_TYPE_UNDEFINED + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acf6ac61fcc866608f5583c275dc34d47 + + + + FLAC__MAX_METADATA_TYPE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a1a2f283a3dd9e7b46181d7a114ec5805 + + + + + FLAC__StreamMetadata_Picture_Type + group__flac__format.html + gaf6d3e836cee023e0b8d897f1fdc9825d + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dadd6d6af32499b1973e48c9e8f13357ce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da5eca52e5cfcb718f33f5fce9b1021a49 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825daaf44b9d5fb75dde6941463e5029aa351 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da3e20b405fd4e835ff3a4465b8bcb7c36 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da9ae132f2ee7d3baf35f94a9dc9640f62 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dad3cb471b7925ae5034d9fd9ecfafb87a + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dac994edc4166107ab5790e49f0b57ffd9 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da1282e252e20553c39907074052960f42 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da4cead70f8720f180fc220e6df8d55cce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dae01a47af0b0c4d89500b755ebca866ce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BAND + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da8515523b4c9ab65ffef7db98bc09ceb1 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da5ea1554bc96deb45731bc5897600d1c2 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da86159eda8969514f5992b3e341103f22 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dac96e810cdd81465709b4a3a03289e89c + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da8cee3bb376ed1044b3a7e20b9c971ff1 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da4d4dc6904984370501865988d948de3f + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da7adc2b194968b51768721de7bda39df9 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FISH + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dabbf0d7c519ae8ba8cec7d1f165f67b0f + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da89ba412c9d89c937c28afdab508d047a + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da751716a4528a78a8d53f435c816c4917 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da31d75150a4079482fe122e703eff9141 + + + + FLAC__bool + FLAC__format_sample_rate_is_valid + group__flac__format.html + ga48100669b8e8613f1e226c3925f701a8 + (uint32_t sample_rate) + + + FLAC__bool + FLAC__format_blocksize_is_subset + group__flac__format.html + ga4e71651ff9b90b50480f86050d78c16b + (uint32_t blocksize, uint32_t sample_rate) + + + FLAC__bool + FLAC__format_sample_rate_is_subset + group__flac__format.html + gae048df385980088b4c29c52aa7207306 + (uint32_t sample_rate) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_name_is_legal + group__flac__format.html + gae5fb55cd5977ebf178c5b38da831c057 + (const char *name) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_value_is_legal + group__flac__format.html + ga1a5061a12c836cc2ff3967088afda1c4 + (const FLAC__byte *value, uint32_t length) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_is_legal + group__flac__format.html + ga1439057dbc3f0719309620caaf82c1b1 + (const FLAC__byte *entry, uint32_t length) + + + FLAC__bool + FLAC__format_seektable_is_legal + group__flac__format.html + ga02ed0843553fb8f718fe8e7c54d12244 + (const FLAC__StreamMetadata_SeekTable *seek_table) + + + uint32_t + FLAC__format_seektable_sort + group__flac__format.html + ga2285adb37d91c41b1f9a5c3b1b35e886 + (FLAC__StreamMetadata_SeekTable *seek_table) + + + FLAC__bool + FLAC__format_cuesheet_is_legal + group__flac__format.html + gaa9ed0fa4ed04dbfdaa163d0f5308c080 + (const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation) + + + FLAC__bool + FLAC__format_picture_is_legal + group__flac__format.html + ga82ca3ffc97c106c61882134f1a7fb1be + (const FLAC__StreamMetadata_Picture *picture, const char **violation) + + + const char * + FLAC__VERSION_STRING + group__flac__format.html + ga52e2616f9a0b94881cd7711c18d62a35 + + + + const char * + FLAC__VENDOR_STRING + group__flac__format.html + gad5cccab0de3adda58914edf3c31fd64f + + + + const FLAC__byte + FLAC__STREAM_SYNC_STRING + group__flac__format.html + ga3f275a3a6056e0d53df3b72b03adde4b + [4] + + + const uint32_t + FLAC__STREAM_SYNC + group__flac__format.html + gaf836406a1f4c1b37ef6e4023f65c127f + + + + const uint32_t + FLAC__STREAM_SYNC_LEN + group__flac__format.html + gaa95eb3cb07b7d503de94521a155af6bc + + + + const char *const + FLAC__EntropyCodingMethodTypeString + group__flac__format.html + ga41603ac35eed8c77c2f2e0b12067d88a + [] + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN + group__flac__format.html + ga12fe0569d6d11d6e6ba8d3342196ccc6 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN + group__flac__format.html + ga0c00e7f349eabc3d25dab7223cc5af15 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN + group__flac__format.html + ga6d5cfd610e45402ac02d5786bda8a755 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN + group__flac__format.html + ga7aed9c761b806bfd787c077da0ab9a07 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER + group__flac__format.html + ga80fb6cc2fb05edcea2a7e3ae004096a9 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER + group__flac__format.html + ga12e2bed2777e9beb187498ca116bcb0a + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + group__flac__format.html + ga18e9f8910a79bebe138a76a1a923076f + + + + const char *const + FLAC__SubframeTypeString + group__flac__format.html + ga78d78f45f123cfbb50cebd61b96097df + [] + + + const uint32_t + FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN + group__flac__format.html + ga303c4e38674249f42ec8735354622463 + + + + const uint32_t + FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN + group__flac__format.html + ga918e00beab5d7826e37b6397520df4c8 + + + + const uint32_t + FLAC__SUBFRAME_ZERO_PAD_LEN + group__flac__format.html + ga8f4ad64ca91dd750a38b5c2d30838fdc + + + + const uint32_t + FLAC__SUBFRAME_TYPE_LEN + group__flac__format.html + ga65c51d6c43f33179072d7225768e14a2 + + + + const uint32_t + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + group__flac__format.html + gaf2e0e7e4f28e357646ad7e5dfcc90f2c + + + + const uint32_t + FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK + group__flac__format.html + gacb235be931ef14cee71ad37bc1924667 + + + + const uint32_t + FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK + group__flac__format.html + ga93b8d9b7b76ff5cefa8ce8965a9dca9c + + + + const uint32_t + FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK + group__flac__format.html + gac7884342f77d4f16f1921a0cc7a2d3ef + + + + const uint32_t + FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK + group__flac__format.html + ga5c1baa1525de2749f74c174fad422266 + + + + const char *const + FLAC__ChannelAssignmentString + group__flac__format.html + gab1a1d3929a4e5a5aff2c15010742aa21 + [] + + + const char *const + FLAC__FrameNumberTypeString + group__flac__format.html + ga931a0e63c0f2b31fab801e1dd693fa4e + [] + + + const uint32_t + FLAC__FRAME_HEADER_SYNC + group__flac__format.html + ga7af18147ae3a5bb75136843f6e271a4d + + + + const uint32_t + FLAC__FRAME_HEADER_SYNC_LEN + group__flac__format.html + gab3821624c367fac8d994d0ab43229c13 + + + + const uint32_t + FLAC__FRAME_HEADER_RESERVED_LEN + group__flac__format.html + gaed36cf061a5112a72d33b5fdb2941cf4 + + + + const uint32_t + FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN + group__flac__format.html + ga73711753949d786e168222b2cf9502dd + + + + const uint32_t + FLAC__FRAME_HEADER_BLOCK_SIZE_LEN + group__flac__format.html + gaf9b185ee73ab9166498aa087f506c895 + + + + const uint32_t + FLAC__FRAME_HEADER_SAMPLE_RATE_LEN + group__flac__format.html + ga8c686e8933c321c9d386db6a6f0d5f70 + + + + const uint32_t + FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN + group__flac__format.html + ga8d2909446c32443619b9967188a07fb7 + + + + const uint32_t + FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN + group__flac__format.html + ga47f63b74fff6e3396d6203d1022062be + + + + const uint32_t + FLAC__FRAME_HEADER_ZERO_PAD_LEN + group__flac__format.html + ga3d73f3519e9ec387c1cf5d54bdfb022f + + + + const uint32_t + FLAC__FRAME_HEADER_CRC_LEN + group__flac__format.html + gac0478a55947c6fb97f53f6a9222a0952 + + + + const uint32_t + FLAC__FRAME_FOOTER_CRC_LEN + group__flac__format.html + ga3e74578ca10d5a2a80766040443665f3 + + + + const char *const + FLAC__MetadataTypeString + group__flac__format.html + gaa9ad23f06a579d1110d61d54c8c999f0 + [] + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN + group__flac__format.html + ga08f9ac0cd9e3fe8db67a16c011b1c9f0 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN + group__flac__format.html + ga60a3c8fc22960cec9adb6e22b866d61c + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN + group__flac__format.html + gaab054a54f7725f6fc250321f245e1f9d + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN + group__flac__format.html + gafb35eac8504f1903654cb28f924c5c22 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN + group__flac__format.html + gaac031487db3e1961cb5d48f0ce5107b8 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN + group__flac__format.html + gab7c3111fe0e73ac3b323ba881d02a8b1 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN + group__flac__format.html + gaae73b50a208bc0b9479b56b5be546f69 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN + group__flac__format.html + ga0d6496e976945999313c9029dba46b2b + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN + group__flac__format.html + ga651ba492225f315a70286eccd3c3184b + + + + const uint32_t + FLAC__STREAM_METADATA_APPLICATION_ID_LEN + group__flac__format.html + ga8040c7fa72cfc55c74e43d620e64a805 + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN + group__flac__format.html + ga9e95bd97ef2fa28b1d5bbd3917160f9d + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN + group__flac__format.html + gaaa177c78a35cdd323845928326274f63 + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN + group__flac__format.html + ga62341e0615038b3eade3c7691f410cca + + + + const FLAC__uint64 + FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER + group__flac__format.html + gad5d58774aea926635e6841c411d60566 + + + + const uint32_t + FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN + group__flac__format.html + ga7ff8c3f4693944031b9ac8ff99093df6 + + + + const uint32_t + FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN + group__flac__format.html + ga2019f140758b10d086e438e43a257036 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN + group__flac__format.html + gab448a7b0ee7c06c6fa23155d29c37ccb + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN + group__flac__format.html + ga9d3b4268a36fa8a5d5f8cf2ee704ceb2 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN + group__flac__format.html + ga978b9c0ec4220d22a6bd4aab75fb9949 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN + group__flac__format.html + gad09fd65eb06250d671d05eb8e999cc89 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN + group__flac__format.html + gac4fb0980ac6a409916e4122ba25ae8fd + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN + group__flac__format.html + ga76dc2c2ae2385f2ab0752f16f7f9d4c1 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN + group__flac__format.html + gaf7f2927d240eeab1214a88bceb5deae6 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN + group__flac__format.html + ga715d4e09605238e3b40afdbdaf4717b7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN + group__flac__format.html + ga06b1d7142a95fa837eff737ee8f825be + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN + group__flac__format.html + ga4b4231131e11b216e34e49d12f210363 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN + group__flac__format.html + gaae2030a18d8421dc476ff18c95f773d7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN + group__flac__format.html + ga397890e4c43ca950d2236250d69a92f7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN + group__flac__format.html + ga285c570708526c7ebcb742c982e5d5fd + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN + group__flac__format.html + gacb9458a79b7d214e8758cc5ad4e2b18a + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN + group__flac__format.html + gaa30d6a1d38397b4851add1bb2a6d145c + + + + const char *const + FLAC__StreamMetadata_Picture_TypeString + group__flac__format.html + ga2d27672452696cb97fd39db1cf43486b + [] + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_TYPE_LEN + group__flac__format.html + ga9a91512adcf0f8293c0a8793ce8b246c + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN + group__flac__format.html + ga5186600f0920191cb61e55b2c7628287 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN + group__flac__format.html + ga6d71497d949952f8d8b16f482ebcf555 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN + group__flac__format.html + ga2819d0e2a032fd5947a1259e40b5f52a + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN + group__flac__format.html + gaf537b699909721adca031b6e3826ce22 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN + group__flac__format.html + ga553826edf5d175f81f162e3049c386ea + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_COLORS_LEN + group__flac__format.html + ga3f810c75aad1f5a0c9d1d85c56998b5b + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN + group__flac__format.html + gafd1dd421206189d123f644ff3717cb12 + + + + const uint32_t + FLAC__STREAM_METADATA_IS_LAST_LEN + group__flac__format.html + gaa51331191b62fb15793b0a35ea8821e1 + + + + const uint32_t + FLAC__STREAM_METADATA_TYPE_LEN + group__flac__format.html + gaec6fd2f0de2c3f88b7bb0449d178043c + + + + const uint32_t + FLAC__STREAM_METADATA_LENGTH_LEN + group__flac__format.html + ga90cbf669f1c3400813ee4ecdd3462ca3 + + + + + metadata.h + /home/erikd/Git/flac/include/FLAC/ + metadata_8h + export.h + callback.h + format.h + + struct FLAC__Metadata_SimpleIterator + FLAC__Metadata_SimpleIterator + group__flac__metadata__level1.html + ga6accccddbb867dfc2eece9ee3ffecb3a + + + + struct FLAC__Metadata_Chain + FLAC__Metadata_Chain + group__flac__metadata__level2.html + gaec6993c60b88f222a52af86f8f47bfdf + + + + struct FLAC__Metadata_Iterator + FLAC__Metadata_Iterator + group__flac__metadata__level2.html + ga9f3e135a07cdef7e51597646aa7b89b2 + + + + + FLAC__Metadata_SimpleIteratorStatus + group__flac__metadata__level1.html + gac926e7d2773a05066115cac9048bbec9 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a33aadd73194c0d7e307d643237e0ddcd + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a0a3933cb38c8957a8d5c3d1afb4766f9 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a20e835bbb74b4d039e598617f68d2af6 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a7785f77a612be8956fbe7cab73497220 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9af055d8c0c663e72134fe2db8037b6880 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a14c897124887858109200723826f85b7 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a088df964f0852dd7e19304e920c3ee8e + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a2ad85a32e291d1e918692d68cc22fd40 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9ac2337299c2347ca311caeaa7d71d857c + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a2e073843fa99419d76a0b210da96ceb6 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a4f855433038c576da127fc1de9d18f9b + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9aa8386ed0a20d7e91b0022d203ec3cdec + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a9d821ae65a1c5de619daa88c850906df + + + + + FLAC__Metadata_ChainStatus + group__flac__metadata__level2.html + gafe2a924893b0800b020bea8160fd4531 + + + + FLAC__METADATA_CHAIN_STATUS_OK + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a293be942ec54576f2b3c73613af968e9 + + + + FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a1be9400982f411173af46bf0c3acbdc7 + + + + FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a43d2741a650576052fa3615d8cd64d86 + + + + FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a99748a4b12ed10f9368375cc8deeb143 + + + + FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ac469c6543ebb117e99064572c16672d4 + + + + FLAC__METADATA_CHAIN_STATUS_BAD_METADATA + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a8efd2c76dc06308eb6eba59e1bc6300b + + + + FLAC__METADATA_CHAIN_STATUS_READ_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a0525de5fb5d8aeeb4e848e33a8d503c6 + + + + FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a5814bc26bcf92143198b8e7f028f43a2 + + + + FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a66460c735e4745788b40889329e8489f + + + + FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531af4ecf22bc3e5adf78a9c765f856efb0d + + + + FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a1cd3138ed493f6a0f5b95fb8481edd1e + + + + FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ab12ec938f7556a163c609194ee0aede0 + + + + FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a36b9bcf93da8e0f111738a65eab36e9d + + + + FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ab8a6aa5f115db3f07ad2ed4adbcbe060 + + + + FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a0d9e64ad6514c88b8ea9e9171c42ec9a + + + + FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531af86670707345e2d02cc84aec059459d0 + + + + FLAC__bool + FLAC__metadata_get_streaminfo + group__flac__metadata__level0.html + ga804b42d9da714199b4b383ce51078d51 + (const char *filename, FLAC__StreamMetadata *streaminfo) + + + FLAC__bool + FLAC__metadata_get_tags + group__flac__metadata__level0.html + ga1626af09cd39d4fa37d5b46ebe3790fd + (const char *filename, FLAC__StreamMetadata **tags) + + + FLAC__bool + FLAC__metadata_get_cuesheet + group__flac__metadata__level0.html + ga0f47949dca514506718276205a4fae0b + (const char *filename, FLAC__StreamMetadata **cuesheet) + + + FLAC__bool + FLAC__metadata_get_picture + group__flac__metadata__level0.html + gab9f69e48c5a33cacb924d13986bfb852 + (const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + FLAC__Metadata_SimpleIterator * + FLAC__metadata_simple_iterator_new + group__flac__metadata__level1.html + ga017ae86f3351888f50feb47026ed2482 + (void) + + + void + FLAC__metadata_simple_iterator_delete + group__flac__metadata__level1.html + ga4619be06f51429fea71e5b98900cec3e + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__Metadata_SimpleIteratorStatus + FLAC__metadata_simple_iterator_status + group__flac__metadata__level1.html + gae8fd236fe6049c61f7f3b4a6ecbcd240 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_init + group__flac__metadata__level1.html + gaba8daf276fd7da863a2522ac050125fd + (FLAC__Metadata_SimpleIterator *iterator, const char *filename, FLAC__bool read_only, FLAC__bool preserve_file_stats) + + + FLAC__bool + FLAC__metadata_simple_iterator_is_writable + group__flac__metadata__level1.html + ga5150ecd8668c610f79192a2838667790 + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_next + group__flac__metadata__level1.html + gabb7de0a1067efae353e0792dc6e51905 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_prev + group__flac__metadata__level1.html + ga6db5313b31120b28e210ae721d6525a8 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_is_last + group__flac__metadata__level1.html + ga9eb215059840960de69aa84469ba954f + (const FLAC__Metadata_SimpleIterator *iterator) + + + off_t + FLAC__metadata_simple_iterator_get_block_offset + group__flac__metadata__level1.html + gade0a61723420daeb4bc226713671c6f0 + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__MetadataType + FLAC__metadata_simple_iterator_get_block_type + group__flac__metadata__level1.html + ga17b61d17e83432913abf4334d6e0c073 + (const FLAC__Metadata_SimpleIterator *iterator) + + + uint32_t + FLAC__metadata_simple_iterator_get_block_length + group__flac__metadata__level1.html + gaf29b9a7f2e2c762756c1444e55a119fa + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_get_application_id + group__flac__metadata__level1.html + gad4fea2d7d98d16e75e6d8260f690a5dc + (FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id) + + + FLAC__StreamMetadata * + FLAC__metadata_simple_iterator_get_block + group__flac__metadata__level1.html + ga1b7374cafd886ceb880b050dfa1e387a + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_set_block + group__flac__metadata__level1.html + gae1dd863561606658f88c492682de7b80 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_simple_iterator_insert_block_after + group__flac__metadata__level1.html + ga7a0c00e93bb37324a20926e92e604102 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_simple_iterator_delete_block + group__flac__metadata__level1.html + gac3116c8e6e7f59914ae22c0c4c6b0a23 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding) + + + FLAC__Metadata_Chain * + FLAC__metadata_chain_new + group__flac__metadata__level2.html + ga381a1b6efff8d4e9d793f1dda515bd73 + (void) + + + void + FLAC__metadata_chain_delete + group__flac__metadata__level2.html + ga46b6c67f30db2955798dfb5556f63aa3 + (FLAC__Metadata_Chain *chain) + + + FLAC__Metadata_ChainStatus + FLAC__metadata_chain_status + group__flac__metadata__level2.html + ga8e74773f8ca2bb2bc0b56a65ca0299f4 + (FLAC__Metadata_Chain *chain) + + + FLAC__bool + FLAC__metadata_chain_read + group__flac__metadata__level2.html + ga5a4f2056c30f78af5a79f6b64d5bfdcd + (FLAC__Metadata_Chain *chain, const char *filename) + + + FLAC__bool + FLAC__metadata_chain_read_ogg + group__flac__metadata__level2.html + ga3995010aab28a483ad9905669e5c4954 + (FLAC__Metadata_Chain *chain, const char *filename) + + + FLAC__bool + FLAC__metadata_chain_read_with_callbacks + group__flac__metadata__level2.html + ga595f55b611ed588d4d55a9b2eb9d2add + (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_read_ogg_with_callbacks + group__flac__metadata__level2.html + gaccc2f991722682d3c31d36f51985066c + (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_check_if_tempfile_needed + group__flac__metadata__level2.html + ga46602f64d423cfe5d5f8a4155f8a97e2 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_chain_write + group__flac__metadata__level2.html + ga46bf9cf7d426078101b9297ba80bb835 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool preserve_file_stats) + + + FLAC__bool + FLAC__metadata_chain_write_with_callbacks + group__flac__metadata__level2.html + ga70532b3705294dc891d8db649a4d4843 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_write_with_callbacks_and_tempfile + group__flac__metadata__level2.html + ga72facaa621e8d798036a4a7da3643e41 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, FLAC__IOHandle temp_handle, FLAC__IOCallbacks temp_callbacks) + + + void + FLAC__metadata_chain_merge_padding + group__flac__metadata__level2.html + ga0a43897914edb751cb87f7e281aff3dc + (FLAC__Metadata_Chain *chain) + + + void + FLAC__metadata_chain_sort_padding + group__flac__metadata__level2.html + ga82b66fe71c727adb9cf80a1da9834ce5 + (FLAC__Metadata_Chain *chain) + + + FLAC__Metadata_Iterator * + FLAC__metadata_iterator_new + group__flac__metadata__level2.html + ga1941ca04671813fc039ea7fd35ae6461 + (void) + + + void + FLAC__metadata_iterator_delete + group__flac__metadata__level2.html + ga374c246e1aeafd803d29a6e99b226241 + (FLAC__Metadata_Iterator *iterator) + + + void + FLAC__metadata_iterator_init + group__flac__metadata__level2.html + ga2e93196b17a1c73e949e661e33d7311a + (FLAC__Metadata_Iterator *iterator, FLAC__Metadata_Chain *chain) + + + FLAC__bool + FLAC__metadata_iterator_next + group__flac__metadata__level2.html + ga60449d0c1d76a73978159e3aa5e79459 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__bool + FLAC__metadata_iterator_prev + group__flac__metadata__level2.html + gaa28df1c5aa56726f573f90e4bae2fe50 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__MetadataType + FLAC__metadata_iterator_get_block_type + group__flac__metadata__level2.html + ga83ecb59ffa16bfbb1e286e64f9270de1 + (const FLAC__Metadata_Iterator *iterator) + + + FLAC__StreamMetadata * + FLAC__metadata_iterator_get_block + group__flac__metadata__level2.html + gad3e7fbc3b3d9c192a3ac425c7b263641 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__bool + FLAC__metadata_iterator_set_block + group__flac__metadata__level2.html + gaf61795b21300a2b0c9940c11974aab53 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + FLAC__bool + FLAC__metadata_iterator_delete_block + group__flac__metadata__level2.html + gadf860af967d2ee483be01fc0ed8767a9 + (FLAC__Metadata_Iterator *iterator, FLAC__bool replace_with_padding) + + + FLAC__bool + FLAC__metadata_iterator_insert_block_before + group__flac__metadata__level2.html + ga8ac45e2df8b6fd6f5db345c4293aa435 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + FLAC__bool + FLAC__metadata_iterator_insert_block_after + group__flac__metadata__level2.html + ga55e53757f91696e2578196a2799fc632 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + FLAC__StreamMetadata * + FLAC__metadata_object_new + group__flac__metadata__object.html + ga5df7bc8c72cafed1391bdc5ffc876e0f + (FLAC__MetadataType type) + + + FLAC__StreamMetadata * + FLAC__metadata_object_clone + group__flac__metadata__object.html + ga29af0ecc2a015ef22289f206bc308d80 + (const FLAC__StreamMetadata *object) + + + void + FLAC__metadata_object_delete + group__flac__metadata__object.html + ga6b3159744a1e5c4ce9d349fd0ebae800 + (FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_is_equal + group__flac__metadata__object.html + ga6853bcafe731b1db37105d49f3085349 + (const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2) + + + FLAC__bool + FLAC__metadata_object_application_set_data + group__flac__metadata__object.html + ga11f340e8877c58d231b09841182d66e5 + (FLAC__StreamMetadata *object, FLAC__byte *data, uint32_t length, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_seektable_resize_points + group__flac__metadata__object.html + ga7352bb944c594f447d3ab316244a9895 + (FLAC__StreamMetadata *object, uint32_t new_num_points) + + + void + FLAC__metadata_object_seektable_set_point + group__flac__metadata__object.html + gac258246fdda91e14110a186c1d8dcc8c + (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point) + + + FLAC__bool + FLAC__metadata_object_seektable_insert_point + group__flac__metadata__object.html + ga5ba4c8024988af5985877f9e0b3fef38 + (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point) + + + FLAC__bool + FLAC__metadata_object_seektable_delete_point + group__flac__metadata__object.html + gaa138480c7ea602a31109d3870b41a12f + (FLAC__StreamMetadata *object, uint32_t point_num) + + + FLAC__bool + FLAC__metadata_object_seektable_is_legal + group__flac__metadata__object.html + gacd3e1b83fabc1dabccb725b2876c8f53 + (const FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_placeholders + group__flac__metadata__object.html + gac509d8cb126d06f4bd73505b6c432338 + (FLAC__StreamMetadata *object, uint32_t num) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_point + group__flac__metadata__object.html + ga0b3aca4fbebc206cd79f13ac36f653f0 + (FLAC__StreamMetadata *object, FLAC__uint64 sample_number) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_points + group__flac__metadata__object.html + ga409f80cb3938814ae307e609faabccc4 + (FLAC__StreamMetadata *object, FLAC__uint64 sample_numbers[], uint32_t num) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_spaced_points + group__flac__metadata__object.html + gab899d58863aa6e974b3ed4ddd2ebf09e + (FLAC__StreamMetadata *object, uint32_t num, FLAC__uint64 total_samples) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_spaced_points_by_samples + group__flac__metadata__object.html + gab91c8b020a1da37d7524051ae82328cb + (FLAC__StreamMetadata *object, uint32_t samples, FLAC__uint64 total_samples) + + + FLAC__bool + FLAC__metadata_object_seektable_template_sort + group__flac__metadata__object.html + gafb0449b639ba5c618826d893c2961260 + (FLAC__StreamMetadata *object, FLAC__bool compact) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_set_vendor_string + group__flac__metadata__object.html + ga5cf1a57afab200b4b67730a77d3ee162 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_resize_comments + group__flac__metadata__object.html + gab44132276cbec9abcadbacafbcd5f92a + (FLAC__StreamMetadata *object, uint32_t new_num_comments) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_set_comment + group__flac__metadata__object.html + ga0661d2b99c0e37fd8c5aa673eb302c03 + (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_insert_comment + group__flac__metadata__object.html + ga395fcb4900cd5710e67dc96a9a9cca70 + (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_append_comment + group__flac__metadata__object.html + ga889b8b9c5bbd1070a1214c3da8b72863 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_replace_comment + group__flac__metadata__object.html + ga0608308e8c4c09aa610747d8dff90a34 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_delete_comment + group__flac__metadata__object.html + gac9f51ea4151eb8960e56f31beaa94bd3 + (FLAC__StreamMetadata *object, uint32_t comment_num) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair + group__flac__metadata__object.html + gab644c34515c04630c62a7645fab2947e + (FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair + group__flac__metadata__object.html + ga29079764fabda53cb3e890e6d05c8345 + (const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_matches + group__flac__metadata__object.html + gaad491f6e73bfb7c5a97b75eda7f4392a + (const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, uint32_t field_name_length) + + + int + FLAC__metadata_object_vorbiscomment_find_entry_from + group__flac__metadata__object.html + gaeaf925bf881fd4e93bf68ce09b935175 + (const FLAC__StreamMetadata *object, uint32_t offset, const char *field_name) + + + int + FLAC__metadata_object_vorbiscomment_remove_entry_matching + group__flac__metadata__object.html + ga017d743b3200a27b8567ef33592224b8 + (FLAC__StreamMetadata *object, const char *field_name) + + + int + FLAC__metadata_object_vorbiscomment_remove_entries_matching + group__flac__metadata__object.html + ga5a3ff5856098c449622ba850684aec75 + (FLAC__StreamMetadata *object, const char *field_name) + + + FLAC__StreamMetadata_CueSheet_Track * + FLAC__metadata_object_cuesheet_track_new + group__flac__metadata__object.html + gafe2983a9c09685e34626cab39b3fb52c + (void) + + + FLAC__StreamMetadata_CueSheet_Track * + FLAC__metadata_object_cuesheet_track_clone + group__flac__metadata__object.html + ga1293d6df6daf2d65143d8bb40eed9261 + (const FLAC__StreamMetadata_CueSheet_Track *object) + + + void + FLAC__metadata_object_cuesheet_track_delete + group__flac__metadata__object.html + gaa533fd7b72fa079e783de4b155b241ce + (FLAC__StreamMetadata_CueSheet_Track *object) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_resize_indices + group__flac__metadata__object.html + ga003c90292bc93a877060c34a486fc2b4 + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t new_num_indices) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_insert_index + group__flac__metadata__object.html + ga2d66b56b6ebda795ccee86968029e6ad + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num, FLAC__StreamMetadata_CueSheet_Index index) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_insert_blank_index + group__flac__metadata__object.html + ga49ff698f47d914f4e9e45032b3433fba + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_delete_index + group__flac__metadata__object.html + gabc751423461062096470b31613468feb + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_resize_tracks + group__flac__metadata__object.html + ga9c2edc662e4109c0f8ab5fd72bddaccf + (FLAC__StreamMetadata *object, uint32_t new_num_tracks) + + + FLAC__bool + FLAC__metadata_object_cuesheet_set_track + group__flac__metadata__object.html + gab5f4c6e58c5aa72223e80e7dcdeecfe9 + (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_cuesheet_insert_track + group__flac__metadata__object.html + gaa5e7694a181545251f263fcb672abf3d + (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_cuesheet_insert_blank_track + group__flac__metadata__object.html + ga7ccabeffadad2c13522439f1337718ca + (FLAC__StreamMetadata *object, uint32_t track_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_delete_track + group__flac__metadata__object.html + ga241f5d623483b5aebc3a721cce3fa8ec + (FLAC__StreamMetadata *object, uint32_t track_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_is_legal + group__flac__metadata__object.html + ga1a443d9299ce69694ad59bec4519d7b2 + (const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation) + + + FLAC__uint32 + FLAC__metadata_object_cuesheet_calculate_cddb_id + group__flac__metadata__object.html + gaff2f825950b3e4dda4c8ddbf8e2f7ecd + (const FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_picture_set_mime_type + group__flac__metadata__object.html + ga4511ae9ca994c9f4ab035a3c1aa98f45 + (FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_set_description + group__flac__metadata__object.html + ga293fe7d8b8b9e49d2414db0925b0f442 + (FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_set_data + group__flac__metadata__object.html + ga00c330534ef8336ed92b30f9e676bb5f + (FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_is_legal + group__flac__metadata__object.html + ga88268a5186e37d4b98b4df7870561128 + (const FLAC__StreamMetadata *object, const char **violation) + + + const char *const + FLAC__Metadata_SimpleIteratorStatusString + group__flac__metadata__level1.html + gaa2a8b972800c34f9f5807cadf6ecdb57 + [] + + + const char *const + FLAC__Metadata_ChainStatusString + group__flac__metadata__level2.html + ga6498d1976b0d9fa3f8f6295c02e622dd + [] + + + + metadata.h + /home/erikd/Git/flac/include/FLAC++/ + _09_2metadata_8h + export.h + FLAC/metadata.h + FLAC::Metadata::Prototype + FLAC::Metadata::StreamInfo + FLAC::Metadata::Padding + FLAC::Metadata::Application + FLAC::Metadata::SeekTable + FLAC::Metadata::VorbisComment + FLAC::Metadata::VorbisComment::Entry + FLAC::Metadata::CueSheet + FLAC::Metadata::CueSheet::Track + FLAC::Metadata::Picture + FLAC::Metadata::Unknown + FLAC::Metadata::SimpleIterator + FLAC::Metadata::SimpleIterator::Status + FLAC::Metadata::Chain + FLAC::Metadata::Chain::Status + FLAC::Metadata::Iterator + + Prototype * + construct_block + _09_2metadata_8h.html + a8df28d7c46448436905e52a01824dbec + (::FLAC__StreamMetadata *object) + + + Prototype * + clone + group__flacpp__metadata__object.html + gae18d91726a320349b2c3fb45e79d21fc + (const Prototype *) + + + bool + get_streaminfo + group__flacpp__metadata__level0.html + ga8fa8da652f33edeb4dabb4ce39fda04b + (const char *filename, StreamInfo &streaminfo) + + + bool + get_tags + group__flacpp__metadata__level0.html + ga533a71ba745ca03068523a4a45fb0329 + (const char *filename, VorbisComment *&tags) + + + bool + get_tags + group__flacpp__metadata__level0.html + ga85166e6206f3d5635684de4257f2b00e + (const char *filename, VorbisComment &tags) + + + bool + get_cuesheet + group__flacpp__metadata__level0.html + ga4fad03d91f22d78acf35dd2f35df9ac7 + (const char *filename, CueSheet *&cuesheet) + + + bool + get_cuesheet + group__flacpp__metadata__level0.html + gaea8f05f89e36af143d73b4280f05cc0e + (const char *filename, CueSheet &cuesheet) + + + bool + get_picture + group__flacpp__metadata__level0.html + gaa44df95da4d3abc459fdc526a0d54a55 + (const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + bool + get_picture + group__flacpp__metadata__level0.html + gaa6aea22f1ebeb671db19b73277babdea + (const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + + stream_decoder.h + /home/erikd/Git/flac/include/FLAC/ + stream__decoder_8h + export.h + format.h + FLAC__StreamDecoder + + FLAC__StreamDecoderReadStatus(* + FLAC__StreamDecoderReadCallback + group__flac__stream__decoder.html + ga25d4321dc2f122d35ddc9061f44beae7 + )(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) + + + FLAC__StreamDecoderSeekStatus(* + FLAC__StreamDecoderSeekCallback + group__flac__stream__decoder.html + ga4c18b0216e0f7a83d7e4e7001230545d + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) + + + FLAC__StreamDecoderTellStatus(* + FLAC__StreamDecoderTellCallback + group__flac__stream__decoder.html + gafdf1852486617a40c285c0d76d451a5a + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) + + + FLAC__StreamDecoderLengthStatus(* + FLAC__StreamDecoderLengthCallback + group__flac__stream__decoder.html + ga5363f3b46e3f7d6a73385f6560f7e7ef + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) + + + FLAC__bool(* + FLAC__StreamDecoderEofCallback + group__flac__stream__decoder.html + ga4eac094fc609363532d90cf8374b4f7e + )(const FLAC__StreamDecoder *decoder, void *client_data) + + + FLAC__StreamDecoderWriteStatus(* + FLAC__StreamDecoderWriteCallback + group__flac__stream__decoder.html + ga61e48dc2c0d2f6c5519290ff046874a4 + )(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data) + + + void(* + FLAC__StreamDecoderMetadataCallback + group__flac__stream__decoder.html + ga6aa87c01744c1c601b7f371f627b6e14 + )(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) + + + void(* + FLAC__StreamDecoderErrorCallback + group__flac__stream__decoder.html + gac896ee6a12668e9015fab4fbc6aae996 + )(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) + + + + FLAC__StreamDecoderState + group__flac__stream__decoder.html + ga3adb6891c5871a87cd5bbae6c770ba2d + + + + FLAC__STREAM_DECODER_SEARCH_FOR_METADATA + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2dacf4455f4f681a6737a553e10f614704a + + + + FLAC__STREAM_DECODER_READ_METADATA + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da4c1853ed1babdcede9a908e12cf7ccf7 + + + + FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2daccff915757978117720ba1613d088ddf + + + + FLAC__STREAM_DECODER_READ_FRAME + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da06dc6158a51a8eb9537b65f2fbb6dc49 + + + + FLAC__STREAM_DECODER_END_OF_STREAM + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da28ce845052d9d1a780f4107e97f4c853 + + + + FLAC__STREAM_DECODER_OGG_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da3bc0343f47153c5779baf7f37f6e95cf + + + + FLAC__STREAM_DECODER_SEEK_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2daf2c6efcabdfe889081c2260e6681db49 + + + + FLAC__STREAM_DECODER_ABORTED + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2dadb52ab4785bd2eb84a95e8aa82311cd5 + + + + FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da0d08c527252420813e6a6d6d3e19324a + + + + FLAC__STREAM_DECODER_UNINITIALIZED + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da565eaf4d5e68b440ecec771cb22d3427 + + + + + FLAC__StreamDecoderInitStatus + group__flac__stream__decoder.html + gaaed54a24ac6310d29c5cafba79759c44 + + + + FLAC__STREAM_DECODER_INIT_STATUS_OK + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44ac94c7e9396f30642f34805e5d626e011 + + + + FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a8f2188c616c9bc09638eece3ae55f152 + + + + FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a798ad4b6c4e556fd4cb1afbc29562eca + + + + FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a0110567f0715c6f87357388bc7fa98f9 + + + + FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a8184c306e0cd2565a8c5adc1381cb469 + + + + FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a98bc501c9b2fb5d92d8bb0b3321d504f + + + + + FLAC__StreamDecoderReadStatus + group__flac__stream__decoder.html + gad793ead451206c64a91dc0b851027b93 + + + + FLAC__STREAM_DECODER_READ_STATUS_CONTINUE + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a9a5be0fcf0279b98b2fd462bc4871d06 + + + + FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a0a0687d25dc9f7163e6e5e294672170f + + + + FLAC__STREAM_DECODER_READ_STATUS_ABORT + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a923123aebb349e35662e35a7621b7535 + + + + + FLAC__StreamDecoderSeekStatus + group__flac__stream__decoder.html + gac8d269e3c7af1a5889d3bd38409ed67d + + + + FLAC__STREAM_DECODER_SEEK_STATUS_OK + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67daca58132d896ad7755827d3f2b72488cc + + + + FLAC__STREAM_DECODER_SEEK_STATUS_ERROR + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67da969ce92a42a2a95609452e9cf01fcc09 + + + + FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67da4a01f1e48baf015e78535cc20683ec53 + + + + + FLAC__StreamDecoderTellStatus + group__flac__stream__decoder.html + ga83708207969383bd7b5c1e9148528845 + + + + FLAC__STREAM_DECODER_TELL_STATUS_OK + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845a516a202ebf4bb61d4a1fb5b029a104dd + + + + FLAC__STREAM_DECODER_TELL_STATUS_ERROR + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845aceefd3feb853d5e68a149f2bdd1a9db1 + + + + FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845add75538234493c9f7a20a846a223ca91 + + + + + FLAC__StreamDecoderLengthStatus + group__flac__stream__decoder.html + gad5860157c2bb34501b8b9370472d727a + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_OK + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aaef01bfcdc3099686e106d8f88397653d + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aab000e31c0c20c0d19df4f2203b01ea23 + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aae35949f46f887e6d826fe0fe4b2a32c1 + + + + + FLAC__StreamDecoderWriteStatus + group__flac__stream__decoder.html + ga73f67eb9e0ab57945afe038751bc62c8 + + + + FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE + group__flac__stream__decoder.html + gga73f67eb9e0ab57945afe038751bc62c8acea48326e0ab8370d2814f4126fcb84e + + + + FLAC__STREAM_DECODER_WRITE_STATUS_ABORT + group__flac__stream__decoder.html + gga73f67eb9e0ab57945afe038751bc62c8a23bd6bfec34af704e0d5ea273f14d95d + + + + + FLAC__StreamDecoderErrorStatus + group__flac__stream__decoder.html + ga130e70bd9a73d3c2416247a3e5132ecf + + + + FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa3ceec2a553dc142ad487ae88eb6f7222 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfae393a9b91a6b2f23398675b5b57e1e86 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa208fe77a04e6ff684e50f0eae1214e26 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa8b6864ad65edd8fea039838b6d3e5575 + + + + FLAC__StreamDecoder * + FLAC__stream_decoder_new + group__flac__stream__decoder.html + ga529c3c1e46417570767fb8e4c76f5477 + (void) + + + void + FLAC__stream_decoder_delete + group__flac__stream__decoder.html + gad9cf299956da091111d13e83517d8c44 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_set_ogg_serial_number + group__flac__stream__decoder.html + ga7fd232e7a2b5070bd26450487edbc2a1 + (FLAC__StreamDecoder *decoder, long serial_number) + + + FLAC__bool + FLAC__stream_decoder_set_md5_checking + group__flac__stream__decoder.html + ga8f402243eed54f400ddd2f296ff54497 + (FLAC__StreamDecoder *decoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond + group__flac__stream__decoder.html + gad4e685f3d055f70fbaed9ffa4f70f74b + (FLAC__StreamDecoder *decoder, FLAC__MetadataType type) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond_application + group__flac__stream__decoder.html + gaee1196ff5fa97df9810f708dc2bc8326 + (FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond_all + group__flac__stream__decoder.html + ga1ce03d8f305a818ff9a573473af99dc4 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore + group__flac__stream__decoder.html + gad75f067720da89c4e9d96dedc45f73e6 + (FLAC__StreamDecoder *decoder, FLAC__MetadataType type) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore_application + group__flac__stream__decoder.html + gaab41e8bc505b24df4912de53de06b085 + (FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore_all + group__flac__stream__decoder.html + gaa1307f07fae5d7a4a0c18beeae7ec5e6 + (FLAC__StreamDecoder *decoder) + + + FLAC__StreamDecoderState + FLAC__stream_decoder_get_state + group__flac__stream__decoder.html + gaf99dac2d9255f7db4df8a6d9974a9a9a + (const FLAC__StreamDecoder *decoder) + + + const char * + FLAC__stream_decoder_get_resolved_state_string + group__flac__stream__decoder.html + gad28257412951ca266751a19e2cf54be2 + (const FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_get_md5_checking + group__flac__stream__decoder.html + gae27a6b30b55beda03559c12a5df21537 + (const FLAC__StreamDecoder *decoder) + + + FLAC__uint64 + FLAC__stream_decoder_get_total_samples + group__flac__stream__decoder.html + ga930d9b591fcfaea74359c722cdfb980c + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_channels + group__flac__stream__decoder.html + ga802d5f4c48a711b690d6d66d2e3f20a5 + (const FLAC__StreamDecoder *decoder) + + + FLAC__ChannelAssignment + FLAC__stream_decoder_get_channel_assignment + group__flac__stream__decoder.html + gae62fdf93c1fedd5fea9258ecdc78bb53 + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_bits_per_sample + group__flac__stream__decoder.html + ga689893cde90c171ca343192e92679842 + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_sample_rate + group__flac__stream__decoder.html + ga95f7cdfefba169d964e3c08672a0f0ad + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_blocksize + group__flac__stream__decoder.html + gafe07ad9949cc54944fd369fe9335c4bc + (const FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_get_decode_position + group__flac__stream__decoder.html + gaffd9b0d0832ed01e6d75930b5391def5 + (const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_stream + group__flac__stream__decoder.html + ga150d381abc5249168e439bc076544b29 + (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_stream + group__flac__stream__decoder.html + ga1b043adeb805c779c1e97cb68959d1ab + (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_FILE + group__flac__stream__decoder.html + ga80aa83631460a53263c84e654586dff0 + (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_FILE + group__flac__stream__decoder.html + ga4cc7fbaf905c24d6db48b53b7942fe72 + (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_file + group__flac__stream__decoder.html + ga4021ead5cff29fd589c915756f902f1a + (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_file + group__flac__stream__decoder.html + ga548f15d7724f3bff7f2608abe8b12f6c + (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__bool + FLAC__stream_decoder_finish + group__flac__stream__decoder.html + ga96c47c96920f363cd0972b54067818a9 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_flush + group__flac__stream__decoder.html + ga95570a455e582b2ab46ab9bb529f26ac + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_reset + group__flac__stream__decoder.html + gaa4183c2d925d5a5edddde9d1ca145725 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_single + group__flac__stream__decoder.html + ga9d6df4a39892c05955122cf7f987f856 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_until_end_of_metadata + group__flac__stream__decoder.html + ga027ffb5b75dc39b3d26f55c5e6b42682 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_until_end_of_stream + group__flac__stream__decoder.html + ga89a0723812fa6ef7cdb173715f1bc81f + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_skip_single_frame + group__flac__stream__decoder.html + ga85b666aba976f29e8dd9d7956fce4301 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_seek_absolute + group__flac__stream__decoder.html + ga6a2eb6072b9fafefc3f80f1959805ccb + (FLAC__StreamDecoder *decoder, FLAC__uint64 sample) + + + const char *const + FLAC__StreamDecoderStateString + group__flac__stream__decoder.html + gac192360ac435614394bf43235cb7981e + [] + + + const char *const + FLAC__StreamDecoderInitStatusString + group__flac__stream__decoder.html + ga0effa1d3031c3206a1719faf984a4f21 + [] + + + const char *const + FLAC__StreamDecoderReadStatusString + group__flac__stream__decoder.html + gab1ee941839b05045ae1d73ee0fdcb8c9 + [] + + + const char *const + FLAC__StreamDecoderSeekStatusString + group__flac__stream__decoder.html + gac49aff0593584b7ed5fd0b2508f824fc + [] + + + const char *const + FLAC__StreamDecoderTellStatusString + group__flac__stream__decoder.html + ga3c1b7d5a174d6c2e6bcf1b9a87b5a5cb + [] + + + const char *const + FLAC__StreamDecoderLengthStatusString + group__flac__stream__decoder.html + ga792933fa9e8b65bfcac62d82e52415f5 + [] + + + const char *const + FLAC__StreamDecoderWriteStatusString + group__flac__stream__decoder.html + ga9df7f0fd8cf9888f97a52b5f3f33cdb0 + [] + + + const char *const + FLAC__StreamDecoderErrorStatusString + group__flac__stream__decoder.html + gac428c69b084529322df05ee793440b88 + [] + + + + stream_encoder.h + /home/erikd/Git/flac/include/FLAC/ + stream__encoder_8h + export.h + format.h + stream_decoder.h + FLAC__StreamEncoder + + FLAC__StreamEncoderReadStatus(* + FLAC__StreamEncoderReadCallback + group__flac__stream__encoder.html + ga18b7941b93bae067192732e913536d44 + )(const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) + + + FLAC__StreamEncoderWriteStatus(* + FLAC__StreamEncoderWriteCallback + group__flac__stream__encoder.html + ga2998a0af774d793928a7cc3bbc84dcdf + )(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data) + + + FLAC__StreamEncoderSeekStatus(* + FLAC__StreamEncoderSeekCallback + group__flac__stream__encoder.html + ga70b85349d5242e4401c4d8ddf6d9bbca + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data) + + + FLAC__StreamEncoderTellStatus(* + FLAC__StreamEncoderTellCallback + group__flac__stream__encoder.html + gabefdf2279e1d0347d9f98f46da4e415b + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data) + + + void(* + FLAC__StreamEncoderMetadataCallback + group__flac__stream__encoder.html + ga091fbf3340d85bcbda1090c31bc320cf + )(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data) + + + void(* + FLAC__StreamEncoderProgressCallback + group__flac__stream__encoder.html + ga42a5fab5f91c1b0c3f7098499285f277 + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data) + + + + FLAC__StreamEncoderState + group__flac__stream__encoder.html + gac5e9db4fc32ca2fa74abd9c8a87c02a5 + + + + FLAC__STREAM_ENCODER_OK + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a3a6666ae61a64d955341cec285695bf6 + + + + FLAC__STREAM_ENCODER_UNINITIALIZED + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a04912e04a3c57d3c53de34742f96d635 + + + + FLAC__STREAM_ENCODER_OGG_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5abb312cc8318c7a541cadacd23ceb3bbb + + + + FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a4cb80be4f83eb71f04e74968af1d259e + + + + FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a011e3d8b2d02a940bfd0e59c05cf5ae0 + + + + FLAC__STREAM_ENCODER_CLIENT_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a8c2b2e9efb43a4f9b25b1d2bd9af5f23 + + + + FLAC__STREAM_ENCODER_IO_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5af0e4738522e05a7248435c7148f58f91 + + + + FLAC__STREAM_ENCODER_FRAMING_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a2c2937b7f1600a4ac7c84fc70ab34cf1 + + + + FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a35db99d9958bd6c2301a04715fbc44fd + + + + + FLAC__StreamEncoderInitStatus + group__flac__stream__encoder.html + ga3bb869620af2b188d77982a5c30b047d + + + + FLAC__STREAM_ENCODER_INIT_STATUS_OK + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da20501dce552da74c5df935eeaa0c9ee3 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da9c64e5f9020d8799e1cd9d39d50e6955 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da8a822b011de88b67c114505ffef39327 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dac2cf461f02e20513003b8cadeae03f9f + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da0541c4f827f081b9f1c54c9441e4aa65 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dad6d2631f464183c0c165155200882e6b + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da6fdcde9e18c37450c79e8f12b9d9c134 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da652c445f1bd8b6cfb963a30bf416c95a + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da38a69e94b3333e4ba779d2ff8f43f64e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da5be80403bd7a43450139442e0f34ad7e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da62a17a3ed3c05ddf8ea7f6fecbd4e4a1 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047daa793405c858c7606539082750080a47e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047daa85afdd1849c75a19594416cef63e3e9 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dab4e7b50d176a127575df90383cb15e1d + + + + + FLAC__StreamEncoderReadStatus + group__flac__stream__encoder.html + ga2e81f007fb0a7414c0bbb453f37ea37f + + + + FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa4bdd691d3666f19ec96ff99402347a2e + + + + FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa562fef84bf86a9a39682e23066d9cfee + + + + FLAC__STREAM_ENCODER_READ_STATUS_ABORT + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa69b94eeab60e07d5fd33f2b3c8b85759 + + + + FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa9bb730b8f6354cc1e810017a2f700316 + + + + + FLAC__StreamEncoderWriteStatus + group__flac__stream__encoder.html + ga3737471fd49730bb8cf9b182bdeda05e + + + + FLAC__STREAM_ENCODER_WRITE_STATUS_OK + group__flac__stream__encoder.html + gga3737471fd49730bb8cf9b182bdeda05ea5622e0199f0203c402fcb7b4ca76f808 + + + + FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR + group__flac__stream__encoder.html + gga3737471fd49730bb8cf9b182bdeda05ea18e7cd6a443fb8bd303c3ba89946bc85 + + + + + FLAC__StreamEncoderSeekStatus + group__flac__stream__encoder.html + ga6d5be3489f45fcf0c252022c65d87aca + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_OK + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaa99853066610d798627888ec2e5afa667 + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaabf93227938b4e1bf3656fe4ba4159c60 + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaa8930179a426134caf30a70147448f037 + + + + + FLAC__StreamEncoderTellStatus + group__flac__stream__encoder.html + gab628f63181250eb977a28bf12b7dd9ff + + + + FLAC__STREAM_ENCODER_TELL_STATUS_OK + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffa48e071d89494ac8f5471e7c0d7a6f43b + + + + FLAC__STREAM_ENCODER_TELL_STATUS_ERROR + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffaf638882e04d7c58e6c29dcc7f410864b + + + + FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffa9d6bbd317f85fd2d6fc72f64e3cb56e7 + + + + FLAC__StreamEncoder * + FLAC__stream_encoder_new + group__flac__stream__encoder.html + gab09f7620a0ba9c30020c189ce112a52f + (void) + + + void + FLAC__stream_encoder_delete + group__flac__stream__encoder.html + ga7212e6846f543618b6289666de216b29 + (FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_set_ogg_serial_number + group__flac__stream__encoder.html + gaf4f75f7689b6b3fff16b03028aa38326 + (FLAC__StreamEncoder *encoder, long serial_number) + + + FLAC__bool + FLAC__stream_encoder_set_verify + group__flac__stream__encoder.html + ga795be6527a9eb1219331afef2f182a41 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_streamable_subset + group__flac__stream__encoder.html + ga35a18815a58141b88db02317892d059b + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_channels + group__flac__stream__encoder.html + ga9ec612a48f81805eafdb059548cdaf92 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_bits_per_sample + group__flac__stream__encoder.html + ga7453fc29d7e86b499f23b1adfba98da1 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_sample_rate + group__flac__stream__encoder.html + gaa6b6537875900a6e0f4418a504f55f25 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_compression_level + group__flac__stream__encoder.html + gaacc01aab02849119f929b8516420fcd3 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_blocksize + group__flac__stream__encoder.html + gac35cb1b5614464658262e684c4ac3a2f + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_do_mid_side_stereo + group__flac__stream__encoder.html + ga3bff001a1efc2e4eb520c954066330f4 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_loose_mid_side_stereo + group__flac__stream__encoder.html + ga7965d51b93f14cbd6ad5bb9d34f10536 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_apodization + group__flac__stream__encoder.html + ga6598f09ac782a1f2a5743ddf247c81c8 + (FLAC__StreamEncoder *encoder, const char *specification) + + + FLAC__bool + FLAC__stream_encoder_set_max_lpc_order + group__flac__stream__encoder.html + gad8a0ff058c46f9ce95dc0508f4bdfb0c + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_qlp_coeff_precision + group__flac__stream__encoder.html + ga179751f915a3d6fc2ca4b33a67bb8780 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_do_qlp_coeff_prec_search + group__flac__stream__encoder.html + ga495890067203958e5d67a641f8757b1c + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_do_escape_coding + group__flac__stream__encoder.html + gaed594c373d829f77808a935c54a25fa4 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_do_exhaustive_model_search + group__flac__stream__encoder.html + ga054313e7f6eaf5c6122d82c6a8b3b808 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_min_residual_partition_order + group__flac__stream__encoder.html + ga8f2ed5a2b35bfea13e6605b0fe55f0fa + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_max_residual_partition_order + group__flac__stream__encoder.html + gab9e02bfbbb1d4fcdb666e2e9a678b4f6 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_rice_parameter_search_dist + group__flac__stream__encoder.html + ga2cc4a05caba8a4058f744d9eb8732caa + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_total_samples_estimate + group__flac__stream__encoder.html + gab943094585d1c0a4bec497e73567cf85 + (FLAC__StreamEncoder *encoder, FLAC__uint64 value) + + + FLAC__bool + FLAC__stream_encoder_set_metadata + group__flac__stream__encoder.html + ga80d57f9069e354cbf1a15a3e3ad9ca78 + (FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, uint32_t num_blocks) + + + FLAC__StreamEncoderState + FLAC__stream_encoder_get_state + group__flac__stream__encoder.html + ga0803321b37189dc5eea4fe1cea25c29a + (const FLAC__StreamEncoder *encoder) + + + FLAC__StreamDecoderState + FLAC__stream_encoder_get_verify_decoder_state + group__flac__stream__encoder.html + ga820704b95a711e77d55363e8753f9f9f + (const FLAC__StreamEncoder *encoder) + + + const char * + FLAC__stream_encoder_get_resolved_state_string + group__flac__stream__encoder.html + ga0916f813358eb6f1e44148353acd4d42 + (const FLAC__StreamEncoder *encoder) + + + void + FLAC__stream_encoder_get_verify_decoder_error_stats + group__flac__stream__encoder.html + ga28373aaf2c47336828d5672696c36662 + (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got) + + + FLAC__bool + FLAC__stream_encoder_get_verify + group__flac__stream__encoder.html + ga9efc4964992e001bcec0a8eaedee8d60 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_streamable_subset + group__flac__stream__encoder.html + ga201e64032ea4298b2379c93652b28245 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_channels + group__flac__stream__encoder.html + ga412401503141dd42e37831140f78cfa1 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_bits_per_sample + group__flac__stream__encoder.html + ga169bbf662b2a2df017b93f663deadd1d + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_sample_rate + group__flac__stream__encoder.html + gae56f27536528f13375ffdd23fa9045f7 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_blocksize + group__flac__stream__encoder.html + gaf8a9715b2d09a6876b8dc104bfd70cdc + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_mid_side_stereo + group__flac__stream__encoder.html + ga32da1f89997ab94ce5d677fcd7e24d56 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_loose_mid_side_stereo + group__flac__stream__encoder.html + ga1455859cf3d233bd4dfff86af010f4fa + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_max_lpc_order + group__flac__stream__encoder.html + ga5e1d1c9acd3d5a17106b51f0c0107567 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_qlp_coeff_precision + group__flac__stream__encoder.html + ga909830fb7f4a0a35710452df39c269a3 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_qlp_coeff_prec_search + group__flac__stream__encoder.html + ga65bee5a769d4c5fdc95b81c2fb95061c + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_escape_coding + group__flac__stream__encoder.html + ga0c944049800991422c1bfb3b1c0567a5 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_exhaustive_model_search + group__flac__stream__encoder.html + ga7bc8b32f58df5564db4b6114cb11042d + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_min_residual_partition_order + group__flac__stream__encoder.html + ga4fa722297092aeaebc9d9e743a327d14 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_max_residual_partition_order + group__flac__stream__encoder.html + ga6f5dfbfb5c6e569c4bae5555c9bf87e6 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_rice_parameter_search_dist + group__flac__stream__encoder.html + gaca0e38f283b2772b92da7cb4495d909a + (const FLAC__StreamEncoder *encoder) + + + FLAC__uint64 + FLAC__stream_encoder_get_total_samples_estimate + group__flac__stream__encoder.html + gaa22d8935bd985b9cccf6592160ffc6f2 + (const FLAC__StreamEncoder *encoder) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_stream + group__flac__stream__encoder.html + ga7d801879812b48fcbc40f409800c453c + (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_stream + group__flac__stream__encoder.html + ga9d1981bcd30b8db4d73b5466be5570f5 + (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderReadCallback read_callback, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_FILE + group__flac__stream__encoder.html + ga12789a1c4a4e31cd2e7187259fe127f8 + (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_FILE + group__flac__stream__encoder.html + ga57fc668f50ffd99a93df326bfab5e2b1 + (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_file + group__flac__stream__encoder.html + ga9d5117c2ac0eeb572784116bf2eb541b + (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_file + group__flac__stream__encoder.html + ga4891de2f56045941ae222b61b0fd83a4 + (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__bool + FLAC__stream_encoder_finish + group__flac__stream__encoder.html + ga3522f9de5af29807df1b9780a418b7f3 + (FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_process + group__flac__stream__encoder.html + ga87b9c361292da5c5928a8fb5fda7c423 + (FLAC__StreamEncoder *encoder, const FLAC__int32 *const buffer[], uint32_t samples) + + + FLAC__bool + FLAC__stream_encoder_process_interleaved + group__flac__stream__encoder.html + ga6e31c221f7e23345267c52f53c046c24 + (FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], uint32_t samples) + + + const char *const + FLAC__StreamEncoderStateString + group__flac__stream__encoder.html + ga1410b7a076b0c8401682f9f812b66df5 + [] + + + const char *const + FLAC__StreamEncoderInitStatusString + group__flac__stream__encoder.html + ga0ec1fa7b3f55b4f07a2727846c285776 + [] + + + const char *const + FLAC__StreamEncoderReadStatusString + group__flac__stream__encoder.html + ga1654422c81846b9b399ac5fb98df61dd + [] + + + const char *const + FLAC__StreamEncoderWriteStatusString + group__flac__stream__encoder.html + ga9f64480accd01525cbfa25c11e6bb74e + [] + + + const char *const + FLAC__StreamEncoderSeekStatusString + group__flac__stream__encoder.html + gabb137b2d787756bf97398f0b60e54c20 + [] + + + const char *const + FLAC__StreamEncoderTellStatusString + group__flac__stream__encoder.html + gaf8ab921ae968be2be255be1f136e1eec + [] + + + + FLAC::Decoder::File + classFLAC_1_1Decoder_1_1File.html + FLAC::Decoder::Stream + + virtual ::FLAC__StreamDecoderInitStatus + init + classFLAC_1_1Decoder_1_1File.html + a793d2d9c08900cbe6ef6e2739c1e091f + (FILE *file) + + + virtual ::FLAC__StreamDecoderInitStatus + init + classFLAC_1_1Decoder_1_1File.html + a4252bc6c949ec9456eea4af2a277dd6a + (const char *filename) + + + virtual ::FLAC__StreamDecoderInitStatus + init + classFLAC_1_1Decoder_1_1File.html + a104a987909937cd716d382fdef9a0245 + (const std::string &filename) + + + virtual ::FLAC__StreamDecoderInitStatus + init_ogg + classFLAC_1_1Decoder_1_1File.html + ab840fa309cb000e041f8427cd3e6354a + (FILE *file) + + + virtual ::FLAC__StreamDecoderInitStatus + init_ogg + classFLAC_1_1Decoder_1_1File.html + a1af59a2861de527e8de5697683516b6e + (const char *filename) + + + virtual ::FLAC__StreamDecoderInitStatus + init_ogg + classFLAC_1_1Decoder_1_1File.html + ac88baae2ff5a4c206a953262cd7447a9 + (const std::string &filename) + + + virtual bool + set_ogg_serial_number + classFLAC_1_1Decoder_1_1Stream.html + aa257e8156474458cd8eed2902d3c2674 + (long value) + + + virtual bool + set_md5_checking + classFLAC_1_1Decoder_1_1Stream.html + a8f46d34c10a65d9c48e990f9b3bbe4e2 + (bool value) + + + virtual bool + set_metadata_respond + classFLAC_1_1Decoder_1_1Stream.html + a9208dd09a48d7a3034119565f51f0c56 + (::FLAC__MetadataType type) + + + virtual bool + set_metadata_respond_application + classFLAC_1_1Decoder_1_1Stream.html + a95468ca8d92d1693b21203ad3e0d4545 + (const FLAC__byte id[4]) + + + virtual bool + set_metadata_respond_all + classFLAC_1_1Decoder_1_1Stream.html + a2ecec7b37f6f1d16ddcfee83a6919b5b + () + + + virtual bool + set_metadata_ignore + classFLAC_1_1Decoder_1_1Stream.html + ae239124fe0fc8fce3dcdae904bce7544 + (::FLAC__MetadataType type) + + + virtual bool + set_metadata_ignore_application + classFLAC_1_1Decoder_1_1Stream.html + ac963b9eaf8271fc47ef799901b6d3650 + (const FLAC__byte id[4]) + + + virtual bool + set_metadata_ignore_all + classFLAC_1_1Decoder_1_1Stream.html + a900ecb31410c4ce56f23477b22c1c799 + () + + + State + get_state + classFLAC_1_1Decoder_1_1Stream.html + ab9b2544cf4e3b6e045ce3a6341d5a62c + () const + + + virtual bool + get_md5_checking + classFLAC_1_1Decoder_1_1Stream.html + a4264fbd1585cbeb1a28b81c2b09323b6 + () const + + + virtual FLAC__uint64 + get_total_samples + classFLAC_1_1Decoder_1_1Stream.html + ac767e144749a6b7f4bb6fa0ab7959114 + () const + + + virtual uint32_t + get_channels + classFLAC_1_1Decoder_1_1Stream.html + a599a8cc8fa2522f5886977f616d144d7 + () const + + + virtual ::FLAC__ChannelAssignment + get_channel_assignment + classFLAC_1_1Decoder_1_1Stream.html + a7810225c9440e0bceb4e9c5e8d728be1 + () const + + + virtual uint32_t + get_bits_per_sample + classFLAC_1_1Decoder_1_1Stream.html + a55fa74c9d7a7daf444c43adf624b7a3b + () const + + + virtual uint32_t + get_sample_rate + classFLAC_1_1Decoder_1_1Stream.html + a1413d69a409dc80a5774a061915393eb + () const + + + virtual uint32_t + get_blocksize + classFLAC_1_1Decoder_1_1Stream.html + a6f0b833696a9e12c0914f20350af5006 + () const + + + virtual bool + get_decode_position + classFLAC_1_1Decoder_1_1Stream.html + a36100b072893e211331099e06084cfab + (FLAC__uint64 *position) const + + + virtual ::FLAC__StreamDecoderInitStatus + init + classFLAC_1_1Decoder_1_1Stream.html + a33169215b21ff3582c0c1f5fef6dda47 + () + + + virtual ::FLAC__StreamDecoderInitStatus + init_ogg + classFLAC_1_1Decoder_1_1Stream.html + adb52518fda2e3e544f4c8807f4227ba7 + () + + + virtual bool + finish + classFLAC_1_1Decoder_1_1Stream.html + a0221e9ba254566331e8d0e33579ee3c0 + () + + + virtual bool + flush + classFLAC_1_1Decoder_1_1Stream.html + a9cb00ff4543d411a9b3c64b1f3f058bb + () + + + virtual bool + reset + classFLAC_1_1Decoder_1_1Stream.html + a7b6b4665e139234fa80acd0a1f16ca7c + () + + + virtual bool + process_single + classFLAC_1_1Decoder_1_1Stream.html + ab50ff5df74c47f4e0f1c91d63a59f5ac + () + + + virtual bool + process_until_end_of_metadata + classFLAC_1_1Decoder_1_1Stream.html + ab0cabe42278b18e9d3dbfee39cc720cf + () + + + virtual bool + process_until_end_of_stream + classFLAC_1_1Decoder_1_1Stream.html + afbd6ff20477cae1ace00b8c304a4795a + () + + + virtual bool + skip_single_frame + classFLAC_1_1Decoder_1_1Stream.html + a30a738e7ae11f389c58a74f7ff647fe4 + () + + + virtual bool + seek_absolute + classFLAC_1_1Decoder_1_1Stream.html + ac146128003d4ccd46bcffa82003e545c + (FLAC__uint64 sample) + + + virtual bool + is_valid + classFLAC_1_1Decoder_1_1Stream.html + a031b66dfb0e613a83ac302e7c94c7156 + () const + + + + operator bool + classFLAC_1_1Decoder_1_1Stream.html + a390efefcf618ca7f3bfcc1d88ecdb4a1 + () const + + + virtual ::FLAC__StreamDecoderReadStatus + read_callback + classFLAC_1_1Decoder_1_1File.html + a48c900fc010f14786e98908377f41195 + (FLAC__byte buffer[], size_t *bytes) + + + virtual ::FLAC__StreamDecoderSeekStatus + seek_callback + classFLAC_1_1Decoder_1_1Stream.html + af6f7e0811f34837752fbe20f3348f895 + (FLAC__uint64 absolute_byte_offset) + + + virtual ::FLAC__StreamDecoderTellStatus + tell_callback + classFLAC_1_1Decoder_1_1Stream.html + a0075cb08ab7bf5230ec0360ae3065a50 + (FLAC__uint64 *absolute_byte_offset) + + + virtual ::FLAC__StreamDecoderLengthStatus + length_callback + classFLAC_1_1Decoder_1_1Stream.html + a6a9af9305783c4af4b93698293dcdf84 + (FLAC__uint64 *stream_length) + + + virtual bool + eof_callback + classFLAC_1_1Decoder_1_1Stream.html + ac06aa682efc2e819624e78a3e6b4bd7b + () + + + virtual ::FLAC__StreamDecoderWriteStatus + write_callback + classFLAC_1_1Decoder_1_1Stream.html + af5a61e9ff720cca3eb38d1f2790f00fb + (const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0 + + + virtual void + metadata_callback + classFLAC_1_1Decoder_1_1Stream.html + a20d0873073d9542e08fb48becaa607c9 + (const ::FLAC__StreamMetadata *metadata) + + + virtual void + error_callback + classFLAC_1_1Decoder_1_1Stream.html + a0dbadd163ade7bc2d1858e7a435d5e52 + (::FLAC__StreamDecoderErrorStatus status)=0 + + + virtual bool + is_valid + classFLAC_1_1Decoder_1_1Stream.html + a031b66dfb0e613a83ac302e7c94c7156 + () const + + + + operator bool + classFLAC_1_1Decoder_1_1Stream.html + a390efefcf618ca7f3bfcc1d88ecdb4a1 + () const + + + + FLAC::Decoder::Stream + classFLAC_1_1Decoder_1_1Stream.html + FLAC::Decoder::Stream::State + + virtual bool + set_ogg_serial_number + classFLAC_1_1Decoder_1_1Stream.html + aa257e8156474458cd8eed2902d3c2674 + (long value) + + + virtual bool + set_md5_checking + classFLAC_1_1Decoder_1_1Stream.html + a8f46d34c10a65d9c48e990f9b3bbe4e2 + (bool value) + + + virtual bool + set_metadata_respond + classFLAC_1_1Decoder_1_1Stream.html + a9208dd09a48d7a3034119565f51f0c56 + (::FLAC__MetadataType type) + + + virtual bool + set_metadata_respond_application + classFLAC_1_1Decoder_1_1Stream.html + a95468ca8d92d1693b21203ad3e0d4545 + (const FLAC__byte id[4]) + + + virtual bool + set_metadata_respond_all + classFLAC_1_1Decoder_1_1Stream.html + a2ecec7b37f6f1d16ddcfee83a6919b5b + () + + + virtual bool + set_metadata_ignore + classFLAC_1_1Decoder_1_1Stream.html + ae239124fe0fc8fce3dcdae904bce7544 + (::FLAC__MetadataType type) + + + virtual bool + set_metadata_ignore_application + classFLAC_1_1Decoder_1_1Stream.html + ac963b9eaf8271fc47ef799901b6d3650 + (const FLAC__byte id[4]) + + + virtual bool + set_metadata_ignore_all + classFLAC_1_1Decoder_1_1Stream.html + a900ecb31410c4ce56f23477b22c1c799 + () + + + State + get_state + classFLAC_1_1Decoder_1_1Stream.html + ab9b2544cf4e3b6e045ce3a6341d5a62c + () const + + + virtual bool + get_md5_checking + classFLAC_1_1Decoder_1_1Stream.html + a4264fbd1585cbeb1a28b81c2b09323b6 + () const + + + virtual FLAC__uint64 + get_total_samples + classFLAC_1_1Decoder_1_1Stream.html + ac767e144749a6b7f4bb6fa0ab7959114 + () const + + + virtual uint32_t + get_channels + classFLAC_1_1Decoder_1_1Stream.html + a599a8cc8fa2522f5886977f616d144d7 + () const + + + virtual ::FLAC__ChannelAssignment + get_channel_assignment + classFLAC_1_1Decoder_1_1Stream.html + a7810225c9440e0bceb4e9c5e8d728be1 + () const + + + virtual uint32_t + get_bits_per_sample + classFLAC_1_1Decoder_1_1Stream.html + a55fa74c9d7a7daf444c43adf624b7a3b + () const + + + virtual uint32_t + get_sample_rate + classFLAC_1_1Decoder_1_1Stream.html + a1413d69a409dc80a5774a061915393eb + () const + + + virtual uint32_t + get_blocksize + classFLAC_1_1Decoder_1_1Stream.html + a6f0b833696a9e12c0914f20350af5006 + () const + + + virtual bool + get_decode_position + classFLAC_1_1Decoder_1_1Stream.html + a36100b072893e211331099e06084cfab + (FLAC__uint64 *position) const + + + virtual ::FLAC__StreamDecoderInitStatus + init + classFLAC_1_1Decoder_1_1Stream.html + a33169215b21ff3582c0c1f5fef6dda47 + () + + + virtual ::FLAC__StreamDecoderInitStatus + init_ogg + classFLAC_1_1Decoder_1_1Stream.html + adb52518fda2e3e544f4c8807f4227ba7 + () + + + virtual bool + finish + classFLAC_1_1Decoder_1_1Stream.html + a0221e9ba254566331e8d0e33579ee3c0 + () + + + virtual bool + flush + classFLAC_1_1Decoder_1_1Stream.html + a9cb00ff4543d411a9b3c64b1f3f058bb + () + + + virtual bool + reset + classFLAC_1_1Decoder_1_1Stream.html + a7b6b4665e139234fa80acd0a1f16ca7c + () + + + virtual bool + process_single + classFLAC_1_1Decoder_1_1Stream.html + ab50ff5df74c47f4e0f1c91d63a59f5ac + () + + + virtual bool + process_until_end_of_metadata + classFLAC_1_1Decoder_1_1Stream.html + ab0cabe42278b18e9d3dbfee39cc720cf + () + + + virtual bool + process_until_end_of_stream + classFLAC_1_1Decoder_1_1Stream.html + afbd6ff20477cae1ace00b8c304a4795a + () + + + virtual bool + skip_single_frame + classFLAC_1_1Decoder_1_1Stream.html + a30a738e7ae11f389c58a74f7ff647fe4 + () + + + virtual bool + seek_absolute + classFLAC_1_1Decoder_1_1Stream.html + ac146128003d4ccd46bcffa82003e545c + (FLAC__uint64 sample) + + + virtual bool + is_valid + classFLAC_1_1Decoder_1_1Stream.html + a031b66dfb0e613a83ac302e7c94c7156 + () const + + + + operator bool + classFLAC_1_1Decoder_1_1Stream.html + a390efefcf618ca7f3bfcc1d88ecdb4a1 + () const + + + virtual ::FLAC__StreamDecoderReadStatus + read_callback + classFLAC_1_1Decoder_1_1Stream.html + af91735b6c715ca648493e837f513ef3d + (FLAC__byte buffer[], size_t *bytes)=0 + + + virtual ::FLAC__StreamDecoderSeekStatus + seek_callback + classFLAC_1_1Decoder_1_1Stream.html + af6f7e0811f34837752fbe20f3348f895 + (FLAC__uint64 absolute_byte_offset) + + + virtual ::FLAC__StreamDecoderTellStatus + tell_callback + classFLAC_1_1Decoder_1_1Stream.html + a0075cb08ab7bf5230ec0360ae3065a50 + (FLAC__uint64 *absolute_byte_offset) + + + virtual ::FLAC__StreamDecoderLengthStatus + length_callback + classFLAC_1_1Decoder_1_1Stream.html + a6a9af9305783c4af4b93698293dcdf84 + (FLAC__uint64 *stream_length) + + + virtual bool + eof_callback + classFLAC_1_1Decoder_1_1Stream.html + ac06aa682efc2e819624e78a3e6b4bd7b + () + + + virtual ::FLAC__StreamDecoderWriteStatus + write_callback + classFLAC_1_1Decoder_1_1Stream.html + af5a61e9ff720cca3eb38d1f2790f00fb + (const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0 + + + virtual void + metadata_callback + classFLAC_1_1Decoder_1_1Stream.html + a20d0873073d9542e08fb48becaa607c9 + (const ::FLAC__StreamMetadata *metadata) + + + virtual void + error_callback + classFLAC_1_1Decoder_1_1Stream.html + a0dbadd163ade7bc2d1858e7a435d5e52 + (::FLAC__StreamDecoderErrorStatus status)=0 + + + virtual bool + is_valid + classFLAC_1_1Decoder_1_1Stream.html + a031b66dfb0e613a83ac302e7c94c7156 + () const + + + + operator bool + classFLAC_1_1Decoder_1_1Stream.html + a390efefcf618ca7f3bfcc1d88ecdb4a1 + () const + + + + FLAC::Decoder::Stream::State + classFLAC_1_1Decoder_1_1Stream_1_1State.html + + + FLAC::Encoder::File + classFLAC_1_1Encoder_1_1File.html + FLAC::Encoder::Stream + + virtual ::FLAC__StreamEncoderInitStatus + init + classFLAC_1_1Encoder_1_1File.html + afefae0d1c92f0d63d7be69a54667ff79 + (FILE *file) + + + virtual ::FLAC__StreamEncoderInitStatus + init + classFLAC_1_1Encoder_1_1File.html + a31016dd8e1db5bb9c1c3739b94fdb3e3 + (const char *filename) + + + virtual ::FLAC__StreamEncoderInitStatus + init + classFLAC_1_1Encoder_1_1File.html + a4966ed5f77dbf5a03946ff25f60a0f8c + (const std::string &filename) + + + virtual ::FLAC__StreamEncoderInitStatus + init_ogg + classFLAC_1_1Encoder_1_1File.html + a5dfab60d9cae983899e0b0f6e1ab9377 + (FILE *file) + + + virtual ::FLAC__StreamEncoderInitStatus + init_ogg + classFLAC_1_1Encoder_1_1File.html + a0740ed07b77e49a76f8ddc0e79540eae + (const char *filename) + + + virtual ::FLAC__StreamEncoderInitStatus + init_ogg + classFLAC_1_1Encoder_1_1File.html + a202881c81ed146e9a83f7378cf1de2d6 + (const std::string &filename) + + + virtual bool + set_ogg_serial_number + classFLAC_1_1Encoder_1_1Stream.html + adf54d79eb0e6dce071f46be6f2c2d55c + (long value) + + + virtual bool + set_verify + classFLAC_1_1Encoder_1_1Stream.html + a85c2296aedf8d4cd2d9f284b1c3205f8 + (bool value) + + + virtual bool + set_streamable_subset + classFLAC_1_1Encoder_1_1Stream.html + a85d78d5333b05e8a76a1edc9462dbfbc + (bool value) + + + virtual bool + set_channels + classFLAC_1_1Encoder_1_1Stream.html + a6b9175bcf32b465ef5579cf67b23c461 + (uint32_t value) + + + virtual bool + set_bits_per_sample + classFLAC_1_1Encoder_1_1Stream.html + a6db7416a187b853d612fa060d93fb460 + (uint32_t value) + + + virtual bool + set_sample_rate + classFLAC_1_1Encoder_1_1Stream.html + a5b26c4a46d80d8c5e1711d2f1cac9ff3 + (uint32_t value) + + + virtual bool + set_compression_level + classFLAC_1_1Encoder_1_1Stream.html + a19e62dc289edf88ad5ec83f4bb3a4aed + (uint32_t value) + + + virtual bool + set_blocksize + classFLAC_1_1Encoder_1_1Stream.html + a448c7b7bfb8579f78576532fb6db5d9d + (uint32_t value) + + + virtual bool + set_do_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a034ab145e428444b0c6cc4d6818b1121 + (bool value) + + + virtual bool + set_loose_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + aa691def57681119f0cb99804db7959d0 + (bool value) + + + virtual bool + set_apodization + classFLAC_1_1Encoder_1_1Stream.html + a4b9a35fd8996be1a4c46fafd41e34e28 + (const char *specification) + + + virtual bool + set_max_lpc_order + classFLAC_1_1Encoder_1_1Stream.html + aff086f1265804e40504b3a471ffbf1c6 + (uint32_t value) + + + virtual bool + set_qlp_coeff_precision + classFLAC_1_1Encoder_1_1Stream.html + a68454d727b7df082b1ca6e20542f0493 + (uint32_t value) + + + virtual bool + set_do_qlp_coeff_prec_search + classFLAC_1_1Encoder_1_1Stream.html + a9a63c0657c6834229d67e64adaf61fde + (bool value) + + + virtual bool + set_do_escape_coding + classFLAC_1_1Encoder_1_1Stream.html + a4a5b69ec2f0a329a662519021a022266 + (bool value) + + + virtual bool + set_do_exhaustive_model_search + classFLAC_1_1Encoder_1_1Stream.html + a3832c6e375edfb304ea6dcf7afb15c83 + (bool value) + + + virtual bool + set_min_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a4574d815ae9367fc0972ebda437fe27c + (uint32_t value) + + + virtual bool + set_max_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a0933895f3d004edbd7d5266185c43e28 + (uint32_t value) + + + virtual bool + set_rice_parameter_search_dist + classFLAC_1_1Encoder_1_1Stream.html + a859360cccd85c279f3a032b8d578976c + (uint32_t value) + + + virtual bool + set_total_samples_estimate + classFLAC_1_1Encoder_1_1Stream.html + a5f9de26084c378a7cd55919381465c24 + (FLAC__uint64 value) + + + virtual bool + set_metadata + classFLAC_1_1Encoder_1_1Stream.html + ac0fe4955fb5e49f4a97cb5bf942c3b03 + (::FLAC__StreamMetadata **metadata, uint32_t num_blocks) + + + virtual bool + set_metadata + classFLAC_1_1Encoder_1_1Stream.html + a66c62377bda60758c7ebf5c5abb8a516 + (FLAC::Metadata::Prototype **metadata, uint32_t num_blocks) + + + State + get_state + classFLAC_1_1Encoder_1_1Stream.html + aa10fe1df856bdf720c598d8512c0b91d + () const + + + virtual Decoder::Stream::State + get_verify_decoder_state + classFLAC_1_1Encoder_1_1Stream.html + a8e5bd3b3bcf7bb28ac5bd99045227d71 + () const + + + virtual void + get_verify_decoder_error_stats + classFLAC_1_1Encoder_1_1Stream.html + a2016d7cebb7daa740c5751917b922319 + (FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got) + + + virtual bool + get_verify + classFLAC_1_1Encoder_1_1Stream.html + aa37963386c64655f2472f70d6ef78995 + () const + + + virtual bool + get_streamable_subset + classFLAC_1_1Encoder_1_1Stream.html + a4cb50455b54a99922bb1c3032ac3c12f + () const + + + virtual bool + get_do_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a0174159dde34f8235e0c8ecdf530f655 + () const + + + virtual bool + get_loose_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a71efc8132af5742aa9e243be565c7eda + () const + + + virtual uint32_t + get_channels + classFLAC_1_1Encoder_1_1Stream.html + a98a887884592b75ef7e84421eb0e0d36 + () const + + + virtual uint32_t + get_bits_per_sample + classFLAC_1_1Encoder_1_1Stream.html + a5a3dbd29faf0e10947bc9a52bb686cd5 + () const + + + virtual uint32_t + get_sample_rate + classFLAC_1_1Encoder_1_1Stream.html + ac6ac01067586112a448ac0b856c1f722 + () const + + + virtual uint32_t + get_blocksize + classFLAC_1_1Encoder_1_1Stream.html + a72f1cb4f655ba38dfbcc5ddff660b34a + () const + + + virtual uint32_t + get_max_lpc_order + classFLAC_1_1Encoder_1_1Stream.html + ab5809af7b04e2fd61116ff9f215568b0 + () const + + + virtual uint32_t + get_qlp_coeff_precision + classFLAC_1_1Encoder_1_1Stream.html + a85b5987212037e8f71dc7d215a31fe9a + () const + + + virtual bool + get_do_qlp_coeff_prec_search + classFLAC_1_1Encoder_1_1Stream.html + a7a1d05858b28f916ec04c74865da0122 + () const + + + virtual bool + get_do_escape_coding + classFLAC_1_1Encoder_1_1Stream.html + ab728524b3c28fa331309c83bea23c0b5 + () const + + + virtual bool + get_do_exhaustive_model_search + classFLAC_1_1Encoder_1_1Stream.html + a14083e5a1b62425335fdb957d6d0e1b9 + () const + + + virtual uint32_t + get_min_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + aba92b184c09870ec2bc0e3b06dcb7358 + () const + + + virtual uint32_t + get_max_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a71f704ca4bfd47bffb9d7e295b652b93 + () const + + + virtual uint32_t + get_rice_parameter_search_dist + classFLAC_1_1Encoder_1_1Stream.html + ab61f5dc890c98a122ae9aa9646d845f4 + () const + + + virtual FLAC__uint64 + get_total_samples_estimate + classFLAC_1_1Encoder_1_1Stream.html + acfb2d26a0546b741fcccd5ede2756072 + () const + + + virtual ::FLAC__StreamEncoderInitStatus + init + classFLAC_1_1Encoder_1_1Stream.html + a17bfdc6402a626db36ee23985ee959b6 + () + + + virtual ::FLAC__StreamEncoderInitStatus + init_ogg + classFLAC_1_1Encoder_1_1Stream.html + a6cd96756d387c89555b4fb36e3323f35 + () + + + virtual bool + finish + classFLAC_1_1Encoder_1_1Stream.html + ad70a30287eb9e062454ca296b9628318 + () + + + virtual bool + process + classFLAC_1_1Encoder_1_1Stream.html + ac59f444575b9d745bf6ea7b824e9507f + (const FLAC__int32 *const buffer[], uint32_t samples) + + + virtual bool + process_interleaved + classFLAC_1_1Encoder_1_1Stream.html + ace0f417b4dff658f6d689a04114d6999 + (const FLAC__int32 buffer[], uint32_t samples) + + + virtual bool + is_valid + classFLAC_1_1Encoder_1_1Stream.html + a7115abbe5b89823738e0d95f5fb77d78 + () const + + + + operator bool + classFLAC_1_1Encoder_1_1Stream.html + a05ed6d063785bf3eac594480661e8132 + () const + + + virtual void + progress_callback + classFLAC_1_1Encoder_1_1File.html + ac4c54a7df4723015afeb669131df17bf + (FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate) + + + virtual ::FLAC__StreamEncoderWriteStatus + write_callback + classFLAC_1_1Encoder_1_1File.html + a64c0e5118aa2d56f9e671e609728680e + (const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame) + + + virtual ::FLAC__StreamEncoderReadStatus + read_callback + classFLAC_1_1Encoder_1_1Stream.html + a483965ffe35ed652a5fca622c7791811 + (FLAC__byte buffer[], size_t *bytes) + + + virtual ::FLAC__StreamEncoderSeekStatus + seek_callback + classFLAC_1_1Encoder_1_1Stream.html + a7df3745afe10cd4dbcc3433a32fcb463 + (FLAC__uint64 absolute_byte_offset) + + + virtual ::FLAC__StreamEncoderTellStatus + tell_callback + classFLAC_1_1Encoder_1_1Stream.html + a5a4f38682e33172f53f7f374372fe1e0 + (FLAC__uint64 *absolute_byte_offset) + + + virtual void + metadata_callback + classFLAC_1_1Encoder_1_1Stream.html + ad9c6a7aa7720f215bfe3b65e032e148c + (const ::FLAC__StreamMetadata *metadata) + + + virtual bool + is_valid + classFLAC_1_1Encoder_1_1Stream.html + a7115abbe5b89823738e0d95f5fb77d78 + () const + + + + operator bool + classFLAC_1_1Encoder_1_1Stream.html + a05ed6d063785bf3eac594480661e8132 + () const + + + + FLAC::Encoder::Stream + classFLAC_1_1Encoder_1_1Stream.html + FLAC::Encoder::Stream::State + + virtual bool + set_ogg_serial_number + classFLAC_1_1Encoder_1_1Stream.html + adf54d79eb0e6dce071f46be6f2c2d55c + (long value) + + + virtual bool + set_verify + classFLAC_1_1Encoder_1_1Stream.html + a85c2296aedf8d4cd2d9f284b1c3205f8 + (bool value) + + + virtual bool + set_streamable_subset + classFLAC_1_1Encoder_1_1Stream.html + a85d78d5333b05e8a76a1edc9462dbfbc + (bool value) + + + virtual bool + set_channels + classFLAC_1_1Encoder_1_1Stream.html + a6b9175bcf32b465ef5579cf67b23c461 + (uint32_t value) + + + virtual bool + set_bits_per_sample + classFLAC_1_1Encoder_1_1Stream.html + a6db7416a187b853d612fa060d93fb460 + (uint32_t value) + + + virtual bool + set_sample_rate + classFLAC_1_1Encoder_1_1Stream.html + a5b26c4a46d80d8c5e1711d2f1cac9ff3 + (uint32_t value) + + + virtual bool + set_compression_level + classFLAC_1_1Encoder_1_1Stream.html + a19e62dc289edf88ad5ec83f4bb3a4aed + (uint32_t value) + + + virtual bool + set_blocksize + classFLAC_1_1Encoder_1_1Stream.html + a448c7b7bfb8579f78576532fb6db5d9d + (uint32_t value) + + + virtual bool + set_do_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a034ab145e428444b0c6cc4d6818b1121 + (bool value) + + + virtual bool + set_loose_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + aa691def57681119f0cb99804db7959d0 + (bool value) + + + virtual bool + set_apodization + classFLAC_1_1Encoder_1_1Stream.html + a4b9a35fd8996be1a4c46fafd41e34e28 + (const char *specification) + + + virtual bool + set_max_lpc_order + classFLAC_1_1Encoder_1_1Stream.html + aff086f1265804e40504b3a471ffbf1c6 + (uint32_t value) + + + virtual bool + set_qlp_coeff_precision + classFLAC_1_1Encoder_1_1Stream.html + a68454d727b7df082b1ca6e20542f0493 + (uint32_t value) + + + virtual bool + set_do_qlp_coeff_prec_search + classFLAC_1_1Encoder_1_1Stream.html + a9a63c0657c6834229d67e64adaf61fde + (bool value) + + + virtual bool + set_do_escape_coding + classFLAC_1_1Encoder_1_1Stream.html + a4a5b69ec2f0a329a662519021a022266 + (bool value) + + + virtual bool + set_do_exhaustive_model_search + classFLAC_1_1Encoder_1_1Stream.html + a3832c6e375edfb304ea6dcf7afb15c83 + (bool value) + + + virtual bool + set_min_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a4574d815ae9367fc0972ebda437fe27c + (uint32_t value) + + + virtual bool + set_max_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a0933895f3d004edbd7d5266185c43e28 + (uint32_t value) + + + virtual bool + set_rice_parameter_search_dist + classFLAC_1_1Encoder_1_1Stream.html + a859360cccd85c279f3a032b8d578976c + (uint32_t value) + + + virtual bool + set_total_samples_estimate + classFLAC_1_1Encoder_1_1Stream.html + a5f9de26084c378a7cd55919381465c24 + (FLAC__uint64 value) + + + virtual bool + set_metadata + classFLAC_1_1Encoder_1_1Stream.html + ac0fe4955fb5e49f4a97cb5bf942c3b03 + (::FLAC__StreamMetadata **metadata, uint32_t num_blocks) + + + virtual bool + set_metadata + classFLAC_1_1Encoder_1_1Stream.html + a66c62377bda60758c7ebf5c5abb8a516 + (FLAC::Metadata::Prototype **metadata, uint32_t num_blocks) + + + State + get_state + classFLAC_1_1Encoder_1_1Stream.html + aa10fe1df856bdf720c598d8512c0b91d + () const + + + virtual Decoder::Stream::State + get_verify_decoder_state + classFLAC_1_1Encoder_1_1Stream.html + a8e5bd3b3bcf7bb28ac5bd99045227d71 + () const + + + virtual void + get_verify_decoder_error_stats + classFLAC_1_1Encoder_1_1Stream.html + a2016d7cebb7daa740c5751917b922319 + (FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got) + + + virtual bool + get_verify + classFLAC_1_1Encoder_1_1Stream.html + aa37963386c64655f2472f70d6ef78995 + () const + + + virtual bool + get_streamable_subset + classFLAC_1_1Encoder_1_1Stream.html + a4cb50455b54a99922bb1c3032ac3c12f + () const + + + virtual bool + get_do_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a0174159dde34f8235e0c8ecdf530f655 + () const + + + virtual bool + get_loose_mid_side_stereo + classFLAC_1_1Encoder_1_1Stream.html + a71efc8132af5742aa9e243be565c7eda + () const + + + virtual uint32_t + get_channels + classFLAC_1_1Encoder_1_1Stream.html + a98a887884592b75ef7e84421eb0e0d36 + () const + + + virtual uint32_t + get_bits_per_sample + classFLAC_1_1Encoder_1_1Stream.html + a5a3dbd29faf0e10947bc9a52bb686cd5 + () const + + + virtual uint32_t + get_sample_rate + classFLAC_1_1Encoder_1_1Stream.html + ac6ac01067586112a448ac0b856c1f722 + () const + + + virtual uint32_t + get_blocksize + classFLAC_1_1Encoder_1_1Stream.html + a72f1cb4f655ba38dfbcc5ddff660b34a + () const + + + virtual uint32_t + get_max_lpc_order + classFLAC_1_1Encoder_1_1Stream.html + ab5809af7b04e2fd61116ff9f215568b0 + () const + + + virtual uint32_t + get_qlp_coeff_precision + classFLAC_1_1Encoder_1_1Stream.html + a85b5987212037e8f71dc7d215a31fe9a + () const + + + virtual bool + get_do_qlp_coeff_prec_search + classFLAC_1_1Encoder_1_1Stream.html + a7a1d05858b28f916ec04c74865da0122 + () const + + + virtual bool + get_do_escape_coding + classFLAC_1_1Encoder_1_1Stream.html + ab728524b3c28fa331309c83bea23c0b5 + () const + + + virtual bool + get_do_exhaustive_model_search + classFLAC_1_1Encoder_1_1Stream.html + a14083e5a1b62425335fdb957d6d0e1b9 + () const + + + virtual uint32_t + get_min_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + aba92b184c09870ec2bc0e3b06dcb7358 + () const + + + virtual uint32_t + get_max_residual_partition_order + classFLAC_1_1Encoder_1_1Stream.html + a71f704ca4bfd47bffb9d7e295b652b93 + () const + + + virtual uint32_t + get_rice_parameter_search_dist + classFLAC_1_1Encoder_1_1Stream.html + ab61f5dc890c98a122ae9aa9646d845f4 + () const + + + virtual FLAC__uint64 + get_total_samples_estimate + classFLAC_1_1Encoder_1_1Stream.html + acfb2d26a0546b741fcccd5ede2756072 + () const + + + virtual ::FLAC__StreamEncoderInitStatus + init + classFLAC_1_1Encoder_1_1Stream.html + a17bfdc6402a626db36ee23985ee959b6 + () + + + virtual ::FLAC__StreamEncoderInitStatus + init_ogg + classFLAC_1_1Encoder_1_1Stream.html + a6cd96756d387c89555b4fb36e3323f35 + () + + + virtual bool + finish + classFLAC_1_1Encoder_1_1Stream.html + ad70a30287eb9e062454ca296b9628318 + () + + + virtual bool + process + classFLAC_1_1Encoder_1_1Stream.html + ac59f444575b9d745bf6ea7b824e9507f + (const FLAC__int32 *const buffer[], uint32_t samples) + + + virtual bool + process_interleaved + classFLAC_1_1Encoder_1_1Stream.html + ace0f417b4dff658f6d689a04114d6999 + (const FLAC__int32 buffer[], uint32_t samples) + + + virtual bool + is_valid + classFLAC_1_1Encoder_1_1Stream.html + a7115abbe5b89823738e0d95f5fb77d78 + () const + + + + operator bool + classFLAC_1_1Encoder_1_1Stream.html + a05ed6d063785bf3eac594480661e8132 + () const + + + virtual ::FLAC__StreamEncoderReadStatus + read_callback + classFLAC_1_1Encoder_1_1Stream.html + a483965ffe35ed652a5fca622c7791811 + (FLAC__byte buffer[], size_t *bytes) + + + virtual ::FLAC__StreamEncoderWriteStatus + write_callback + classFLAC_1_1Encoder_1_1Stream.html + ad225a9143e538103fa88865c3750ad8b + (const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)=0 + + + virtual ::FLAC__StreamEncoderSeekStatus + seek_callback + classFLAC_1_1Encoder_1_1Stream.html + a7df3745afe10cd4dbcc3433a32fcb463 + (FLAC__uint64 absolute_byte_offset) + + + virtual ::FLAC__StreamEncoderTellStatus + tell_callback + classFLAC_1_1Encoder_1_1Stream.html + a5a4f38682e33172f53f7f374372fe1e0 + (FLAC__uint64 *absolute_byte_offset) + + + virtual void + metadata_callback + classFLAC_1_1Encoder_1_1Stream.html + ad9c6a7aa7720f215bfe3b65e032e148c + (const ::FLAC__StreamMetadata *metadata) + + + virtual bool + is_valid + classFLAC_1_1Encoder_1_1Stream.html + a7115abbe5b89823738e0d95f5fb77d78 + () const + + + + operator bool + classFLAC_1_1Encoder_1_1Stream.html + a05ed6d063785bf3eac594480661e8132 + () const + + + + FLAC::Encoder::Stream::State + classFLAC_1_1Encoder_1_1Stream_1_1State.html + + + FLAC::Metadata::Application + classFLAC_1_1Metadata_1_1Application.html + FLAC::Metadata::Prototype + + + Application + classFLAC_1_1Metadata_1_1Application.html + a354471e537af33ba0c86de4db988efd1 + (::FLAC__StreamMetadata *object, bool copy) + + + Application & + assign + classFLAC_1_1Metadata_1_1Application.html + a47f68d7001ef094a916d3b13fe589fc2 + (::FLAC__StreamMetadata *object, bool copy) + + + bool + set_data + classFLAC_1_1Metadata_1_1Application.html + a95eaa06ca65af25385cf05f4942100b8 + (const FLAC__byte *data, uint32_t length) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + Application + classFLAC_1_1Metadata_1_1Application.html + ac852c4aa3be004f1ffa4895ca54354a0 + (const Application &object) + + + + Application + classFLAC_1_1Metadata_1_1Application.html + afea8e8477179395b175f5481b9a7f520 + (const ::FLAC__StreamMetadata &object) + + + + Application + classFLAC_1_1Metadata_1_1Application.html + a88fa6324b6b46d41787934774f65d423 + (const ::FLAC__StreamMetadata *object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + a3ca9dd06666b1dc7d4bdb6aef8e14d04 + (const Application &object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + aad78784867bb6c8816238a57bab91535 + (const ::FLAC__StreamMetadata &object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + afe3c7e50501b56045366d2121d084fba + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + a89c2e1e78226550b47fceb2ab7fe1fa8 + (const Application &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + acd5f9b2fc6cd9ef3d3578e652dbaab45 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + a2acc04b3a9f6e8c57aeb875ffc762382 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + adf4f2c38053d0d39e735c5f30b9934cf + (const Application &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + a2d43b476c340dfad464efbe046826b93 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + a743c3398d5ea9305cc9c8d5864349cf3 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + Application + classFLAC_1_1Metadata_1_1Application.html + ac852c4aa3be004f1ffa4895ca54354a0 + (const Application &object) + + + + Application + classFLAC_1_1Metadata_1_1Application.html + afea8e8477179395b175f5481b9a7f520 + (const ::FLAC__StreamMetadata &object) + + + + Application + classFLAC_1_1Metadata_1_1Application.html + a88fa6324b6b46d41787934774f65d423 + (const ::FLAC__StreamMetadata *object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + a3ca9dd06666b1dc7d4bdb6aef8e14d04 + (const Application &object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + aad78784867bb6c8816238a57bab91535 + (const ::FLAC__StreamMetadata &object) + + + Application & + operator= + classFLAC_1_1Metadata_1_1Application.html + afe3c7e50501b56045366d2121d084fba + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + a89c2e1e78226550b47fceb2ab7fe1fa8 + (const Application &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + acd5f9b2fc6cd9ef3d3578e652dbaab45 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Application.html + a2acc04b3a9f6e8c57aeb875ffc762382 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + adf4f2c38053d0d39e735c5f30b9934cf + (const Application &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + a2d43b476c340dfad464efbe046826b93 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Application.html + a743c3398d5ea9305cc9c8d5864349cf3 + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::Chain + classFLAC_1_1Metadata_1_1Chain.html + FLAC::Metadata::Chain::Status + + bool + is_valid + classFLAC_1_1Metadata_1_1Chain.html + a62ff055714c8ce75d907ae58738113a4 + () const + + + Status + status + classFLAC_1_1Metadata_1_1Chain.html + a02d7a4adc89e37b28eaccbccfe5da5b0 + () + + + bool + read + classFLAC_1_1Metadata_1_1Chain.html + a509bf6a75a12df65bc77947a4765d9c1 + (const char *filename, bool is_ogg=false) + + + bool + read + classFLAC_1_1Metadata_1_1Chain.html + a030c805328fc8b2da947830959dafb5b + (FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, bool is_ogg=false) + + + bool + check_if_tempfile_needed + classFLAC_1_1Metadata_1_1Chain.html + a1d54ed419365faf5429caa84b35265c3 + (bool use_padding) + + + bool + write + classFLAC_1_1Metadata_1_1Chain.html + a2341690885e2312013afc561e6fafd81 + (bool use_padding=true, bool preserve_file_stats=false) + + + bool + write + classFLAC_1_1Metadata_1_1Chain.html + a0ef47e1634bca2d269ac49fc164306b5 + (bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks) + + + bool + write + classFLAC_1_1Metadata_1_1Chain.html + a37b863c4d490fea96f67294f03fbe975 + (bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHandle temp_handle, ::FLAC__IOCallbacks temp_callbacks) + + + void + merge_padding + classFLAC_1_1Metadata_1_1Chain.html + aef51a0414284f468a2d73c07b540641d + () + + + void + sort_padding + classFLAC_1_1Metadata_1_1Chain.html + a779eaac12da7e7edac67089053e5907f + () + + + + FLAC::Metadata::Chain::Status + classFLAC_1_1Metadata_1_1Chain_1_1Status.html + + + FLAC::Metadata::CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + FLAC::Metadata::Prototype + FLAC::Metadata::CueSheet::Track + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + add934e1916c2427197f8a5654f7ffae9 + (::FLAC__StreamMetadata *object, bool copy) + + + CueSheet & + assign + classFLAC_1_1Metadata_1_1CueSheet.html + ac83a472ca9852f3e2e800ae57d3e1305 + (::FLAC__StreamMetadata *object, bool copy) + + + bool + resize_indices + classFLAC_1_1Metadata_1_1CueSheet.html + a7dd7822a201fa2310410029a36f4f1ac + (uint32_t track_num, uint32_t new_num_indices) + + + bool + insert_index + classFLAC_1_1Metadata_1_1CueSheet.html + acebb3ac32324137091b965a9e9ba2edf + (uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index) + + + bool + insert_blank_index + classFLAC_1_1Metadata_1_1CueSheet.html + a294125ebcaf6c1576759b74f4ba96aa6 + (uint32_t track_num, uint32_t index_num) + + + bool + delete_index + classFLAC_1_1Metadata_1_1CueSheet.html + a01c9f6ec36ba9b538ac3c9de993551f8 + (uint32_t track_num, uint32_t index_num) + + + bool + resize_tracks + classFLAC_1_1Metadata_1_1CueSheet.html + a8d574ef586ab17413dbf1cb45b630a69 + (uint32_t new_num_tracks) + + + bool + set_track + classFLAC_1_1Metadata_1_1CueSheet.html + a5854e1797bf5161d1dc7e9cca5201bc9 + (uint32_t i, const Track &track) + + + bool + insert_track + classFLAC_1_1Metadata_1_1CueSheet.html + aeef4dc2ff2f9cc102855aec900860ce6 + (uint32_t i, const Track &track) + + + bool + insert_blank_track + classFLAC_1_1Metadata_1_1CueSheet.html + abe22447cc77d2f12092b68493ad2fca5 + (uint32_t i) + + + bool + delete_track + classFLAC_1_1Metadata_1_1CueSheet.html + a742ea19be39cd5ad23aeac04671c44ae + (uint32_t i) + + + bool + is_legal + classFLAC_1_1Metadata_1_1CueSheet.html + a920da7efb6143683543440c2409b3d26 + (bool check_cd_da_subset=false, const char **violation=0) const + + + FLAC__uint32 + calculate_cddb_id + classFLAC_1_1Metadata_1_1CueSheet.html + a7f03abfc2473e54a766c888c8cd431b6 + () const + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + aff87fa8ab761fc12c0f37b6ff033f74e + (const CueSheet &object) + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + a70f56da621341cd05a14bafe3ddded70 + (const ::FLAC__StreamMetadata &object) + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + a0248e035cd9c13338355074d68032e90 + (const ::FLAC__StreamMetadata *object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + ad24bf2e19de81159d5e205ae5ef63843 + (const CueSheet &object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + a12ea7ba6371d328708befbc5a13b4325 + (const ::FLAC__StreamMetadata &object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + a70e0483a06b641a903134c7a8cd6aa9b + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + ad101b9f069c4af9053718b408a9737f5 + (const CueSheet &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + aed7c71957d5b1573ad19d0e7a47d82ac + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + a217c5f9f8d734e929c4841efd6f1ae07 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + ad02b4b1f541c8607a233a248ec295db9 + (const CueSheet &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + a68a03777c79fc0464c26695cc371dad8 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + a323fd4f21eb48874008834c70c9216de + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + aff87fa8ab761fc12c0f37b6ff033f74e + (const CueSheet &object) + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + a70f56da621341cd05a14bafe3ddded70 + (const ::FLAC__StreamMetadata &object) + + + + CueSheet + classFLAC_1_1Metadata_1_1CueSheet.html + a0248e035cd9c13338355074d68032e90 + (const ::FLAC__StreamMetadata *object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + ad24bf2e19de81159d5e205ae5ef63843 + (const CueSheet &object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + a12ea7ba6371d328708befbc5a13b4325 + (const ::FLAC__StreamMetadata &object) + + + CueSheet & + operator= + classFLAC_1_1Metadata_1_1CueSheet.html + a70e0483a06b641a903134c7a8cd6aa9b + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + ad101b9f069c4af9053718b408a9737f5 + (const CueSheet &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + aed7c71957d5b1573ad19d0e7a47d82ac + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1CueSheet.html + a217c5f9f8d734e929c4841efd6f1ae07 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + ad02b4b1f541c8607a233a248ec295db9 + (const CueSheet &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + a68a03777c79fc0464c26695cc371dad8 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1CueSheet.html + a323fd4f21eb48874008834c70c9216de + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::CueSheet::Track + classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html + + virtual bool + is_valid + classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html + ac0fb597614c2327157e765ea278b014f + () const + + + + FLAC::Metadata::Iterator + classFLAC_1_1Metadata_1_1Iterator.html + + bool + is_valid + classFLAC_1_1Metadata_1_1Iterator.html + a42057c663e277d83cc91763730d38b0f + () const + + + void + init + classFLAC_1_1Metadata_1_1Iterator.html + ab5713af7318f10a46bd8b26ce586947c + (Chain &chain) + + + bool + next + classFLAC_1_1Metadata_1_1Iterator.html + a1d2871fc1fdcc5dffee1eafd7019f4a0 + () + + + bool + prev + classFLAC_1_1Metadata_1_1Iterator.html + ade6ee6b67b22115959e2adfc65d5d3b4 + () + + + ::FLAC__MetadataType + get_block_type + classFLAC_1_1Metadata_1_1Iterator.html + aa25cb3c27e4d6250f98605f89b0fa904 + () const + + + Prototype * + get_block + classFLAC_1_1Metadata_1_1Iterator.html + a3693233f592b9cb333c437413c6be2a6 + () + + + bool + set_block + classFLAC_1_1Metadata_1_1Iterator.html + a3123daf89fca2a8981c9f361f466a418 + (Prototype *block) + + + bool + delete_block + classFLAC_1_1Metadata_1_1Iterator.html + a67adaa4ae39cf405ee0f4674ca8836dd + (bool replace_with_padding) + + + bool + insert_block_before + classFLAC_1_1Metadata_1_1Iterator.html + a86de6d0b21ac08b74a2ea8c1a9adce36 + (Prototype *block) + + + bool + insert_block_after + classFLAC_1_1Metadata_1_1Iterator.html + a73e7a3f7192f369cb3a19d078da504ab + (Prototype *block) + + + + FLAC::Metadata::Padding + classFLAC_1_1Metadata_1_1Padding.html + FLAC::Metadata::Prototype + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a358085e3cec897ed0b0c88c8ac04618d + (::FLAC__StreamMetadata *object, bool copy) + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a86b26d7f7df2a1b3ee0215f2b9352274 + (uint32_t length) + + + Padding & + assign + classFLAC_1_1Metadata_1_1Padding.html + a3b7508e56df71854ff1f5ad9570b5684 + (::FLAC__StreamMetadata *object, bool copy) + + + void + set_length + classFLAC_1_1Metadata_1_1Padding.html + a07dae9d71b724f27f4bfbea26d7ab8fc + (uint32_t length) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a3a5665a824530dec2906d76e665573ee + (const Padding &object) + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a8cfa2104a846a25154ca6b431683c563 + (const ::FLAC__StreamMetadata &object) + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a9ffc1c44b0d114998b72e2a9a4be7c0a + (const ::FLAC__StreamMetadata *object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + aece6ab03932bea3f0c32ff3cd88f2617 + (const Padding &object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + a659c9ca5fa9e53b434a1f08db2e052eb + (const ::FLAC__StreamMetadata &object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + a7c8adf0a827ea52ffbb51549f36dc1ac + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a1c400bb08e873eae7a1a8640a97d4cde + (const Padding &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a56b01328b41b4af4c273648c1df484d5 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a1ae8b92daf90e7db1fdb4a0e25451717 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a12654720889aec7a4694c97f2b1f75b7 + (const Padding &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a85663aeb82450534fa216ac249cc15b3 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a590115d7282a0cf5452029c2e4ea7dbb + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a3a5665a824530dec2906d76e665573ee + (const Padding &object) + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a8cfa2104a846a25154ca6b431683c563 + (const ::FLAC__StreamMetadata &object) + + + + Padding + classFLAC_1_1Metadata_1_1Padding.html + a9ffc1c44b0d114998b72e2a9a4be7c0a + (const ::FLAC__StreamMetadata *object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + aece6ab03932bea3f0c32ff3cd88f2617 + (const Padding &object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + a659c9ca5fa9e53b434a1f08db2e052eb + (const ::FLAC__StreamMetadata &object) + + + Padding & + operator= + classFLAC_1_1Metadata_1_1Padding.html + a7c8adf0a827ea52ffbb51549f36dc1ac + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a1c400bb08e873eae7a1a8640a97d4cde + (const Padding &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a56b01328b41b4af4c273648c1df484d5 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Padding.html + a1ae8b92daf90e7db1fdb4a0e25451717 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a12654720889aec7a4694c97f2b1f75b7 + (const Padding &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a85663aeb82450534fa216ac249cc15b3 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Padding.html + a590115d7282a0cf5452029c2e4ea7dbb + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::Picture + classFLAC_1_1Metadata_1_1Picture.html + FLAC::Metadata::Prototype + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a703d5d8a88e9764714ee2dd25806e381 + (::FLAC__StreamMetadata *object, bool copy) + + + Picture & + assign + classFLAC_1_1Metadata_1_1Picture.html + aa3d7384cb724a842c3471a9ab19f81ed + (::FLAC__StreamMetadata *object, bool copy) + + + FLAC__uint32 + get_colors + classFLAC_1_1Metadata_1_1Picture.html + ab44cabf75add1973ebde9f5f7ed6b780 + () const + + + bool + set_mime_type + classFLAC_1_1Metadata_1_1Picture.html + afb4e53cb8ae62ea0d9ebd1afdca40c3f + (const char *string) + + + bool + set_description + classFLAC_1_1Metadata_1_1Picture.html + a1bbcd96802a16fc36ac1b6610cd7d4a3 + (const FLAC__byte *string) + + + void + set_colors + classFLAC_1_1Metadata_1_1Picture.html + a8e7dc667ccc55e60abe2b8a751656097 + (FLAC__uint32 value) const + + + bool + set_data + classFLAC_1_1Metadata_1_1Picture.html + a301630d1c8f7647d0f192e6a2a03e6ba + (const FLAC__byte *data, FLAC__uint32 data_length) + + + bool + is_legal + classFLAC_1_1Metadata_1_1Picture.html + af11147e2041b46d679b077e6ac26bea0 + (const char **violation) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a368985afb060fe1024129ed808392183 + (const Picture &object) + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a447a5837baeb1e5de9e7ae642a15e736 + (const ::FLAC__StreamMetadata &object) + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a5403f0a99ef43e17c43a4ec21c275c83 + (const ::FLAC__StreamMetadata *object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a2ab3ef473f6c70aafe5bd3229f397a93 + (const Picture &object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a5681e4ee272c9f604a27c2d3b95e284b + (const ::FLAC__StreamMetadata &object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a4ea95912972eee1d8c9906eae4cfe6ee + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + a1cc03a87e1ada7b81af2dfe487d86fa7 + (const Picture &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + a7001b395c54ed2aa93c06d3631a4e125 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + afddddc3e27ed063bedcf9a796759a8a6 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + a3b0c4fa11c7c54427e7aa690c8998692 + (const Picture &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + a531c1e52a9f178755c595f327bf2dec5 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + aa994307c78300d674f3ecceb98060f73 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a368985afb060fe1024129ed808392183 + (const Picture &object) + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a447a5837baeb1e5de9e7ae642a15e736 + (const ::FLAC__StreamMetadata &object) + + + + Picture + classFLAC_1_1Metadata_1_1Picture.html + a5403f0a99ef43e17c43a4ec21c275c83 + (const ::FLAC__StreamMetadata *object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a2ab3ef473f6c70aafe5bd3229f397a93 + (const Picture &object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a5681e4ee272c9f604a27c2d3b95e284b + (const ::FLAC__StreamMetadata &object) + + + Picture & + operator= + classFLAC_1_1Metadata_1_1Picture.html + a4ea95912972eee1d8c9906eae4cfe6ee + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + a1cc03a87e1ada7b81af2dfe487d86fa7 + (const Picture &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + a7001b395c54ed2aa93c06d3631a4e125 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Picture.html + afddddc3e27ed063bedcf9a796759a8a6 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + a3b0c4fa11c7c54427e7aa690c8998692 + (const Picture &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + a531c1e52a9f178755c595f327bf2dec5 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Picture.html + aa994307c78300d674f3ecceb98060f73 + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::Prototype + classFLAC_1_1Metadata_1_1Prototype.html + + virtual + ~Prototype + classFLAC_1_1Metadata_1_1Prototype.html + a698fa1529af534ab5d1d98d0979844f6 + () + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator== + group__flacpp__metadata__object.html + gabe99f8f626c5bb26d22e594689b925b9 + (const ::FLAC__StreamMetadata &) const + + + bool + operator== + group__flacpp__metadata__object.html + ga16721da9cfeb82992e4bce373c9459e7 + (const ::FLAC__StreamMetadata *) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaff8915737832ccae971454926f363cf4 + (const ::FLAC__StreamMetadata &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaf9b7cbfbb8294b930b196b060476d319 + (const ::FLAC__StreamMetadata *) const + + + + Prototype + group__flacpp__metadata__level2.html + gae49fa399a6273ccad7cb0e6f787a3f5c + (const Prototype &) + + + + Prototype + classFLAC_1_1Metadata_1_1Prototype.html + a23ec8d118119578adb95de42fcbbaca2 + (::FLAC__StreamMetadata *object, bool copy) + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + aea76819568855c4f49f2a23d42a642f2 + (const Prototype &) + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + a5a50c17eaa77149842075ed3896637e7 + (const ::FLAC__StreamMetadata &) + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + a310d01131f3d8f4a1bf0ed31b8798685 + (const ::FLAC__StreamMetadata *) + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + aea76819568855c4f49f2a23d42a642f2 + (const Prototype &) + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + a5a50c17eaa77149842075ed3896637e7 + (const ::FLAC__StreamMetadata &) + + + Prototype & + operator= + classFLAC_1_1Metadata_1_1Prototype.html + a310d01131f3d8f4a1bf0ed31b8798685 + (const ::FLAC__StreamMetadata *) + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator== + group__flacpp__metadata__object.html + gabe99f8f626c5bb26d22e594689b925b9 + (const ::FLAC__StreamMetadata &) const + + + bool + operator== + group__flacpp__metadata__object.html + ga16721da9cfeb82992e4bce373c9459e7 + (const ::FLAC__StreamMetadata *) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaff8915737832ccae971454926f363cf4 + (const ::FLAC__StreamMetadata &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaf9b7cbfbb8294b930b196b060476d319 + (const ::FLAC__StreamMetadata *) const + + + + FLAC::Metadata::SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + FLAC::Metadata::Prototype + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + accd82ef77dcc489280c0f46e443b16c7 + (::FLAC__StreamMetadata *object, bool copy) + + + SeekTable & + assign + classFLAC_1_1Metadata_1_1SeekTable.html + ad9d0036938d6ad1c81180cf1e156b844 + (::FLAC__StreamMetadata *object, bool copy) + + + bool + resize_points + classFLAC_1_1Metadata_1_1SeekTable.html + a09783f913385728901ff93686456d647 + (uint32_t new_num_points) + + + void + set_point + classFLAC_1_1Metadata_1_1SeekTable.html + ad01b009dc3aecd5e881b7b425439643f + (uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point) + + + bool + insert_point + classFLAC_1_1Metadata_1_1SeekTable.html + abc1476cf5960660fa5c5d4a65db1441f + (uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point) + + + bool + delete_point + classFLAC_1_1Metadata_1_1SeekTable.html + a0d8260db8b7534cc66fe2b80380c91bd + (uint32_t index) + + + bool + is_legal + classFLAC_1_1Metadata_1_1SeekTable.html + a8a47e1f8b8331024c2ae977d8bd104d6 + () const + + + bool + template_append_placeholders + classFLAC_1_1Metadata_1_1SeekTable.html + ae8e334f73f3d8870df2e948aa5de1234 + (uint32_t num) + + + bool + template_append_point + classFLAC_1_1Metadata_1_1SeekTable.html + a9c05d6c010988cf2f336ab1c02c3c618 + (FLAC__uint64 sample_number) + + + bool + template_append_points + classFLAC_1_1Metadata_1_1SeekTable.html + ad3c644c5e7de6b944feee725d396b27e + (FLAC__uint64 sample_numbers[], uint32_t num) + + + bool + template_append_spaced_points + classFLAC_1_1Metadata_1_1SeekTable.html + a6ecfcb2478134b483790276b22a4f8b2 + (uint32_t num, FLAC__uint64 total_samples) + + + bool + template_append_spaced_points_by_samples + classFLAC_1_1Metadata_1_1SeekTable.html + a64bc1300d59e79f6c99356bf4a256383 + (uint32_t samples, FLAC__uint64 total_samples) + + + bool + template_sort + classFLAC_1_1Metadata_1_1SeekTable.html + a09cc5c101fc9c26655de9ec91dcb502f + (bool compact) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + a7f93d054937829a85108cd423a56299f + (const SeekTable &object) + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + a9a39c8eef9d57d84008eb68474c6fa6f + (const ::FLAC__StreamMetadata &object) + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + af544e2467d49d7b8610bf4ad8e14969b + (const ::FLAC__StreamMetadata *object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + ac1094c0536952a569e41ba619f9b4ff5 + (const SeekTable &object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + a72426d86f7e7f9ddc4889b2efcbcbc19 + (const ::FLAC__StreamMetadata &object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + a4fade1457b75e99d30a0877403ff8e76 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + a15966f2e33461ce14c3d98a41d47f94d + (const SeekTable &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + abbdbdb0fbd72a219448f67796606bff0 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + ad72cf82aa301451cb31cd062d5f401e3 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + a9b25b057f2fdbdc88e2db66d94ad0de4 + (const SeekTable &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + aa66913987411a8715de2cd54da976511 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + a5cccc59ad2cf2ecaa6337ff043b69082 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + a7f93d054937829a85108cd423a56299f + (const SeekTable &object) + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + a9a39c8eef9d57d84008eb68474c6fa6f + (const ::FLAC__StreamMetadata &object) + + + + SeekTable + classFLAC_1_1Metadata_1_1SeekTable.html + af544e2467d49d7b8610bf4ad8e14969b + (const ::FLAC__StreamMetadata *object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + ac1094c0536952a569e41ba619f9b4ff5 + (const SeekTable &object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + a72426d86f7e7f9ddc4889b2efcbcbc19 + (const ::FLAC__StreamMetadata &object) + + + SeekTable & + operator= + classFLAC_1_1Metadata_1_1SeekTable.html + a4fade1457b75e99d30a0877403ff8e76 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + a15966f2e33461ce14c3d98a41d47f94d + (const SeekTable &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + abbdbdb0fbd72a219448f67796606bff0 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1SeekTable.html + ad72cf82aa301451cb31cd062d5f401e3 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + a9b25b057f2fdbdc88e2db66d94ad0de4 + (const SeekTable &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + aa66913987411a8715de2cd54da976511 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1SeekTable.html + a5cccc59ad2cf2ecaa6337ff043b69082 + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::SimpleIterator + classFLAC_1_1Metadata_1_1SimpleIterator.html + FLAC::Metadata::SimpleIterator::Status + + bool + is_valid + classFLAC_1_1Metadata_1_1SimpleIterator.html + a5d528419f9c71d92b71d1d79cff52207 + () const + + + bool + init + classFLAC_1_1Metadata_1_1SimpleIterator.html + a67dc75f18d282f41696467f1fbf5c3e8 + (const char *filename, bool read_only, bool preserve_file_stats) + + + Status + status + classFLAC_1_1Metadata_1_1SimpleIterator.html + a9e681b6ad35b10633002ecea5cab37c3 + () + + + bool + is_writable + classFLAC_1_1Metadata_1_1SimpleIterator.html + a70d7bb568dc6190f9cc5be089eaed03b + () const + + + bool + next + classFLAC_1_1Metadata_1_1SimpleIterator.html + ab399f6b8c5e35a1d18588279613ea63c + () + + + bool + prev + classFLAC_1_1Metadata_1_1SimpleIterator.html + a75a859af156322f451045418876eb6a3 + () + + + bool + is_last + classFLAC_1_1Metadata_1_1SimpleIterator.html + ac83c8401b2e58a3e4ce03a9996523c44 + () const + + + off_t + get_block_offset + classFLAC_1_1Metadata_1_1SimpleIterator.html + ad3779538af5b3fe7cdd2188c79bc80b0 + () const + + + ::FLAC__MetadataType + get_block_type + classFLAC_1_1Metadata_1_1SimpleIterator.html + a30dff6debdbc72aceac7a69b9c3bea75 + () const + + + uint32_t + get_block_length + classFLAC_1_1Metadata_1_1SimpleIterator.html + a7e53cef599f3ff984a847a4a251afea5 + () const + + + bool + get_application_id + classFLAC_1_1Metadata_1_1SimpleIterator.html + a426d06a9d079f74e82eaa217f14997a5 + (FLAC__byte *id) + + + Prototype * + get_block + classFLAC_1_1Metadata_1_1SimpleIterator.html + ab206e5d7145d3726335d336cbc452598 + () + + + bool + set_block + classFLAC_1_1Metadata_1_1SimpleIterator.html + a0ebd4df55346cbcec9ace04f7d7b484d + (Prototype *block, bool use_padding=true) + + + bool + insert_block_after + classFLAC_1_1Metadata_1_1SimpleIterator.html + a1d0e512147967b7e12ac22914fbe3818 + (Prototype *block, bool use_padding=true) + + + bool + delete_block + classFLAC_1_1Metadata_1_1SimpleIterator.html + a67824deff81e2f49c2f51db6b71565e8 + (bool use_padding=true) + + + + FLAC::Metadata::SimpleIterator::Status + classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html + + + FLAC::Metadata::StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + FLAC::Metadata::Prototype + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + aaf4d96124e2b323398f7edf1aaf28003 + (::FLAC__StreamMetadata *object, bool copy) + + + StreamInfo & + assign + classFLAC_1_1Metadata_1_1StreamInfo.html + ad1193a408a5735845dea17a131b7282c + (::FLAC__StreamMetadata *object, bool copy) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + ab86611073f13dd3e7aea386bb6f1a7a4 + (const StreamInfo &object) + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + a3f23948afbcb54758d0ed20edd86515c + (const ::FLAC__StreamMetadata &object) + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + a24e2028916ac96e0ed0d1e53e003b150 + (const ::FLAC__StreamMetadata *object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + a353a63aa812f125fedec844142946142 + (const StreamInfo &object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + aeed95856e0b773e6634848da322d4e43 + (const ::FLAC__StreamMetadata &object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + a16b032050bc7ac632d9f48ac43b04eb2 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a4010b479ff46aad5ddd363bf456fbfa1 + (const StreamInfo &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a31ac25e1e26a4926a86c547e73eaef3b + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a75a8ab996a0b473a6191d63a24faba4d + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + af0f86d918ae7416e4de77215df6e861b + (const StreamInfo &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + a25adb5e6b1d0e9b23e839cdac64ba54f + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + aeb595361469d594bba90276180b557d1 + (const ::FLAC__StreamMetadata *object) const + + + uint32_t + get_min_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + aa53c8d9f0c5c396a51bbf543093121cc + () const + + + uint32_t + get_max_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + ad738be611cc28cbd85a66795180bf719 + () const + + + uint32_t + get_min_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + ae16a41cc1adf2d1f7493e08e0dc6c719 + () const + + + uint32_t + get_max_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a8aa7e289cb76a00ade434d8ea5358bda + () const + + + uint32_t + get_sample_rate + classFLAC_1_1Metadata_1_1StreamInfo.html + a5b263d632bcd9dbd9f57834003474f8c + () const + + + uint32_t + get_channels + classFLAC_1_1Metadata_1_1StreamInfo.html + a68e69bab8e2901920727f089af36a866 + () const + + + uint32_t + get_bits_per_sample + classFLAC_1_1Metadata_1_1StreamInfo.html + a5a29b664332c853870162eb22608eadc + () const + + + FLAC__uint64 + get_total_samples + classFLAC_1_1Metadata_1_1StreamInfo.html + aca26d7a198eefc7d1685b7bcb8291ea8 + () const + + + const FLAC__byte * + get_md5sum + classFLAC_1_1Metadata_1_1StreamInfo.html + ad492e85619a624ecf523336490fcfe70 + () const + + + void + set_min_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + a614ec2e0a0f4b6ede21df5e63c0cd311 + (uint32_t value) + + + void + set_max_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + a1a69c965069cc2330ee13e573f01d65f + (uint32_t value) + + + void + set_min_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a5604b83adf20453f0f35e7d61f86c9d3 + (uint32_t value) + + + void + set_max_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a5ada3c1d69c0680026216d3b395fbf42 + (uint32_t value) + + + void + set_sample_rate + classFLAC_1_1Metadata_1_1StreamInfo.html + aaa87b3e781cb832e87b705c9f60cff4a + (uint32_t value) + + + void + set_channels + classFLAC_1_1Metadata_1_1StreamInfo.html + ab6d7cfb7b39c6559e7c2350bc3597e22 + (uint32_t value) + + + void + set_bits_per_sample + classFLAC_1_1Metadata_1_1StreamInfo.html + abc49bd7400a404978fe9d43af517d17c + (uint32_t value) + + + void + set_total_samples + classFLAC_1_1Metadata_1_1StreamInfo.html + a57250a3a3a7a666c39ec0ac6d8432472 + (FLAC__uint64 value) + + + void + set_md5sum + classFLAC_1_1Metadata_1_1StreamInfo.html + afef84aaea3c333ad880e7843c70aed02 + (const FLAC__byte value[16]) + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + ab86611073f13dd3e7aea386bb6f1a7a4 + (const StreamInfo &object) + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + a3f23948afbcb54758d0ed20edd86515c + (const ::FLAC__StreamMetadata &object) + + + + StreamInfo + classFLAC_1_1Metadata_1_1StreamInfo.html + a24e2028916ac96e0ed0d1e53e003b150 + (const ::FLAC__StreamMetadata *object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + a353a63aa812f125fedec844142946142 + (const StreamInfo &object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + aeed95856e0b773e6634848da322d4e43 + (const ::FLAC__StreamMetadata &object) + + + StreamInfo & + operator= + classFLAC_1_1Metadata_1_1StreamInfo.html + a16b032050bc7ac632d9f48ac43b04eb2 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a4010b479ff46aad5ddd363bf456fbfa1 + (const StreamInfo &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a31ac25e1e26a4926a86c547e73eaef3b + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1StreamInfo.html + a75a8ab996a0b473a6191d63a24faba4d + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + af0f86d918ae7416e4de77215df6e861b + (const StreamInfo &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + a25adb5e6b1d0e9b23e839cdac64ba54f + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1StreamInfo.html + aeb595361469d594bba90276180b557d1 + (const ::FLAC__StreamMetadata *object) const + + + uint32_t + get_min_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + aa53c8d9f0c5c396a51bbf543093121cc + () const + + + uint32_t + get_max_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + ad738be611cc28cbd85a66795180bf719 + () const + + + uint32_t + get_min_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + ae16a41cc1adf2d1f7493e08e0dc6c719 + () const + + + uint32_t + get_max_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a8aa7e289cb76a00ade434d8ea5358bda + () const + + + uint32_t + get_sample_rate + classFLAC_1_1Metadata_1_1StreamInfo.html + a5b263d632bcd9dbd9f57834003474f8c + () const + + + uint32_t + get_channels + classFLAC_1_1Metadata_1_1StreamInfo.html + a68e69bab8e2901920727f089af36a866 + () const + + + uint32_t + get_bits_per_sample + classFLAC_1_1Metadata_1_1StreamInfo.html + a5a29b664332c853870162eb22608eadc + () const + + + FLAC__uint64 + get_total_samples + classFLAC_1_1Metadata_1_1StreamInfo.html + aca26d7a198eefc7d1685b7bcb8291ea8 + () const + + + const FLAC__byte * + get_md5sum + classFLAC_1_1Metadata_1_1StreamInfo.html + ad492e85619a624ecf523336490fcfe70 + () const + + + void + set_min_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + a614ec2e0a0f4b6ede21df5e63c0cd311 + (uint32_t value) + + + void + set_max_blocksize + classFLAC_1_1Metadata_1_1StreamInfo.html + a1a69c965069cc2330ee13e573f01d65f + (uint32_t value) + + + void + set_min_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a5604b83adf20453f0f35e7d61f86c9d3 + (uint32_t value) + + + void + set_max_framesize + classFLAC_1_1Metadata_1_1StreamInfo.html + a5ada3c1d69c0680026216d3b395fbf42 + (uint32_t value) + + + void + set_sample_rate + classFLAC_1_1Metadata_1_1StreamInfo.html + aaa87b3e781cb832e87b705c9f60cff4a + (uint32_t value) + + + void + set_channels + classFLAC_1_1Metadata_1_1StreamInfo.html + ab6d7cfb7b39c6559e7c2350bc3597e22 + (uint32_t value) + + + void + set_bits_per_sample + classFLAC_1_1Metadata_1_1StreamInfo.html + abc49bd7400a404978fe9d43af517d17c + (uint32_t value) + + + void + set_total_samples + classFLAC_1_1Metadata_1_1StreamInfo.html + a57250a3a3a7a666c39ec0ac6d8432472 + (FLAC__uint64 value) + + + void + set_md5sum + classFLAC_1_1Metadata_1_1StreamInfo.html + afef84aaea3c333ad880e7843c70aed02 + (const FLAC__byte value[16]) + + + + FLAC::Metadata::Unknown + classFLAC_1_1Metadata_1_1Unknown.html + FLAC::Metadata::Prototype + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + a2fb76f94e891c3eea7209a461cab4279 + (::FLAC__StreamMetadata *object, bool copy) + + + Unknown & + assign + classFLAC_1_1Metadata_1_1Unknown.html + a4dc5e794c8d529245888414b2bf7d404 + (::FLAC__StreamMetadata *object, bool copy) + + + bool + set_data + classFLAC_1_1Metadata_1_1Unknown.html + ad9618a004195b86f5989f5f0d396d028 + (const FLAC__byte *data, uint32_t length) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + a686a799c353cf7a3dc95bb8899318a6b + (const Unknown &object) + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + ad3e590e4c78eeda42021fe88b85bdf91 + (const ::FLAC__StreamMetadata &object) + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + a320c150b6c1c9b1386390eef1c581172 + (const ::FLAC__StreamMetadata *object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + a295f824df8ed10c3386df72272fdca47 + (const Unknown &object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + a5b51e8afe12e5359386d7a85ac330d6e + (const ::FLAC__StreamMetadata &object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + ab0f5ba02518c5893fe93429292f62ef6 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + a3a94274ea08f3ff252216b82c07b73e1 + (const Unknown &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + a1d62b42eb946edb1ca3cf44114151ae2 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + af7530a4aae6bf844d7e6c8f317fb2425 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + aa700239bfb0acd74e7e8ca0b1cdfcdb5 + (const Unknown &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + a1a91af8f73d34196531845db3ceb3234 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + a1563e1ed334dc66a7f05ac53459ad605 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + a686a799c353cf7a3dc95bb8899318a6b + (const Unknown &object) + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + ad3e590e4c78eeda42021fe88b85bdf91 + (const ::FLAC__StreamMetadata &object) + + + + Unknown + classFLAC_1_1Metadata_1_1Unknown.html + a320c150b6c1c9b1386390eef1c581172 + (const ::FLAC__StreamMetadata *object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + a295f824df8ed10c3386df72272fdca47 + (const Unknown &object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + a5b51e8afe12e5359386d7a85ac330d6e + (const ::FLAC__StreamMetadata &object) + + + Unknown & + operator= + classFLAC_1_1Metadata_1_1Unknown.html + ab0f5ba02518c5893fe93429292f62ef6 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + a3a94274ea08f3ff252216b82c07b73e1 + (const Unknown &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + a1d62b42eb946edb1ca3cf44114151ae2 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1Unknown.html + af7530a4aae6bf844d7e6c8f317fb2425 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + aa700239bfb0acd74e7e8ca0b1cdfcdb5 + (const Unknown &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + a1a91af8f73d34196531845db3ceb3234 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1Unknown.html + a1563e1ed334dc66a7f05ac53459ad605 + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + FLAC::Metadata::Prototype + FLAC::Metadata::VorbisComment::Entry + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a65a73f4665db16ac7aec76e9f5e699f2 + (::FLAC__StreamMetadata *object, bool copy) + + + VorbisComment & + assign + classFLAC_1_1Metadata_1_1VorbisComment.html + a9db2171c398cd62a5907e625c3a6228d + (::FLAC__StreamMetadata *object, bool copy) + + + bool + set_vendor_string + classFLAC_1_1Metadata_1_1VorbisComment.html + ad8cffdb4c43ba01eaa9a3f7be0d5926a + (const FLAC__byte *string) + + + bool + resize_comments + classFLAC_1_1Metadata_1_1VorbisComment.html + ad924744735bfd0dad8a30aabe2865cbb + (uint32_t new_num_comments) + + + bool + set_comment + classFLAC_1_1Metadata_1_1VorbisComment.html + ad179979211b6f4ed4ca0e8df0760b343 + (uint32_t index, const Entry &entry) + + + bool + insert_comment + classFLAC_1_1Metadata_1_1VorbisComment.html + ab1de71f1c0acdc93c1ed39b6b5e09956 + (uint32_t index, const Entry &entry) + + + bool + append_comment + classFLAC_1_1Metadata_1_1VorbisComment.html + a1126c7a0f25a2cf78efc8317d3a861f2 + (const Entry &entry) + + + bool + replace_comment + classFLAC_1_1Metadata_1_1VorbisComment.html + a240eb83264d05d953395e75e18e15ee2 + (const Entry &entry, bool all) + + + bool + delete_comment + classFLAC_1_1Metadata_1_1VorbisComment.html + af79834672ef87d30faa4574755f05ef8 + (uint32_t index) + + + int + find_entry_from + classFLAC_1_1Metadata_1_1VorbisComment.html + a1a8d3eec60ce932566ce847fb7fbb97d + (uint32_t offset, const char *field_name) + + + int + remove_entry_matching + classFLAC_1_1Metadata_1_1VorbisComment.html + af0770518f35fe18fb9a0cc5c0542c4b7 + (const char *field_name) + + + int + remove_entries_matching + classFLAC_1_1Metadata_1_1VorbisComment.html + adde2dc584e31f29d67fcc6d15d2d1034 + (const char *field_name) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + bool + get_is_last + classFLAC_1_1Metadata_1_1Prototype.html + ad88ba607c1bb6b3729b4a729be181db8 + () const + + + ::FLAC__MetadataType + get_type + classFLAC_1_1Metadata_1_1Prototype.html + a524f81715c9aae70ba8b1b7ee4565171 + () const + + + uint32_t + get_length + classFLAC_1_1Metadata_1_1Prototype.html + a5d95592dea00bcf47dcdbc0b7224cf9e + () const + + + void + set_is_last + classFLAC_1_1Metadata_1_1Prototype.html + af40c7c078e408f7d6d0b5f521a013315 + (bool) + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a436a5c6a42a83a88206376805743fe3b + (const VorbisComment &object) + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a2a788c0d96b5b8b22d089663b5e53b72 + (const ::FLAC__StreamMetadata &object) + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a9ca0e61561f14b1fff423b3334e14a62 + (const ::FLAC__StreamMetadata *object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a135650367ce6c2c5ce12b534307f1cca + (const VorbisComment &object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a6330469036affc1255e0d9528f93c191 + (const ::FLAC__StreamMetadata &object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a4bed0b3d4a75c482dff89691be750546 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a40e48312009df9d321a46df47fceb63b + (const VorbisComment &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a6216257a09ee4b1ea256b2ecd112ae21 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a28982ac7048508494eacff9d707398d2 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + ac882ee4619675b1231d38a58af5fc8a8 + (const VorbisComment &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + ac8b65b65489040ea1364b50e5abffb44 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + a5a00173d33e9e40fc9240c62b3720f92 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + Prototype & + assign_object + classFLAC_1_1Metadata_1_1Prototype.html + acc8ddaac1f1afe9d4fd9de33354847bd + (::FLAC__StreamMetadata *object, bool copy) + + + virtual void + clear + classFLAC_1_1Metadata_1_1Prototype.html + aa54338931745f7f1b1d8240441efedb8 + () + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a436a5c6a42a83a88206376805743fe3b + (const VorbisComment &object) + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a2a788c0d96b5b8b22d089663b5e53b72 + (const ::FLAC__StreamMetadata &object) + + + + VorbisComment + classFLAC_1_1Metadata_1_1VorbisComment.html + a9ca0e61561f14b1fff423b3334e14a62 + (const ::FLAC__StreamMetadata *object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a135650367ce6c2c5ce12b534307f1cca + (const VorbisComment &object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a6330469036affc1255e0d9528f93c191 + (const ::FLAC__StreamMetadata &object) + + + VorbisComment & + operator= + classFLAC_1_1Metadata_1_1VorbisComment.html + a4bed0b3d4a75c482dff89691be750546 + (const ::FLAC__StreamMetadata *object) + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a40e48312009df9d321a46df47fceb63b + (const VorbisComment &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a6216257a09ee4b1ea256b2ecd112ae21 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator== + classFLAC_1_1Metadata_1_1VorbisComment.html + a28982ac7048508494eacff9d707398d2 + (const ::FLAC__StreamMetadata *object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + ac882ee4619675b1231d38a58af5fc8a8 + (const VorbisComment &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + ac8b65b65489040ea1364b50e5abffb44 + (const ::FLAC__StreamMetadata &object) const + + + bool + operator!= + classFLAC_1_1Metadata_1_1VorbisComment.html + a5a00173d33e9e40fc9240c62b3720f92 + (const ::FLAC__StreamMetadata *object) const + + + + FLAC::Metadata::VorbisComment::Entry + classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html + + virtual bool + is_valid + classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html + a75772bb6b5bf90da459e7fb247239b27 + () const + + + + FLAC__EntropyCodingMethod + structFLAC____EntropyCodingMethod.html + + + FLAC__EntropyCodingMethod_PartitionedRice + structFLAC____EntropyCodingMethod__PartitionedRice.html + + uint32_t + order + structFLAC____EntropyCodingMethod__PartitionedRice.html + ade950cdedc8096355882d77a05873586 + + + + const FLAC__EntropyCodingMethod_PartitionedRiceContents * + contents + structFLAC____EntropyCodingMethod__PartitionedRice.html + a2fbfa1bd5656bf620c0bb9f8ba77f579 + + + + + FLAC__EntropyCodingMethod_PartitionedRiceContents + structFLAC____EntropyCodingMethod__PartitionedRiceContents.html + + uint32_t * + parameters + structFLAC____EntropyCodingMethod__PartitionedRiceContents.html + a4e372c3649352f965085054f1580ab67 + + + + uint32_t * + raw_bits + structFLAC____EntropyCodingMethod__PartitionedRiceContents.html + a8b1ff7a7f8b8ec51cd0a1dd21a8d06ae + + + + uint32_t + capacity_by_order + structFLAC____EntropyCodingMethod__PartitionedRiceContents.html + a753f44c8d74e17a258026cdeb9aed017 + + + + + FLAC__Frame + structFLAC____Frame.html + + + FLAC__FrameFooter + structFLAC____FrameFooter.html + + FLAC__uint16 + crc + structFLAC____FrameFooter.html + abdd6d64bf281c49c720b97b955d4eee7 + + + + + FLAC__FrameHeader + structFLAC____FrameHeader.html + + uint32_t + blocksize + structFLAC____FrameHeader.html + a1898caa360a783bfa799332573b5c735 + + + + uint32_t + sample_rate + structFLAC____FrameHeader.html + a2f01343180309a48b91d03bcfd58a5cc + + + + uint32_t + channels + structFLAC____FrameHeader.html + a9518ce587ec26d2c1e315edcc99c1e82 + + + + FLAC__ChannelAssignment + channel_assignment + structFLAC____FrameHeader.html + a9a31f752e16da9d690f8d5ff85aed89c + + + + uint32_t + bits_per_sample + structFLAC____FrameHeader.html + abd1db9449935817aedeab02d8aedd2fd + + + + FLAC__FrameNumberType + number_type + structFLAC____FrameHeader.html + a7a62ec09e6f3029297179ef65377265f + + + + union FLAC__FrameHeader::@2 + number + structFLAC____FrameHeader.html + affc849f1d7c044302e4e5c6c733c4642 + + + + FLAC__uint8 + crc + structFLAC____FrameHeader.html + a980438c380697df6f332cb27dc4672c4 + + + + + FLAC__IOCallbacks + structFLAC____IOCallbacks.html + + + FLAC__StreamDecoder + structFLAC____StreamDecoder.html + + + FLAC__StreamEncoder + structFLAC____StreamEncoder.html + + + FLAC__StreamMetadata + structFLAC____StreamMetadata.html + + FLAC__MetadataType + type + structFLAC____StreamMetadata.html + a39fd0655464f2cc7c9c37ae715088aec + + + + FLAC__bool + is_last + structFLAC____StreamMetadata.html + aef40bbf85abe12e035f66f2d54ed316c + + + + uint32_t + length + structFLAC____StreamMetadata.html + abcdd1a9220a30da08e713c0ae6767c10 + + + + union FLAC__StreamMetadata::@3 + data + structFLAC____StreamMetadata.html + ae1b9b35d9ee11764f0a796c53301c542 + + + + + FLAC__StreamMetadata_Application + structFLAC____StreamMetadata__Application.html + + + FLAC__StreamMetadata_CueSheet + structFLAC____StreamMetadata__CueSheet.html + + char + media_catalog_number + structFLAC____StreamMetadata__CueSheet.html + a776e6057ac7939fba52edecd44ec45bc + [129] + + + FLAC__uint64 + lead_in + structFLAC____StreamMetadata__CueSheet.html + a43fdc0a538ef2c3e0926ee22814baf40 + + + + FLAC__bool + is_cd + structFLAC____StreamMetadata__CueSheet.html + a6af66f921aefc6f779fbc0ab6daeab8a + + + + uint32_t + num_tracks + structFLAC____StreamMetadata__CueSheet.html + a08291d25a5574a089746353ff1af844f + + + + FLAC__StreamMetadata_CueSheet_Track * + tracks + structFLAC____StreamMetadata__CueSheet.html + a5c0c3440b01b773684d56aeb1e424fab + + + + + FLAC__StreamMetadata_CueSheet_Index + structFLAC____StreamMetadata__CueSheet__Index.html + + FLAC__uint64 + offset + structFLAC____StreamMetadata__CueSheet__Index.html + ac221421bca83976925e2a41438157bb9 + + + + FLAC__byte + number + structFLAC____StreamMetadata__CueSheet__Index.html + a71edc33c19a749f1dfb3d1429e08c77a + + + + + FLAC__StreamMetadata_CueSheet_Track + structFLAC____StreamMetadata__CueSheet__Track.html + + FLAC__uint64 + offset + structFLAC____StreamMetadata__CueSheet__Track.html + a40e1c888253a56b6dc4885a44138d1bf + + + + FLAC__byte + number + structFLAC____StreamMetadata__CueSheet__Track.html + a429103d63c44d1861b4dc0762726701a + + + + char + isrc + structFLAC____StreamMetadata__CueSheet__Track.html + a4990c8b13969f4c62683d915ebbf5744 + [13] + + + uint32_t + type + structFLAC____StreamMetadata__CueSheet__Track.html + a10b3f2b3b0374601f1bf49fce91ae544 + + + + uint32_t + pre_emphasis + structFLAC____StreamMetadata__CueSheet__Track.html + ad68cbedf46ac71af5c219263fc70719a + + + + FLAC__byte + num_indices + structFLAC____StreamMetadata__CueSheet__Track.html + a5f1c1d7e3ddc533938b83951c7b3dda5 + + + + FLAC__StreamMetadata_CueSheet_Index * + indices + structFLAC____StreamMetadata__CueSheet__Track.html + a14e0692a77b5b6689e208f48369edb90 + + + + + FLAC__StreamMetadata_Padding + structFLAC____StreamMetadata__Padding.html + + int + dummy + structFLAC____StreamMetadata__Padding.html + a5214437fcba7d6abdc3b2435dcaa4124 + + + + + FLAC__StreamMetadata_Picture + structFLAC____StreamMetadata__Picture.html + + FLAC__StreamMetadata_Picture_Type + type + structFLAC____StreamMetadata__Picture.html + addc05a87a1da1ec7dd2301944ff2819c + + + + char * + mime_type + structFLAC____StreamMetadata__Picture.html + a9b4af2e10b627c0e79abf4cdd79f80e0 + + + + FLAC__byte * + description + structFLAC____StreamMetadata__Picture.html + a5bbfb168b265edfb0b29cfdb71fb413c + + + + FLAC__uint32 + width + structFLAC____StreamMetadata__Picture.html + a18dc6cdef9fa6c815450671f631a1e04 + + + + FLAC__uint32 + height + structFLAC____StreamMetadata__Picture.html + a76dbd1212d330807cda289660f5ee754 + + + + FLAC__uint32 + depth + structFLAC____StreamMetadata__Picture.html + a0f2092ddf28a6803e9c8adb7328c1967 + + + + FLAC__uint32 + colors + structFLAC____StreamMetadata__Picture.html + af17c1738bab67eba049ee101acfd36f0 + + + + FLAC__uint32 + data_length + structFLAC____StreamMetadata__Picture.html + acb893f63a196f70263468770a90580a4 + + + + FLAC__byte * + data + structFLAC____StreamMetadata__Picture.html + a9c71b5d77920e6d3aee6893795c43605 + + + + + FLAC__StreamMetadata_SeekPoint + structFLAC____StreamMetadata__SeekPoint.html + + FLAC__uint64 + sample_number + structFLAC____StreamMetadata__SeekPoint.html + a96a62923f1443fd3a5a3498e701e6ecf + + + + FLAC__uint64 + stream_offset + structFLAC____StreamMetadata__SeekPoint.html + a6028398e99f937b002618af677d32c9f + + + + uint32_t + frame_samples + structFLAC____StreamMetadata__SeekPoint.html + add671150e8ba353cd4664dcf874557c4 + + + + + FLAC__StreamMetadata_SeekTable + structFLAC____StreamMetadata__SeekTable.html + + + FLAC__StreamMetadata_StreamInfo + structFLAC____StreamMetadata__StreamInfo.html + + + FLAC__StreamMetadata_Unknown + structFLAC____StreamMetadata__Unknown.html + + + FLAC__StreamMetadata_VorbisComment + structFLAC____StreamMetadata__VorbisComment.html + + + FLAC__StreamMetadata_VorbisComment_Entry + structFLAC____StreamMetadata__VorbisComment__Entry.html + + + FLAC__Subframe + structFLAC____Subframe.html + + + FLAC__Subframe_Constant + structFLAC____Subframe__Constant.html + + FLAC__int32 + value + structFLAC____Subframe__Constant.html + af1bcfcbb17f1e1edb115b002fdbaa70e + + + + + FLAC__Subframe_Fixed + structFLAC____Subframe__Fixed.html + + FLAC__EntropyCodingMethod + entropy_coding_method + structFLAC____Subframe__Fixed.html + a0f17f8f756cd2c8acc0262ef14c37088 + + + + uint32_t + order + structFLAC____Subframe__Fixed.html + a86cd10934697bc18066f19922470e6c0 + + + + FLAC__int32 + warmup + structFLAC____Subframe__Fixed.html + a0e9a40fb89b8aa45f83bf8979d200f1f + [FLAC__MAX_FIXED_ORDER] + + + const FLAC__int32 * + residual + structFLAC____Subframe__Fixed.html + ab91be48874aec97177106a4086163188 + + + + + FLAC__Subframe_LPC + structFLAC____Subframe__LPC.html + + FLAC__EntropyCodingMethod + entropy_coding_method + structFLAC____Subframe__LPC.html + adb1401b2f8af05132420145a99f68c6e + + + + uint32_t + order + structFLAC____Subframe__LPC.html + a6307fecaed886af33803e1d39f4f56da + + + + uint32_t + qlp_coeff_precision + structFLAC____Subframe__LPC.html + a51ea4f57973bf99624b6357d9abef6b3 + + + + int + quantization_level + structFLAC____Subframe__LPC.html + aedcf1a3e5e62485e7ce250eda1f3e588 + + + + FLAC__int32 + qlp_coeff + structFLAC____Subframe__LPC.html + ad0b37ee925e2124a37fe3a513d5410b8 + [FLAC__MAX_LPC_ORDER] + + + FLAC__int32 + warmup + structFLAC____Subframe__LPC.html + a91c6c71c6fc2b812da1d2a3761e29807 + [FLAC__MAX_LPC_ORDER] + + + const FLAC__int32 * + residual + structFLAC____Subframe__LPC.html + acae4d0d439ea8900c5771eb967aec9bf + + + + + FLAC__Subframe_Verbatim + structFLAC____Subframe__Verbatim.html + + const FLAC__int32 * + data + structFLAC____Subframe__Verbatim.html + a6abc78689650804550ac517ada884584 + + + + + porting + Porting Guide for New Versions + group__porting.html + porting_1_1_2_to_1_1_3 + porting_1_1_3_to_1_1_4 + porting_1_1_4_to_1_2_0 + + + porting_1_1_2_to_1_1_3 + Porting from FLAC 1.1.2 to 1.1.3 + group__porting__1__1__2__to__1__1__3.html + + + porting_1_1_3_to_1_1_4 + Porting from FLAC 1.1.3 to 1.1.4 + group__porting__1__1__3__to__1__1__4.html + + + porting_1_1_4_to_1_2_0 + Porting from FLAC 1.1.4 to 1.2.0 + group__porting__1__1__4__to__1__2__0.html + + + flac + FLAC C API + group__flac.html + flac_callbacks + flac_export + flac_format + flac_metadata + flac_decoder + flac_encoder + + + flac_callbacks + FLAC/callback.h: I/O callback structures + group__flac__callbacks.html + FLAC__IOCallbacks + + void * + FLAC__IOHandle + group__flac__callbacks.html + ga4c329c3168dee6e352384c5e9306260d + + + + size_t(* + FLAC__IOCallback_Read + group__flac__callbacks.html + ga49d95218a6c09b215cd92cc96de71bf9 + )(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) + + + size_t(* + FLAC__IOCallback_Write + group__flac__callbacks.html + gad991792235879aecae289b56a112e1b8 + )(const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Seek + group__flac__callbacks.html + gab3942bbbd6ae09bcefe7cb3a0060c49c + )(FLAC__IOHandle handle, FLAC__int64 offset, int whence) + + + FLAC__int64(* + FLAC__IOCallback_Tell + group__flac__callbacks.html + ga45314930cabc2e9c04867eae6bca309f + )(FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Eof + group__flac__callbacks.html + ga00ae3b3d373e691908e9539ebf720675 + )(FLAC__IOHandle handle) + + + int(* + FLAC__IOCallback_Close + group__flac__callbacks.html + ga0032267fac38220689778833e08f7387 + )(FLAC__IOHandle handle) + + + + flac_export + FLAC/export.h: export symbols + group__flac__export.html + + #define + FLAC_API_VERSION_CURRENT + group__flac__export.html + ga31180fe15eea416cd8957cfca1a4c4f8 + + + + #define + FLAC_API_VERSION_REVISION + group__flac__export.html + ga811641dd9f8c542d9260240e7fbe8e93 + + + + #define + FLAC_API_VERSION_AGE + group__flac__export.html + ga1add3e09c8dfd57e8c921f299f0bbec1 + + + + int + FLAC_API_SUPPORTS_OGG_FLAC + group__flac__export.html + ga84ffcb0af1038c60eb3e21fd002093cf + + + + + flac_format + FLAC/format.h: format components + group__flac__format.html + FLAC__EntropyCodingMethod_PartitionedRiceContents + FLAC__EntropyCodingMethod_PartitionedRice + FLAC__EntropyCodingMethod + FLAC__Subframe_Constant + FLAC__Subframe_Verbatim + FLAC__Subframe_Fixed + FLAC__Subframe_LPC + FLAC__Subframe + FLAC__FrameHeader + FLAC__FrameFooter + FLAC__Frame + FLAC__StreamMetadata_StreamInfo + FLAC__StreamMetadata_Padding + FLAC__StreamMetadata_Application + FLAC__StreamMetadata_SeekPoint + FLAC__StreamMetadata_SeekTable + FLAC__StreamMetadata_VorbisComment_Entry + FLAC__StreamMetadata_VorbisComment + FLAC__StreamMetadata_CueSheet_Index + FLAC__StreamMetadata_CueSheet_Track + FLAC__StreamMetadata_CueSheet + FLAC__StreamMetadata_Picture + FLAC__StreamMetadata_Unknown + FLAC__StreamMetadata + + #define + FLAC__MAX_METADATA_TYPE_CODE + group__flac__format.html + ga626a412545818c2271fa2202c02ff1d6 + + + + #define + FLAC__MIN_BLOCK_SIZE + group__flac__format.html + gaa5a85c2ea434221ce684be3469517003 + + + + #define + FLAC__MAX_BLOCK_SIZE + group__flac__format.html + gaef78bc1b04f721e7b4563381f5514e8d + + + + #define + FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ + group__flac__format.html + ga8f6ba2c28fbfcf52326d115c95b0a751 + + + + #define + FLAC__MAX_CHANNELS + group__flac__format.html + ga488aa5678a58d08f984f5d39185b763d + + + + #define + FLAC__MIN_BITS_PER_SAMPLE + group__flac__format.html + ga30b0f21abbb2cdfd461fe04b425b5438 + + + + #define + FLAC__MAX_BITS_PER_SAMPLE + group__flac__format.html + gad0156d56751e80241fa349d1e25064a6 + + + + #define + FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE + group__flac__format.html + ga0fc418d96053d385fd2f56dce8007fbc + + + + #define + FLAC__MAX_SAMPLE_RATE + group__flac__format.html + ga99abeef0c05c6bc76eacfa865abbfa70 + + + + #define + FLAC__MAX_LPC_ORDER + group__flac__format.html + ga16108d413f524329f338cff6e05f3aff + + + + #define + FLAC__SUBSET_MAX_LPC_ORDER_48000HZ + group__flac__format.html + ga9791efa78147196820c86a6041d7774d + + + + #define + FLAC__MIN_QLP_COEFF_PRECISION + group__flac__format.html + gaf52033b2950b9396dd92b167b3bbe4db + + + + #define + FLAC__MAX_QLP_COEFF_PRECISION + group__flac__format.html + ga6aa38a4bc5b9d96a78253ccb8b08bd1f + + + + #define + FLAC__MAX_FIXED_ORDER + group__flac__format.html + gabd0d5d6fe71b337244712b244ae7cb0f + + + + #define + FLAC__MAX_RICE_PARTITION_ORDER + group__flac__format.html + ga78a2e97e230b2aa7f99edc94a466f5bb + + + + #define + FLAC__SUBSET_MAX_RICE_PARTITION_ORDER + group__flac__format.html + gab19dec1b56de482ccfeb5f9843f60a14 + + + + #define + FLAC__STREAM_SYNC_LENGTH + group__flac__format.html + gae7ddaf298d3ceb83aae6301908675c1d + + + + #define + FLAC__STREAM_METADATA_STREAMINFO_LENGTH + group__flac__format.html + ga06dfae7260da40e4c5f8fc4d531b326c + + + + #define + FLAC__STREAM_METADATA_SEEKPOINT_LENGTH + group__flac__format.html + gabdf85aa2c9a483378dfe850b85ab93ef + + + + #define + FLAC__STREAM_METADATA_HEADER_LENGTH + group__flac__format.html + ga706a29b8a14902c457783bfd4fd7bab2 + + + + + FLAC__EntropyCodingMethodType + group__flac__format.html + ga951733d2ea01943514290012cd622d3a + + + + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE + group__flac__format.html + gga951733d2ea01943514290012cd622d3aa5253f8b8edc61220739f229a299775dd + + + + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 + group__flac__format.html + gga951733d2ea01943514290012cd622d3aa202960a608ee91f9f11c2575b9ecc5aa + + + + + FLAC__SubframeType + group__flac__format.html + ga1f431eaf213e74d7747589932d263348 + + + + FLAC__SUBFRAME_TYPE_CONSTANT + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a9bf56d836aeffb11d614e29ea1cdf2a9 + + + + FLAC__SUBFRAME_TYPE_VERBATIM + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a8520596ef07d6c8577f07025f137657b + + + + FLAC__SUBFRAME_TYPE_FIXED + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a6b3cce73039a513f9afefdc8e4f664a5 + + + + FLAC__SUBFRAME_TYPE_LPC + group__flac__format.html + gga1f431eaf213e74d7747589932d263348a31437462c3e4c3a5a214a91eff8cc3af + + + + + FLAC__ChannelAssignment + group__flac__format.html + ga79855f8525672e37f299bbe02952ef9c + + + + FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca3c554e4c8512c2de31dfd3305f8b31b3 + + + + FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca28d41295b20593561dc9934cc977d5cb + + + + FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9cad155b61582140b2b90362005f1a93e2e + + + + FLAC__CHANNEL_ASSIGNMENT_MID_SIDE + group__flac__format.html + gga79855f8525672e37f299bbe02952ef9ca85c1512c0473b5ede364a9943759a80c + + + + + FLAC__FrameNumberType + group__flac__format.html + ga8fe9ebc78386cd2a3d23b7b8e3818e1c + + + + FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER + group__flac__format.html + gga8fe9ebc78386cd2a3d23b7b8e3818e1ca0b9cbf3853f0ae105cf9b5360164f794 + + + + FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER + group__flac__format.html + gga8fe9ebc78386cd2a3d23b7b8e3818e1ca9220ce93dcc151e5edd5db7e7155b35a + + + + + FLAC__MetadataType + group__flac__format.html + gac71714ba8ddbbd66d26bb78a427fac01 + + + + FLAC__METADATA_TYPE_STREAMINFO + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acffa517e969ba6a868dcf10e5da75c28 + + + + FLAC__METADATA_TYPE_PADDING + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a6dcb741fc0aef389580f110e88beb896 + + + + FLAC__METADATA_TYPE_APPLICATION + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a2b287a22a1ac9440b309127884c8d41b + + + + FLAC__METADATA_TYPE_SEEKTABLE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a5f6323e489be1318f0e3747960ebdd91 + + + + FLAC__METADATA_TYPE_VORBIS_COMMENT + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01ad013576bc5196b907547739518605520 + + + + FLAC__METADATA_TYPE_CUESHEET + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a0b3f07ae60609126562cd0233ce00a65 + + + + FLAC__METADATA_TYPE_PICTURE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acf28ae2788366617c1aeab81d5961c6e + + + + FLAC__METADATA_TYPE_UNDEFINED + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01acf6ac61fcc866608f5583c275dc34d47 + + + + FLAC__MAX_METADATA_TYPE + group__flac__format.html + ggac71714ba8ddbbd66d26bb78a427fac01a1a2f283a3dd9e7b46181d7a114ec5805 + + + + + FLAC__StreamMetadata_Picture_Type + group__flac__format.html + gaf6d3e836cee023e0b8d897f1fdc9825d + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dadd6d6af32499b1973e48c9e8f13357ce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da5eca52e5cfcb718f33f5fce9b1021a49 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825daaf44b9d5fb75dde6941463e5029aa351 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da3e20b405fd4e835ff3a4465b8bcb7c36 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da9ae132f2ee7d3baf35f94a9dc9640f62 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dad3cb471b7925ae5034d9fd9ecfafb87a + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dac994edc4166107ab5790e49f0b57ffd9 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da1282e252e20553c39907074052960f42 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da4cead70f8720f180fc220e6df8d55cce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dae01a47af0b0c4d89500b755ebca866ce + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BAND + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da8515523b4c9ab65ffef7db98bc09ceb1 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da5ea1554bc96deb45731bc5897600d1c2 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da86159eda8969514f5992b3e341103f22 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dac96e810cdd81465709b4a3a03289e89c + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da8cee3bb376ed1044b3a7e20b9c971ff1 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da4d4dc6904984370501865988d948de3f + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da7adc2b194968b51768721de7bda39df9 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_FISH + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825dabbf0d7c519ae8ba8cec7d1f165f67b0f + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da89ba412c9d89c937c28afdab508d047a + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da751716a4528a78a8d53f435c816c4917 + + + + FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE + group__flac__format.html + ggaf6d3e836cee023e0b8d897f1fdc9825da31d75150a4079482fe122e703eff9141 + + + + FLAC__bool + FLAC__format_sample_rate_is_valid + group__flac__format.html + ga48100669b8e8613f1e226c3925f701a8 + (uint32_t sample_rate) + + + FLAC__bool + FLAC__format_blocksize_is_subset + group__flac__format.html + ga4e71651ff9b90b50480f86050d78c16b + (uint32_t blocksize, uint32_t sample_rate) + + + FLAC__bool + FLAC__format_sample_rate_is_subset + group__flac__format.html + gae048df385980088b4c29c52aa7207306 + (uint32_t sample_rate) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_name_is_legal + group__flac__format.html + gae5fb55cd5977ebf178c5b38da831c057 + (const char *name) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_value_is_legal + group__flac__format.html + ga1a5061a12c836cc2ff3967088afda1c4 + (const FLAC__byte *value, uint32_t length) + + + FLAC__bool + FLAC__format_vorbiscomment_entry_is_legal + group__flac__format.html + ga1439057dbc3f0719309620caaf82c1b1 + (const FLAC__byte *entry, uint32_t length) + + + FLAC__bool + FLAC__format_seektable_is_legal + group__flac__format.html + ga02ed0843553fb8f718fe8e7c54d12244 + (const FLAC__StreamMetadata_SeekTable *seek_table) + + + uint32_t + FLAC__format_seektable_sort + group__flac__format.html + ga2285adb37d91c41b1f9a5c3b1b35e886 + (FLAC__StreamMetadata_SeekTable *seek_table) + + + FLAC__bool + FLAC__format_cuesheet_is_legal + group__flac__format.html + gaa9ed0fa4ed04dbfdaa163d0f5308c080 + (const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation) + + + FLAC__bool + FLAC__format_picture_is_legal + group__flac__format.html + ga82ca3ffc97c106c61882134f1a7fb1be + (const FLAC__StreamMetadata_Picture *picture, const char **violation) + + + const char * + FLAC__VERSION_STRING + group__flac__format.html + ga52e2616f9a0b94881cd7711c18d62a35 + + + + const char * + FLAC__VENDOR_STRING + group__flac__format.html + gad5cccab0de3adda58914edf3c31fd64f + + + + const FLAC__byte + FLAC__STREAM_SYNC_STRING + group__flac__format.html + ga3f275a3a6056e0d53df3b72b03adde4b + [4] + + + const uint32_t + FLAC__STREAM_SYNC + group__flac__format.html + gaf836406a1f4c1b37ef6e4023f65c127f + + + + const uint32_t + FLAC__STREAM_SYNC_LEN + group__flac__format.html + gaa95eb3cb07b7d503de94521a155af6bc + + + + const char *const + FLAC__EntropyCodingMethodTypeString + group__flac__format.html + ga41603ac35eed8c77c2f2e0b12067d88a + [] + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN + group__flac__format.html + ga12fe0569d6d11d6e6ba8d3342196ccc6 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN + group__flac__format.html + ga0c00e7f349eabc3d25dab7223cc5af15 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN + group__flac__format.html + ga6d5cfd610e45402ac02d5786bda8a755 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN + group__flac__format.html + ga7aed9c761b806bfd787c077da0ab9a07 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER + group__flac__format.html + ga80fb6cc2fb05edcea2a7e3ae004096a9 + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER + group__flac__format.html + ga12e2bed2777e9beb187498ca116bcb0a + + + + const uint32_t + FLAC__ENTROPY_CODING_METHOD_TYPE_LEN + group__flac__format.html + ga18e9f8910a79bebe138a76a1a923076f + + + + const char *const + FLAC__SubframeTypeString + group__flac__format.html + ga78d78f45f123cfbb50cebd61b96097df + [] + + + const uint32_t + FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN + group__flac__format.html + ga303c4e38674249f42ec8735354622463 + + + + const uint32_t + FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN + group__flac__format.html + ga918e00beab5d7826e37b6397520df4c8 + + + + const uint32_t + FLAC__SUBFRAME_ZERO_PAD_LEN + group__flac__format.html + ga8f4ad64ca91dd750a38b5c2d30838fdc + + + + const uint32_t + FLAC__SUBFRAME_TYPE_LEN + group__flac__format.html + ga65c51d6c43f33179072d7225768e14a2 + + + + const uint32_t + FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN + group__flac__format.html + gaf2e0e7e4f28e357646ad7e5dfcc90f2c + + + + const uint32_t + FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK + group__flac__format.html + gacb235be931ef14cee71ad37bc1924667 + + + + const uint32_t + FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK + group__flac__format.html + ga93b8d9b7b76ff5cefa8ce8965a9dca9c + + + + const uint32_t + FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK + group__flac__format.html + gac7884342f77d4f16f1921a0cc7a2d3ef + + + + const uint32_t + FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK + group__flac__format.html + ga5c1baa1525de2749f74c174fad422266 + + + + const char *const + FLAC__ChannelAssignmentString + group__flac__format.html + gab1a1d3929a4e5a5aff2c15010742aa21 + [] + + + const char *const + FLAC__FrameNumberTypeString + group__flac__format.html + ga931a0e63c0f2b31fab801e1dd693fa4e + [] + + + const uint32_t + FLAC__FRAME_HEADER_SYNC + group__flac__format.html + ga7af18147ae3a5bb75136843f6e271a4d + + + + const uint32_t + FLAC__FRAME_HEADER_SYNC_LEN + group__flac__format.html + gab3821624c367fac8d994d0ab43229c13 + + + + const uint32_t + FLAC__FRAME_HEADER_RESERVED_LEN + group__flac__format.html + gaed36cf061a5112a72d33b5fdb2941cf4 + + + + const uint32_t + FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN + group__flac__format.html + ga73711753949d786e168222b2cf9502dd + + + + const uint32_t + FLAC__FRAME_HEADER_BLOCK_SIZE_LEN + group__flac__format.html + gaf9b185ee73ab9166498aa087f506c895 + + + + const uint32_t + FLAC__FRAME_HEADER_SAMPLE_RATE_LEN + group__flac__format.html + ga8c686e8933c321c9d386db6a6f0d5f70 + + + + const uint32_t + FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN + group__flac__format.html + ga8d2909446c32443619b9967188a07fb7 + + + + const uint32_t + FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN + group__flac__format.html + ga47f63b74fff6e3396d6203d1022062be + + + + const uint32_t + FLAC__FRAME_HEADER_ZERO_PAD_LEN + group__flac__format.html + ga3d73f3519e9ec387c1cf5d54bdfb022f + + + + const uint32_t + FLAC__FRAME_HEADER_CRC_LEN + group__flac__format.html + gac0478a55947c6fb97f53f6a9222a0952 + + + + const uint32_t + FLAC__FRAME_FOOTER_CRC_LEN + group__flac__format.html + ga3e74578ca10d5a2a80766040443665f3 + + + + const char *const + FLAC__MetadataTypeString + group__flac__format.html + gaa9ad23f06a579d1110d61d54c8c999f0 + [] + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN + group__flac__format.html + ga08f9ac0cd9e3fe8db67a16c011b1c9f0 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN + group__flac__format.html + ga60a3c8fc22960cec9adb6e22b866d61c + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN + group__flac__format.html + gaab054a54f7725f6fc250321f245e1f9d + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN + group__flac__format.html + gafb35eac8504f1903654cb28f924c5c22 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN + group__flac__format.html + gaac031487db3e1961cb5d48f0ce5107b8 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN + group__flac__format.html + gab7c3111fe0e73ac3b323ba881d02a8b1 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN + group__flac__format.html + gaae73b50a208bc0b9479b56b5be546f69 + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN + group__flac__format.html + ga0d6496e976945999313c9029dba46b2b + + + + const uint32_t + FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN + group__flac__format.html + ga651ba492225f315a70286eccd3c3184b + + + + const uint32_t + FLAC__STREAM_METADATA_APPLICATION_ID_LEN + group__flac__format.html + ga8040c7fa72cfc55c74e43d620e64a805 + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN + group__flac__format.html + ga9e95bd97ef2fa28b1d5bbd3917160f9d + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN + group__flac__format.html + gaaa177c78a35cdd323845928326274f63 + + + + const uint32_t + FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN + group__flac__format.html + ga62341e0615038b3eade3c7691f410cca + + + + const FLAC__uint64 + FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER + group__flac__format.html + gad5d58774aea926635e6841c411d60566 + + + + const uint32_t + FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN + group__flac__format.html + ga7ff8c3f4693944031b9ac8ff99093df6 + + + + const uint32_t + FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN + group__flac__format.html + ga2019f140758b10d086e438e43a257036 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN + group__flac__format.html + gab448a7b0ee7c06c6fa23155d29c37ccb + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN + group__flac__format.html + ga9d3b4268a36fa8a5d5f8cf2ee704ceb2 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN + group__flac__format.html + ga978b9c0ec4220d22a6bd4aab75fb9949 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN + group__flac__format.html + gad09fd65eb06250d671d05eb8e999cc89 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN + group__flac__format.html + gac4fb0980ac6a409916e4122ba25ae8fd + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN + group__flac__format.html + ga76dc2c2ae2385f2ab0752f16f7f9d4c1 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN + group__flac__format.html + gaf7f2927d240eeab1214a88bceb5deae6 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN + group__flac__format.html + ga715d4e09605238e3b40afdbdaf4717b7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN + group__flac__format.html + ga06b1d7142a95fa837eff737ee8f825be + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN + group__flac__format.html + ga4b4231131e11b216e34e49d12f210363 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN + group__flac__format.html + gaae2030a18d8421dc476ff18c95f773d7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN + group__flac__format.html + ga397890e4c43ca950d2236250d69a92f7 + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN + group__flac__format.html + ga285c570708526c7ebcb742c982e5d5fd + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN + group__flac__format.html + gacb9458a79b7d214e8758cc5ad4e2b18a + + + + const uint32_t + FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN + group__flac__format.html + gaa30d6a1d38397b4851add1bb2a6d145c + + + + const char *const + FLAC__StreamMetadata_Picture_TypeString + group__flac__format.html + ga2d27672452696cb97fd39db1cf43486b + [] + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_TYPE_LEN + group__flac__format.html + ga9a91512adcf0f8293c0a8793ce8b246c + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN + group__flac__format.html + ga5186600f0920191cb61e55b2c7628287 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN + group__flac__format.html + ga6d71497d949952f8d8b16f482ebcf555 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN + group__flac__format.html + ga2819d0e2a032fd5947a1259e40b5f52a + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN + group__flac__format.html + gaf537b699909721adca031b6e3826ce22 + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN + group__flac__format.html + ga553826edf5d175f81f162e3049c386ea + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_COLORS_LEN + group__flac__format.html + ga3f810c75aad1f5a0c9d1d85c56998b5b + + + + const uint32_t + FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN + group__flac__format.html + gafd1dd421206189d123f644ff3717cb12 + + + + const uint32_t + FLAC__STREAM_METADATA_IS_LAST_LEN + group__flac__format.html + gaa51331191b62fb15793b0a35ea8821e1 + + + + const uint32_t + FLAC__STREAM_METADATA_TYPE_LEN + group__flac__format.html + gaec6fd2f0de2c3f88b7bb0449d178043c + + + + const uint32_t + FLAC__STREAM_METADATA_LENGTH_LEN + group__flac__format.html + ga90cbf669f1c3400813ee4ecdd3462ca3 + + + + + flac_metadata + FLAC/metadata.h: metadata interfaces + group__flac__metadata.html + flac_metadata_level0 + flac_metadata_level1 + flac_metadata_level2 + flac_metadata_object + + + flac_metadata_level0 + FLAC/metadata.h: metadata level 0 interface + group__flac__metadata__level0.html + + FLAC__bool + FLAC__metadata_get_streaminfo + group__flac__metadata__level0.html + ga804b42d9da714199b4b383ce51078d51 + (const char *filename, FLAC__StreamMetadata *streaminfo) + + + FLAC__bool + FLAC__metadata_get_tags + group__flac__metadata__level0.html + ga1626af09cd39d4fa37d5b46ebe3790fd + (const char *filename, FLAC__StreamMetadata **tags) + + + FLAC__bool + FLAC__metadata_get_cuesheet + group__flac__metadata__level0.html + ga0f47949dca514506718276205a4fae0b + (const char *filename, FLAC__StreamMetadata **cuesheet) + + + FLAC__bool + FLAC__metadata_get_picture + group__flac__metadata__level0.html + gab9f69e48c5a33cacb924d13986bfb852 + (const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + + flac_metadata_level1 + FLAC/metadata.h: metadata level 1 interface + group__flac__metadata__level1.html + + struct FLAC__Metadata_SimpleIterator + FLAC__Metadata_SimpleIterator + group__flac__metadata__level1.html + ga6accccddbb867dfc2eece9ee3ffecb3a + + + + + FLAC__Metadata_SimpleIteratorStatus + group__flac__metadata__level1.html + gac926e7d2773a05066115cac9048bbec9 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a33aadd73194c0d7e307d643237e0ddcd + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a0a3933cb38c8957a8d5c3d1afb4766f9 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a20e835bbb74b4d039e598617f68d2af6 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a7785f77a612be8956fbe7cab73497220 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9af055d8c0c663e72134fe2db8037b6880 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a14c897124887858109200723826f85b7 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a088df964f0852dd7e19304e920c3ee8e + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a2ad85a32e291d1e918692d68cc22fd40 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9ac2337299c2347ca311caeaa7d71d857c + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a2e073843fa99419d76a0b210da96ceb6 + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a4f855433038c576da127fc1de9d18f9b + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9aa8386ed0a20d7e91b0022d203ec3cdec + + + + FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR + group__flac__metadata__level1.html + ggac926e7d2773a05066115cac9048bbec9a9d821ae65a1c5de619daa88c850906df + + + + FLAC__Metadata_SimpleIterator * + FLAC__metadata_simple_iterator_new + group__flac__metadata__level1.html + ga017ae86f3351888f50feb47026ed2482 + (void) + + + void + FLAC__metadata_simple_iterator_delete + group__flac__metadata__level1.html + ga4619be06f51429fea71e5b98900cec3e + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__Metadata_SimpleIteratorStatus + FLAC__metadata_simple_iterator_status + group__flac__metadata__level1.html + gae8fd236fe6049c61f7f3b4a6ecbcd240 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_init + group__flac__metadata__level1.html + gaba8daf276fd7da863a2522ac050125fd + (FLAC__Metadata_SimpleIterator *iterator, const char *filename, FLAC__bool read_only, FLAC__bool preserve_file_stats) + + + FLAC__bool + FLAC__metadata_simple_iterator_is_writable + group__flac__metadata__level1.html + ga5150ecd8668c610f79192a2838667790 + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_next + group__flac__metadata__level1.html + gabb7de0a1067efae353e0792dc6e51905 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_prev + group__flac__metadata__level1.html + ga6db5313b31120b28e210ae721d6525a8 + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_is_last + group__flac__metadata__level1.html + ga9eb215059840960de69aa84469ba954f + (const FLAC__Metadata_SimpleIterator *iterator) + + + off_t + FLAC__metadata_simple_iterator_get_block_offset + group__flac__metadata__level1.html + gade0a61723420daeb4bc226713671c6f0 + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__MetadataType + FLAC__metadata_simple_iterator_get_block_type + group__flac__metadata__level1.html + ga17b61d17e83432913abf4334d6e0c073 + (const FLAC__Metadata_SimpleIterator *iterator) + + + uint32_t + FLAC__metadata_simple_iterator_get_block_length + group__flac__metadata__level1.html + gaf29b9a7f2e2c762756c1444e55a119fa + (const FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_get_application_id + group__flac__metadata__level1.html + gad4fea2d7d98d16e75e6d8260f690a5dc + (FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id) + + + FLAC__StreamMetadata * + FLAC__metadata_simple_iterator_get_block + group__flac__metadata__level1.html + ga1b7374cafd886ceb880b050dfa1e387a + (FLAC__Metadata_SimpleIterator *iterator) + + + FLAC__bool + FLAC__metadata_simple_iterator_set_block + group__flac__metadata__level1.html + gae1dd863561606658f88c492682de7b80 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_simple_iterator_insert_block_after + group__flac__metadata__level1.html + ga7a0c00e93bb37324a20926e92e604102 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_simple_iterator_delete_block + group__flac__metadata__level1.html + gac3116c8e6e7f59914ae22c0c4c6b0a23 + (FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding) + + + const char *const + FLAC__Metadata_SimpleIteratorStatusString + group__flac__metadata__level1.html + gaa2a8b972800c34f9f5807cadf6ecdb57 + [] + + + + flac_metadata_level2 + FLAC/metadata.h: metadata level 2 interface + group__flac__metadata__level2.html + + struct FLAC__Metadata_Chain + FLAC__Metadata_Chain + group__flac__metadata__level2.html + gaec6993c60b88f222a52af86f8f47bfdf + + + + struct FLAC__Metadata_Iterator + FLAC__Metadata_Iterator + group__flac__metadata__level2.html + ga9f3e135a07cdef7e51597646aa7b89b2 + + + + + FLAC__Metadata_ChainStatus + group__flac__metadata__level2.html + gafe2a924893b0800b020bea8160fd4531 + + + + FLAC__METADATA_CHAIN_STATUS_OK + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a293be942ec54576f2b3c73613af968e9 + + + + FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a1be9400982f411173af46bf0c3acbdc7 + + + + FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a43d2741a650576052fa3615d8cd64d86 + + + + FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a99748a4b12ed10f9368375cc8deeb143 + + + + FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ac469c6543ebb117e99064572c16672d4 + + + + FLAC__METADATA_CHAIN_STATUS_BAD_METADATA + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a8efd2c76dc06308eb6eba59e1bc6300b + + + + FLAC__METADATA_CHAIN_STATUS_READ_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a0525de5fb5d8aeeb4e848e33a8d503c6 + + + + FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a5814bc26bcf92143198b8e7f028f43a2 + + + + FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a66460c735e4745788b40889329e8489f + + + + FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531af4ecf22bc3e5adf78a9c765f856efb0d + + + + FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a1cd3138ed493f6a0f5b95fb8481edd1e + + + + FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ab12ec938f7556a163c609194ee0aede0 + + + + FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a36b9bcf93da8e0f111738a65eab36e9d + + + + FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531ab8a6aa5f115db3f07ad2ed4adbcbe060 + + + + FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531a0d9e64ad6514c88b8ea9e9171c42ec9a + + + + FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL + group__flac__metadata__level2.html + ggafe2a924893b0800b020bea8160fd4531af86670707345e2d02cc84aec059459d0 + + + + FLAC__Metadata_Chain * + FLAC__metadata_chain_new + group__flac__metadata__level2.html + ga381a1b6efff8d4e9d793f1dda515bd73 + (void) + + + void + FLAC__metadata_chain_delete + group__flac__metadata__level2.html + ga46b6c67f30db2955798dfb5556f63aa3 + (FLAC__Metadata_Chain *chain) + + + FLAC__Metadata_ChainStatus + FLAC__metadata_chain_status + group__flac__metadata__level2.html + ga8e74773f8ca2bb2bc0b56a65ca0299f4 + (FLAC__Metadata_Chain *chain) + + + FLAC__bool + FLAC__metadata_chain_read + group__flac__metadata__level2.html + ga5a4f2056c30f78af5a79f6b64d5bfdcd + (FLAC__Metadata_Chain *chain, const char *filename) + + + FLAC__bool + FLAC__metadata_chain_read_ogg + group__flac__metadata__level2.html + ga3995010aab28a483ad9905669e5c4954 + (FLAC__Metadata_Chain *chain, const char *filename) + + + FLAC__bool + FLAC__metadata_chain_read_with_callbacks + group__flac__metadata__level2.html + ga595f55b611ed588d4d55a9b2eb9d2add + (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_read_ogg_with_callbacks + group__flac__metadata__level2.html + gaccc2f991722682d3c31d36f51985066c + (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_check_if_tempfile_needed + group__flac__metadata__level2.html + ga46602f64d423cfe5d5f8a4155f8a97e2 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding) + + + FLAC__bool + FLAC__metadata_chain_write + group__flac__metadata__level2.html + ga46bf9cf7d426078101b9297ba80bb835 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool preserve_file_stats) + + + FLAC__bool + FLAC__metadata_chain_write_with_callbacks + group__flac__metadata__level2.html + ga70532b3705294dc891d8db649a4d4843 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks) + + + FLAC__bool + FLAC__metadata_chain_write_with_callbacks_and_tempfile + group__flac__metadata__level2.html + ga72facaa621e8d798036a4a7da3643e41 + (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, FLAC__IOHandle temp_handle, FLAC__IOCallbacks temp_callbacks) + + + void + FLAC__metadata_chain_merge_padding + group__flac__metadata__level2.html + ga0a43897914edb751cb87f7e281aff3dc + (FLAC__Metadata_Chain *chain) + + + void + FLAC__metadata_chain_sort_padding + group__flac__metadata__level2.html + ga82b66fe71c727adb9cf80a1da9834ce5 + (FLAC__Metadata_Chain *chain) + + + FLAC__Metadata_Iterator * + FLAC__metadata_iterator_new + group__flac__metadata__level2.html + ga1941ca04671813fc039ea7fd35ae6461 + (void) + + + void + FLAC__metadata_iterator_delete + group__flac__metadata__level2.html + ga374c246e1aeafd803d29a6e99b226241 + (FLAC__Metadata_Iterator *iterator) + + + void + FLAC__metadata_iterator_init + group__flac__metadata__level2.html + ga2e93196b17a1c73e949e661e33d7311a + (FLAC__Metadata_Iterator *iterator, FLAC__Metadata_Chain *chain) + + + FLAC__bool + FLAC__metadata_iterator_next + group__flac__metadata__level2.html + ga60449d0c1d76a73978159e3aa5e79459 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__bool + FLAC__metadata_iterator_prev + group__flac__metadata__level2.html + gaa28df1c5aa56726f573f90e4bae2fe50 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__MetadataType + FLAC__metadata_iterator_get_block_type + group__flac__metadata__level2.html + ga83ecb59ffa16bfbb1e286e64f9270de1 + (const FLAC__Metadata_Iterator *iterator) + + + FLAC__StreamMetadata * + FLAC__metadata_iterator_get_block + group__flac__metadata__level2.html + gad3e7fbc3b3d9c192a3ac425c7b263641 + (FLAC__Metadata_Iterator *iterator) + + + FLAC__bool + FLAC__metadata_iterator_set_block + group__flac__metadata__level2.html + gaf61795b21300a2b0c9940c11974aab53 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + FLAC__bool + FLAC__metadata_iterator_delete_block + group__flac__metadata__level2.html + gadf860af967d2ee483be01fc0ed8767a9 + (FLAC__Metadata_Iterator *iterator, FLAC__bool replace_with_padding) + + + FLAC__bool + FLAC__metadata_iterator_insert_block_before + group__flac__metadata__level2.html + ga8ac45e2df8b6fd6f5db345c4293aa435 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + FLAC__bool + FLAC__metadata_iterator_insert_block_after + group__flac__metadata__level2.html + ga55e53757f91696e2578196a2799fc632 + (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block) + + + const char *const + FLAC__Metadata_ChainStatusString + group__flac__metadata__level2.html + ga6498d1976b0d9fa3f8f6295c02e622dd + [] + + + + flac_metadata_object + FLAC/metadata.h: metadata object methods + group__flac__metadata__object.html + + FLAC__StreamMetadata * + FLAC__metadata_object_new + group__flac__metadata__object.html + ga5df7bc8c72cafed1391bdc5ffc876e0f + (FLAC__MetadataType type) + + + FLAC__StreamMetadata * + FLAC__metadata_object_clone + group__flac__metadata__object.html + ga29af0ecc2a015ef22289f206bc308d80 + (const FLAC__StreamMetadata *object) + + + void + FLAC__metadata_object_delete + group__flac__metadata__object.html + ga6b3159744a1e5c4ce9d349fd0ebae800 + (FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_is_equal + group__flac__metadata__object.html + ga6853bcafe731b1db37105d49f3085349 + (const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2) + + + FLAC__bool + FLAC__metadata_object_application_set_data + group__flac__metadata__object.html + ga11f340e8877c58d231b09841182d66e5 + (FLAC__StreamMetadata *object, FLAC__byte *data, uint32_t length, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_seektable_resize_points + group__flac__metadata__object.html + ga7352bb944c594f447d3ab316244a9895 + (FLAC__StreamMetadata *object, uint32_t new_num_points) + + + void + FLAC__metadata_object_seektable_set_point + group__flac__metadata__object.html + gac258246fdda91e14110a186c1d8dcc8c + (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point) + + + FLAC__bool + FLAC__metadata_object_seektable_insert_point + group__flac__metadata__object.html + ga5ba4c8024988af5985877f9e0b3fef38 + (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point) + + + FLAC__bool + FLAC__metadata_object_seektable_delete_point + group__flac__metadata__object.html + gaa138480c7ea602a31109d3870b41a12f + (FLAC__StreamMetadata *object, uint32_t point_num) + + + FLAC__bool + FLAC__metadata_object_seektable_is_legal + group__flac__metadata__object.html + gacd3e1b83fabc1dabccb725b2876c8f53 + (const FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_placeholders + group__flac__metadata__object.html + gac509d8cb126d06f4bd73505b6c432338 + (FLAC__StreamMetadata *object, uint32_t num) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_point + group__flac__metadata__object.html + ga0b3aca4fbebc206cd79f13ac36f653f0 + (FLAC__StreamMetadata *object, FLAC__uint64 sample_number) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_points + group__flac__metadata__object.html + ga409f80cb3938814ae307e609faabccc4 + (FLAC__StreamMetadata *object, FLAC__uint64 sample_numbers[], uint32_t num) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_spaced_points + group__flac__metadata__object.html + gab899d58863aa6e974b3ed4ddd2ebf09e + (FLAC__StreamMetadata *object, uint32_t num, FLAC__uint64 total_samples) + + + FLAC__bool + FLAC__metadata_object_seektable_template_append_spaced_points_by_samples + group__flac__metadata__object.html + gab91c8b020a1da37d7524051ae82328cb + (FLAC__StreamMetadata *object, uint32_t samples, FLAC__uint64 total_samples) + + + FLAC__bool + FLAC__metadata_object_seektable_template_sort + group__flac__metadata__object.html + gafb0449b639ba5c618826d893c2961260 + (FLAC__StreamMetadata *object, FLAC__bool compact) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_set_vendor_string + group__flac__metadata__object.html + ga5cf1a57afab200b4b67730a77d3ee162 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_resize_comments + group__flac__metadata__object.html + gab44132276cbec9abcadbacafbcd5f92a + (FLAC__StreamMetadata *object, uint32_t new_num_comments) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_set_comment + group__flac__metadata__object.html + ga0661d2b99c0e37fd8c5aa673eb302c03 + (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_insert_comment + group__flac__metadata__object.html + ga395fcb4900cd5710e67dc96a9a9cca70 + (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_append_comment + group__flac__metadata__object.html + ga889b8b9c5bbd1070a1214c3da8b72863 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_replace_comment + group__flac__metadata__object.html + ga0608308e8c4c09aa610747d8dff90a34 + (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_delete_comment + group__flac__metadata__object.html + gac9f51ea4151eb8960e56f31beaa94bd3 + (FLAC__StreamMetadata *object, uint32_t comment_num) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair + group__flac__metadata__object.html + gab644c34515c04630c62a7645fab2947e + (FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair + group__flac__metadata__object.html + ga29079764fabda53cb3e890e6d05c8345 + (const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value) + + + FLAC__bool + FLAC__metadata_object_vorbiscomment_entry_matches + group__flac__metadata__object.html + gaad491f6e73bfb7c5a97b75eda7f4392a + (const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, uint32_t field_name_length) + + + int + FLAC__metadata_object_vorbiscomment_find_entry_from + group__flac__metadata__object.html + gaeaf925bf881fd4e93bf68ce09b935175 + (const FLAC__StreamMetadata *object, uint32_t offset, const char *field_name) + + + int + FLAC__metadata_object_vorbiscomment_remove_entry_matching + group__flac__metadata__object.html + ga017d743b3200a27b8567ef33592224b8 + (FLAC__StreamMetadata *object, const char *field_name) + + + int + FLAC__metadata_object_vorbiscomment_remove_entries_matching + group__flac__metadata__object.html + ga5a3ff5856098c449622ba850684aec75 + (FLAC__StreamMetadata *object, const char *field_name) + + + FLAC__StreamMetadata_CueSheet_Track * + FLAC__metadata_object_cuesheet_track_new + group__flac__metadata__object.html + gafe2983a9c09685e34626cab39b3fb52c + (void) + + + FLAC__StreamMetadata_CueSheet_Track * + FLAC__metadata_object_cuesheet_track_clone + group__flac__metadata__object.html + ga1293d6df6daf2d65143d8bb40eed9261 + (const FLAC__StreamMetadata_CueSheet_Track *object) + + + void + FLAC__metadata_object_cuesheet_track_delete + group__flac__metadata__object.html + gaa533fd7b72fa079e783de4b155b241ce + (FLAC__StreamMetadata_CueSheet_Track *object) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_resize_indices + group__flac__metadata__object.html + ga003c90292bc93a877060c34a486fc2b4 + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t new_num_indices) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_insert_index + group__flac__metadata__object.html + ga2d66b56b6ebda795ccee86968029e6ad + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num, FLAC__StreamMetadata_CueSheet_Index index) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_insert_blank_index + group__flac__metadata__object.html + ga49ff698f47d914f4e9e45032b3433fba + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_track_delete_index + group__flac__metadata__object.html + gabc751423461062096470b31613468feb + (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_resize_tracks + group__flac__metadata__object.html + ga9c2edc662e4109c0f8ab5fd72bddaccf + (FLAC__StreamMetadata *object, uint32_t new_num_tracks) + + + FLAC__bool + FLAC__metadata_object_cuesheet_set_track + group__flac__metadata__object.html + gab5f4c6e58c5aa72223e80e7dcdeecfe9 + (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_cuesheet_insert_track + group__flac__metadata__object.html + gaa5e7694a181545251f263fcb672abf3d + (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_cuesheet_insert_blank_track + group__flac__metadata__object.html + ga7ccabeffadad2c13522439f1337718ca + (FLAC__StreamMetadata *object, uint32_t track_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_delete_track + group__flac__metadata__object.html + ga241f5d623483b5aebc3a721cce3fa8ec + (FLAC__StreamMetadata *object, uint32_t track_num) + + + FLAC__bool + FLAC__metadata_object_cuesheet_is_legal + group__flac__metadata__object.html + ga1a443d9299ce69694ad59bec4519d7b2 + (const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation) + + + FLAC__uint32 + FLAC__metadata_object_cuesheet_calculate_cddb_id + group__flac__metadata__object.html + gaff2f825950b3e4dda4c8ddbf8e2f7ecd + (const FLAC__StreamMetadata *object) + + + FLAC__bool + FLAC__metadata_object_picture_set_mime_type + group__flac__metadata__object.html + ga4511ae9ca994c9f4ab035a3c1aa98f45 + (FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_set_description + group__flac__metadata__object.html + ga293fe7d8b8b9e49d2414db0925b0f442 + (FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_set_data + group__flac__metadata__object.html + ga00c330534ef8336ed92b30f9e676bb5f + (FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy) + + + FLAC__bool + FLAC__metadata_object_picture_is_legal + group__flac__metadata__object.html + ga88268a5186e37d4b98b4df7870561128 + (const FLAC__StreamMetadata *object, const char **violation) + + + + flac_decoder + FLAC/_decoder.h: decoder interfaces + group__flac__decoder.html + flac_stream_decoder + + + flac_stream_decoder + FLAC/stream_decoder.h: stream decoder interface + group__flac__stream__decoder.html + FLAC__StreamDecoder + + FLAC__StreamDecoderReadStatus(* + FLAC__StreamDecoderReadCallback + group__flac__stream__decoder.html + ga25d4321dc2f122d35ddc9061f44beae7 + )(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) + + + FLAC__StreamDecoderSeekStatus(* + FLAC__StreamDecoderSeekCallback + group__flac__stream__decoder.html + ga4c18b0216e0f7a83d7e4e7001230545d + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) + + + FLAC__StreamDecoderTellStatus(* + FLAC__StreamDecoderTellCallback + group__flac__stream__decoder.html + gafdf1852486617a40c285c0d76d451a5a + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) + + + FLAC__StreamDecoderLengthStatus(* + FLAC__StreamDecoderLengthCallback + group__flac__stream__decoder.html + ga5363f3b46e3f7d6a73385f6560f7e7ef + )(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) + + + FLAC__bool(* + FLAC__StreamDecoderEofCallback + group__flac__stream__decoder.html + ga4eac094fc609363532d90cf8374b4f7e + )(const FLAC__StreamDecoder *decoder, void *client_data) + + + FLAC__StreamDecoderWriteStatus(* + FLAC__StreamDecoderWriteCallback + group__flac__stream__decoder.html + ga61e48dc2c0d2f6c5519290ff046874a4 + )(const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data) + + + void(* + FLAC__StreamDecoderMetadataCallback + group__flac__stream__decoder.html + ga6aa87c01744c1c601b7f371f627b6e14 + )(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data) + + + void(* + FLAC__StreamDecoderErrorCallback + group__flac__stream__decoder.html + gac896ee6a12668e9015fab4fbc6aae996 + )(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data) + + + + FLAC__StreamDecoderState + group__flac__stream__decoder.html + ga3adb6891c5871a87cd5bbae6c770ba2d + + + + FLAC__STREAM_DECODER_SEARCH_FOR_METADATA + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2dacf4455f4f681a6737a553e10f614704a + + + + FLAC__STREAM_DECODER_READ_METADATA + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da4c1853ed1babdcede9a908e12cf7ccf7 + + + + FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2daccff915757978117720ba1613d088ddf + + + + FLAC__STREAM_DECODER_READ_FRAME + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da06dc6158a51a8eb9537b65f2fbb6dc49 + + + + FLAC__STREAM_DECODER_END_OF_STREAM + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da28ce845052d9d1a780f4107e97f4c853 + + + + FLAC__STREAM_DECODER_OGG_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da3bc0343f47153c5779baf7f37f6e95cf + + + + FLAC__STREAM_DECODER_SEEK_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2daf2c6efcabdfe889081c2260e6681db49 + + + + FLAC__STREAM_DECODER_ABORTED + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2dadb52ab4785bd2eb84a95e8aa82311cd5 + + + + FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da0d08c527252420813e6a6d6d3e19324a + + + + FLAC__STREAM_DECODER_UNINITIALIZED + group__flac__stream__decoder.html + gga3adb6891c5871a87cd5bbae6c770ba2da565eaf4d5e68b440ecec771cb22d3427 + + + + + FLAC__StreamDecoderInitStatus + group__flac__stream__decoder.html + gaaed54a24ac6310d29c5cafba79759c44 + + + + FLAC__STREAM_DECODER_INIT_STATUS_OK + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44ac94c7e9396f30642f34805e5d626e011 + + + + FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a8f2188c616c9bc09638eece3ae55f152 + + + + FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a798ad4b6c4e556fd4cb1afbc29562eca + + + + FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a0110567f0715c6f87357388bc7fa98f9 + + + + FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a8184c306e0cd2565a8c5adc1381cb469 + + + + FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED + group__flac__stream__decoder.html + ggaaed54a24ac6310d29c5cafba79759c44a98bc501c9b2fb5d92d8bb0b3321d504f + + + + + FLAC__StreamDecoderReadStatus + group__flac__stream__decoder.html + gad793ead451206c64a91dc0b851027b93 + + + + FLAC__STREAM_DECODER_READ_STATUS_CONTINUE + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a9a5be0fcf0279b98b2fd462bc4871d06 + + + + FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a0a0687d25dc9f7163e6e5e294672170f + + + + FLAC__STREAM_DECODER_READ_STATUS_ABORT + group__flac__stream__decoder.html + ggad793ead451206c64a91dc0b851027b93a923123aebb349e35662e35a7621b7535 + + + + + FLAC__StreamDecoderSeekStatus + group__flac__stream__decoder.html + gac8d269e3c7af1a5889d3bd38409ed67d + + + + FLAC__STREAM_DECODER_SEEK_STATUS_OK + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67daca58132d896ad7755827d3f2b72488cc + + + + FLAC__STREAM_DECODER_SEEK_STATUS_ERROR + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67da969ce92a42a2a95609452e9cf01fcc09 + + + + FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + ggac8d269e3c7af1a5889d3bd38409ed67da4a01f1e48baf015e78535cc20683ec53 + + + + + FLAC__StreamDecoderTellStatus + group__flac__stream__decoder.html + ga83708207969383bd7b5c1e9148528845 + + + + FLAC__STREAM_DECODER_TELL_STATUS_OK + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845a516a202ebf4bb61d4a1fb5b029a104dd + + + + FLAC__STREAM_DECODER_TELL_STATUS_ERROR + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845aceefd3feb853d5e68a149f2bdd1a9db1 + + + + FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + gga83708207969383bd7b5c1e9148528845add75538234493c9f7a20a846a223ca91 + + + + + FLAC__StreamDecoderLengthStatus + group__flac__stream__decoder.html + gad5860157c2bb34501b8b9370472d727a + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_OK + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aaef01bfcdc3099686e106d8f88397653d + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aab000e31c0c20c0d19df4f2203b01ea23 + + + + FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED + group__flac__stream__decoder.html + ggad5860157c2bb34501b8b9370472d727aae35949f46f887e6d826fe0fe4b2a32c1 + + + + + FLAC__StreamDecoderWriteStatus + group__flac__stream__decoder.html + ga73f67eb9e0ab57945afe038751bc62c8 + + + + FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE + group__flac__stream__decoder.html + gga73f67eb9e0ab57945afe038751bc62c8acea48326e0ab8370d2814f4126fcb84e + + + + FLAC__STREAM_DECODER_WRITE_STATUS_ABORT + group__flac__stream__decoder.html + gga73f67eb9e0ab57945afe038751bc62c8a23bd6bfec34af704e0d5ea273f14d95d + + + + + FLAC__StreamDecoderErrorStatus + group__flac__stream__decoder.html + ga130e70bd9a73d3c2416247a3e5132ecf + + + + FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa3ceec2a553dc142ad487ae88eb6f7222 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfae393a9b91a6b2f23398675b5b57e1e86 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa208fe77a04e6ff684e50f0eae1214e26 + + + + FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM + group__flac__stream__decoder.html + gga130e70bd9a73d3c2416247a3e5132ecfa8b6864ad65edd8fea039838b6d3e5575 + + + + FLAC__StreamDecoder * + FLAC__stream_decoder_new + group__flac__stream__decoder.html + ga529c3c1e46417570767fb8e4c76f5477 + (void) + + + void + FLAC__stream_decoder_delete + group__flac__stream__decoder.html + gad9cf299956da091111d13e83517d8c44 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_set_ogg_serial_number + group__flac__stream__decoder.html + ga7fd232e7a2b5070bd26450487edbc2a1 + (FLAC__StreamDecoder *decoder, long serial_number) + + + FLAC__bool + FLAC__stream_decoder_set_md5_checking + group__flac__stream__decoder.html + ga8f402243eed54f400ddd2f296ff54497 + (FLAC__StreamDecoder *decoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond + group__flac__stream__decoder.html + gad4e685f3d055f70fbaed9ffa4f70f74b + (FLAC__StreamDecoder *decoder, FLAC__MetadataType type) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond_application + group__flac__stream__decoder.html + gaee1196ff5fa97df9810f708dc2bc8326 + (FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_respond_all + group__flac__stream__decoder.html + ga1ce03d8f305a818ff9a573473af99dc4 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore + group__flac__stream__decoder.html + gad75f067720da89c4e9d96dedc45f73e6 + (FLAC__StreamDecoder *decoder, FLAC__MetadataType type) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore_application + group__flac__stream__decoder.html + gaab41e8bc505b24df4912de53de06b085 + (FLAC__StreamDecoder *decoder, const FLAC__byte id[4]) + + + FLAC__bool + FLAC__stream_decoder_set_metadata_ignore_all + group__flac__stream__decoder.html + gaa1307f07fae5d7a4a0c18beeae7ec5e6 + (FLAC__StreamDecoder *decoder) + + + FLAC__StreamDecoderState + FLAC__stream_decoder_get_state + group__flac__stream__decoder.html + gaf99dac2d9255f7db4df8a6d9974a9a9a + (const FLAC__StreamDecoder *decoder) + + + const char * + FLAC__stream_decoder_get_resolved_state_string + group__flac__stream__decoder.html + gad28257412951ca266751a19e2cf54be2 + (const FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_get_md5_checking + group__flac__stream__decoder.html + gae27a6b30b55beda03559c12a5df21537 + (const FLAC__StreamDecoder *decoder) + + + FLAC__uint64 + FLAC__stream_decoder_get_total_samples + group__flac__stream__decoder.html + ga930d9b591fcfaea74359c722cdfb980c + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_channels + group__flac__stream__decoder.html + ga802d5f4c48a711b690d6d66d2e3f20a5 + (const FLAC__StreamDecoder *decoder) + + + FLAC__ChannelAssignment + FLAC__stream_decoder_get_channel_assignment + group__flac__stream__decoder.html + gae62fdf93c1fedd5fea9258ecdc78bb53 + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_bits_per_sample + group__flac__stream__decoder.html + ga689893cde90c171ca343192e92679842 + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_sample_rate + group__flac__stream__decoder.html + ga95f7cdfefba169d964e3c08672a0f0ad + (const FLAC__StreamDecoder *decoder) + + + uint32_t + FLAC__stream_decoder_get_blocksize + group__flac__stream__decoder.html + gafe07ad9949cc54944fd369fe9335c4bc + (const FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_get_decode_position + group__flac__stream__decoder.html + gaffd9b0d0832ed01e6d75930b5391def5 + (const FLAC__StreamDecoder *decoder, FLAC__uint64 *position) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_stream + group__flac__stream__decoder.html + ga150d381abc5249168e439bc076544b29 + (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_stream + group__flac__stream__decoder.html + ga1b043adeb805c779c1e97cb68959d1ab + (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_FILE + group__flac__stream__decoder.html + ga80aa83631460a53263c84e654586dff0 + (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_FILE + group__flac__stream__decoder.html + ga4cc7fbaf905c24d6db48b53b7942fe72 + (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_file + group__flac__stream__decoder.html + ga4021ead5cff29fd589c915756f902f1a + (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__StreamDecoderInitStatus + FLAC__stream_decoder_init_ogg_file + group__flac__stream__decoder.html + ga548f15d7724f3bff7f2608abe8b12f6c + (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data) + + + FLAC__bool + FLAC__stream_decoder_finish + group__flac__stream__decoder.html + ga96c47c96920f363cd0972b54067818a9 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_flush + group__flac__stream__decoder.html + ga95570a455e582b2ab46ab9bb529f26ac + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_reset + group__flac__stream__decoder.html + gaa4183c2d925d5a5edddde9d1ca145725 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_single + group__flac__stream__decoder.html + ga9d6df4a39892c05955122cf7f987f856 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_until_end_of_metadata + group__flac__stream__decoder.html + ga027ffb5b75dc39b3d26f55c5e6b42682 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_process_until_end_of_stream + group__flac__stream__decoder.html + ga89a0723812fa6ef7cdb173715f1bc81f + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_skip_single_frame + group__flac__stream__decoder.html + ga85b666aba976f29e8dd9d7956fce4301 + (FLAC__StreamDecoder *decoder) + + + FLAC__bool + FLAC__stream_decoder_seek_absolute + group__flac__stream__decoder.html + ga6a2eb6072b9fafefc3f80f1959805ccb + (FLAC__StreamDecoder *decoder, FLAC__uint64 sample) + + + const char *const + FLAC__StreamDecoderStateString + group__flac__stream__decoder.html + gac192360ac435614394bf43235cb7981e + [] + + + const char *const + FLAC__StreamDecoderInitStatusString + group__flac__stream__decoder.html + ga0effa1d3031c3206a1719faf984a4f21 + [] + + + const char *const + FLAC__StreamDecoderReadStatusString + group__flac__stream__decoder.html + gab1ee941839b05045ae1d73ee0fdcb8c9 + [] + + + const char *const + FLAC__StreamDecoderSeekStatusString + group__flac__stream__decoder.html + gac49aff0593584b7ed5fd0b2508f824fc + [] + + + const char *const + FLAC__StreamDecoderTellStatusString + group__flac__stream__decoder.html + ga3c1b7d5a174d6c2e6bcf1b9a87b5a5cb + [] + + + const char *const + FLAC__StreamDecoderLengthStatusString + group__flac__stream__decoder.html + ga792933fa9e8b65bfcac62d82e52415f5 + [] + + + const char *const + FLAC__StreamDecoderWriteStatusString + group__flac__stream__decoder.html + ga9df7f0fd8cf9888f97a52b5f3f33cdb0 + [] + + + const char *const + FLAC__StreamDecoderErrorStatusString + group__flac__stream__decoder.html + gac428c69b084529322df05ee793440b88 + [] + + + + flac_encoder + FLAC/_encoder.h: encoder interfaces + group__flac__encoder.html + flac_stream_encoder + + + flac_stream_encoder + FLAC/stream_encoder.h: stream encoder interface + group__flac__stream__encoder.html + FLAC__StreamEncoder + + FLAC__StreamEncoderReadStatus(* + FLAC__StreamEncoderReadCallback + group__flac__stream__encoder.html + ga18b7941b93bae067192732e913536d44 + )(const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) + + + FLAC__StreamEncoderWriteStatus(* + FLAC__StreamEncoderWriteCallback + group__flac__stream__encoder.html + ga2998a0af774d793928a7cc3bbc84dcdf + )(const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data) + + + FLAC__StreamEncoderSeekStatus(* + FLAC__StreamEncoderSeekCallback + group__flac__stream__encoder.html + ga70b85349d5242e4401c4d8ddf6d9bbca + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data) + + + FLAC__StreamEncoderTellStatus(* + FLAC__StreamEncoderTellCallback + group__flac__stream__encoder.html + gabefdf2279e1d0347d9f98f46da4e415b + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data) + + + void(* + FLAC__StreamEncoderMetadataCallback + group__flac__stream__encoder.html + ga091fbf3340d85bcbda1090c31bc320cf + )(const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data) + + + void(* + FLAC__StreamEncoderProgressCallback + group__flac__stream__encoder.html + ga42a5fab5f91c1b0c3f7098499285f277 + )(const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data) + + + + FLAC__StreamEncoderState + group__flac__stream__encoder.html + gac5e9db4fc32ca2fa74abd9c8a87c02a5 + + + + FLAC__STREAM_ENCODER_OK + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a3a6666ae61a64d955341cec285695bf6 + + + + FLAC__STREAM_ENCODER_UNINITIALIZED + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a04912e04a3c57d3c53de34742f96d635 + + + + FLAC__STREAM_ENCODER_OGG_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5abb312cc8318c7a541cadacd23ceb3bbb + + + + FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a4cb80be4f83eb71f04e74968af1d259e + + + + FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a011e3d8b2d02a940bfd0e59c05cf5ae0 + + + + FLAC__STREAM_ENCODER_CLIENT_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a8c2b2e9efb43a4f9b25b1d2bd9af5f23 + + + + FLAC__STREAM_ENCODER_IO_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5af0e4738522e05a7248435c7148f58f91 + + + + FLAC__STREAM_ENCODER_FRAMING_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a2c2937b7f1600a4ac7c84fc70ab34cf1 + + + + FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR + group__flac__stream__encoder.html + ggac5e9db4fc32ca2fa74abd9c8a87c02a5a35db99d9958bd6c2301a04715fbc44fd + + + + + FLAC__StreamEncoderInitStatus + group__flac__stream__encoder.html + ga3bb869620af2b188d77982a5c30b047d + + + + FLAC__STREAM_ENCODER_INIT_STATUS_OK + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da20501dce552da74c5df935eeaa0c9ee3 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da9c64e5f9020d8799e1cd9d39d50e6955 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da8a822b011de88b67c114505ffef39327 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dac2cf461f02e20513003b8cadeae03f9f + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da0541c4f827f081b9f1c54c9441e4aa65 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dad6d2631f464183c0c165155200882e6b + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da6fdcde9e18c37450c79e8f12b9d9c134 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da652c445f1bd8b6cfb963a30bf416c95a + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da38a69e94b3333e4ba779d2ff8f43f64e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da5be80403bd7a43450139442e0f34ad7e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047da62a17a3ed3c05ddf8ea7f6fecbd4e4a1 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047daa793405c858c7606539082750080a47e + + + + FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047daa85afdd1849c75a19594416cef63e3e9 + + + + FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED + group__flac__stream__encoder.html + gga3bb869620af2b188d77982a5c30b047dab4e7b50d176a127575df90383cb15e1d + + + + + FLAC__StreamEncoderReadStatus + group__flac__stream__encoder.html + ga2e81f007fb0a7414c0bbb453f37ea37f + + + + FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa4bdd691d3666f19ec96ff99402347a2e + + + + FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa562fef84bf86a9a39682e23066d9cfee + + + + FLAC__STREAM_ENCODER_READ_STATUS_ABORT + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa69b94eeab60e07d5fd33f2b3c8b85759 + + + + FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + gga2e81f007fb0a7414c0bbb453f37ea37fa9bb730b8f6354cc1e810017a2f700316 + + + + + FLAC__StreamEncoderWriteStatus + group__flac__stream__encoder.html + ga3737471fd49730bb8cf9b182bdeda05e + + + + FLAC__STREAM_ENCODER_WRITE_STATUS_OK + group__flac__stream__encoder.html + gga3737471fd49730bb8cf9b182bdeda05ea5622e0199f0203c402fcb7b4ca76f808 + + + + FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR + group__flac__stream__encoder.html + gga3737471fd49730bb8cf9b182bdeda05ea18e7cd6a443fb8bd303c3ba89946bc85 + + + + + FLAC__StreamEncoderSeekStatus + group__flac__stream__encoder.html + ga6d5be3489f45fcf0c252022c65d87aca + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_OK + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaa99853066610d798627888ec2e5afa667 + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaabf93227938b4e1bf3656fe4ba4159c60 + + + + FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + gga6d5be3489f45fcf0c252022c65d87acaa8930179a426134caf30a70147448f037 + + + + + FLAC__StreamEncoderTellStatus + group__flac__stream__encoder.html + gab628f63181250eb977a28bf12b7dd9ff + + + + FLAC__STREAM_ENCODER_TELL_STATUS_OK + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffa48e071d89494ac8f5471e7c0d7a6f43b + + + + FLAC__STREAM_ENCODER_TELL_STATUS_ERROR + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffaf638882e04d7c58e6c29dcc7f410864b + + + + FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED + group__flac__stream__encoder.html + ggab628f63181250eb977a28bf12b7dd9ffa9d6bbd317f85fd2d6fc72f64e3cb56e7 + + + + FLAC__StreamEncoder * + FLAC__stream_encoder_new + group__flac__stream__encoder.html + gab09f7620a0ba9c30020c189ce112a52f + (void) + + + void + FLAC__stream_encoder_delete + group__flac__stream__encoder.html + ga7212e6846f543618b6289666de216b29 + (FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_set_ogg_serial_number + group__flac__stream__encoder.html + gaf4f75f7689b6b3fff16b03028aa38326 + (FLAC__StreamEncoder *encoder, long serial_number) + + + FLAC__bool + FLAC__stream_encoder_set_verify + group__flac__stream__encoder.html + ga795be6527a9eb1219331afef2f182a41 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_streamable_subset + group__flac__stream__encoder.html + ga35a18815a58141b88db02317892d059b + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_channels + group__flac__stream__encoder.html + ga9ec612a48f81805eafdb059548cdaf92 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_bits_per_sample + group__flac__stream__encoder.html + ga7453fc29d7e86b499f23b1adfba98da1 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_sample_rate + group__flac__stream__encoder.html + gaa6b6537875900a6e0f4418a504f55f25 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_compression_level + group__flac__stream__encoder.html + gaacc01aab02849119f929b8516420fcd3 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_blocksize + group__flac__stream__encoder.html + gac35cb1b5614464658262e684c4ac3a2f + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_do_mid_side_stereo + group__flac__stream__encoder.html + ga3bff001a1efc2e4eb520c954066330f4 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_loose_mid_side_stereo + group__flac__stream__encoder.html + ga7965d51b93f14cbd6ad5bb9d34f10536 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_apodization + group__flac__stream__encoder.html + ga6598f09ac782a1f2a5743ddf247c81c8 + (FLAC__StreamEncoder *encoder, const char *specification) + + + FLAC__bool + FLAC__stream_encoder_set_max_lpc_order + group__flac__stream__encoder.html + gad8a0ff058c46f9ce95dc0508f4bdfb0c + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_qlp_coeff_precision + group__flac__stream__encoder.html + ga179751f915a3d6fc2ca4b33a67bb8780 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_do_qlp_coeff_prec_search + group__flac__stream__encoder.html + ga495890067203958e5d67a641f8757b1c + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_do_escape_coding + group__flac__stream__encoder.html + gaed594c373d829f77808a935c54a25fa4 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_do_exhaustive_model_search + group__flac__stream__encoder.html + ga054313e7f6eaf5c6122d82c6a8b3b808 + (FLAC__StreamEncoder *encoder, FLAC__bool value) + + + FLAC__bool + FLAC__stream_encoder_set_min_residual_partition_order + group__flac__stream__encoder.html + ga8f2ed5a2b35bfea13e6605b0fe55f0fa + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_max_residual_partition_order + group__flac__stream__encoder.html + gab9e02bfbbb1d4fcdb666e2e9a678b4f6 + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_rice_parameter_search_dist + group__flac__stream__encoder.html + ga2cc4a05caba8a4058f744d9eb8732caa + (FLAC__StreamEncoder *encoder, uint32_t value) + + + FLAC__bool + FLAC__stream_encoder_set_total_samples_estimate + group__flac__stream__encoder.html + gab943094585d1c0a4bec497e73567cf85 + (FLAC__StreamEncoder *encoder, FLAC__uint64 value) + + + FLAC__bool + FLAC__stream_encoder_set_metadata + group__flac__stream__encoder.html + ga80d57f9069e354cbf1a15a3e3ad9ca78 + (FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, uint32_t num_blocks) + + + FLAC__StreamEncoderState + FLAC__stream_encoder_get_state + group__flac__stream__encoder.html + ga0803321b37189dc5eea4fe1cea25c29a + (const FLAC__StreamEncoder *encoder) + + + FLAC__StreamDecoderState + FLAC__stream_encoder_get_verify_decoder_state + group__flac__stream__encoder.html + ga820704b95a711e77d55363e8753f9f9f + (const FLAC__StreamEncoder *encoder) + + + const char * + FLAC__stream_encoder_get_resolved_state_string + group__flac__stream__encoder.html + ga0916f813358eb6f1e44148353acd4d42 + (const FLAC__StreamEncoder *encoder) + + + void + FLAC__stream_encoder_get_verify_decoder_error_stats + group__flac__stream__encoder.html + ga28373aaf2c47336828d5672696c36662 + (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got) + + + FLAC__bool + FLAC__stream_encoder_get_verify + group__flac__stream__encoder.html + ga9efc4964992e001bcec0a8eaedee8d60 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_streamable_subset + group__flac__stream__encoder.html + ga201e64032ea4298b2379c93652b28245 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_channels + group__flac__stream__encoder.html + ga412401503141dd42e37831140f78cfa1 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_bits_per_sample + group__flac__stream__encoder.html + ga169bbf662b2a2df017b93f663deadd1d + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_sample_rate + group__flac__stream__encoder.html + gae56f27536528f13375ffdd23fa9045f7 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_blocksize + group__flac__stream__encoder.html + gaf8a9715b2d09a6876b8dc104bfd70cdc + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_mid_side_stereo + group__flac__stream__encoder.html + ga32da1f89997ab94ce5d677fcd7e24d56 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_loose_mid_side_stereo + group__flac__stream__encoder.html + ga1455859cf3d233bd4dfff86af010f4fa + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_max_lpc_order + group__flac__stream__encoder.html + ga5e1d1c9acd3d5a17106b51f0c0107567 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_qlp_coeff_precision + group__flac__stream__encoder.html + ga909830fb7f4a0a35710452df39c269a3 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_qlp_coeff_prec_search + group__flac__stream__encoder.html + ga65bee5a769d4c5fdc95b81c2fb95061c + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_escape_coding + group__flac__stream__encoder.html + ga0c944049800991422c1bfb3b1c0567a5 + (const FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_get_do_exhaustive_model_search + group__flac__stream__encoder.html + ga7bc8b32f58df5564db4b6114cb11042d + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_min_residual_partition_order + group__flac__stream__encoder.html + ga4fa722297092aeaebc9d9e743a327d14 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_max_residual_partition_order + group__flac__stream__encoder.html + ga6f5dfbfb5c6e569c4bae5555c9bf87e6 + (const FLAC__StreamEncoder *encoder) + + + uint32_t + FLAC__stream_encoder_get_rice_parameter_search_dist + group__flac__stream__encoder.html + gaca0e38f283b2772b92da7cb4495d909a + (const FLAC__StreamEncoder *encoder) + + + FLAC__uint64 + FLAC__stream_encoder_get_total_samples_estimate + group__flac__stream__encoder.html + gaa22d8935bd985b9cccf6592160ffc6f2 + (const FLAC__StreamEncoder *encoder) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_stream + group__flac__stream__encoder.html + ga7d801879812b48fcbc40f409800c453c + (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_stream + group__flac__stream__encoder.html + ga9d1981bcd30b8db4d73b5466be5570f5 + (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderReadCallback read_callback, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_FILE + group__flac__stream__encoder.html + ga12789a1c4a4e31cd2e7187259fe127f8 + (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_FILE + group__flac__stream__encoder.html + ga57fc668f50ffd99a93df326bfab5e2b1 + (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_file + group__flac__stream__encoder.html + ga9d5117c2ac0eeb572784116bf2eb541b + (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__StreamEncoderInitStatus + FLAC__stream_encoder_init_ogg_file + group__flac__stream__encoder.html + ga4891de2f56045941ae222b61b0fd83a4 + (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data) + + + FLAC__bool + FLAC__stream_encoder_finish + group__flac__stream__encoder.html + ga3522f9de5af29807df1b9780a418b7f3 + (FLAC__StreamEncoder *encoder) + + + FLAC__bool + FLAC__stream_encoder_process + group__flac__stream__encoder.html + ga87b9c361292da5c5928a8fb5fda7c423 + (FLAC__StreamEncoder *encoder, const FLAC__int32 *const buffer[], uint32_t samples) + + + FLAC__bool + FLAC__stream_encoder_process_interleaved + group__flac__stream__encoder.html + ga6e31c221f7e23345267c52f53c046c24 + (FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], uint32_t samples) + + + const char *const + FLAC__StreamEncoderStateString + group__flac__stream__encoder.html + ga1410b7a076b0c8401682f9f812b66df5 + [] + + + const char *const + FLAC__StreamEncoderInitStatusString + group__flac__stream__encoder.html + ga0ec1fa7b3f55b4f07a2727846c285776 + [] + + + const char *const + FLAC__StreamEncoderReadStatusString + group__flac__stream__encoder.html + ga1654422c81846b9b399ac5fb98df61dd + [] + + + const char *const + FLAC__StreamEncoderWriteStatusString + group__flac__stream__encoder.html + ga9f64480accd01525cbfa25c11e6bb74e + [] + + + const char *const + FLAC__StreamEncoderSeekStatusString + group__flac__stream__encoder.html + gabb137b2d787756bf97398f0b60e54c20 + [] + + + const char *const + FLAC__StreamEncoderTellStatusString + group__flac__stream__encoder.html + gaf8ab921ae968be2be255be1f136e1eec + [] + + + + flacpp + FLAC C++ API + group__flacpp.html + flacpp_decoder + flacpp_encoder + flacpp_export + flacpp_metadata + + + flacpp_decoder + FLAC++/decoder.h: decoder classes + group__flacpp__decoder.html + FLAC::Decoder::Stream + FLAC::Decoder::File + + + flacpp_encoder + FLAC++/encoder.h: encoder classes + group__flacpp__encoder.html + FLAC::Encoder::Stream + FLAC::Encoder::File + + + flacpp_export + FLAC++/export.h: export symbols + group__flacpp__export.html + + + flacpp_metadata + FLAC++/metadata.h: metadata interfaces + group__flacpp__metadata.html + flacpp_metadata_object + flacpp_metadata_level0 + flacpp_metadata_level1 + flacpp_metadata_level2 + + + flacpp_metadata_object + FLAC++/metadata.h: metadata object classes + group__flacpp__metadata__object.html + FLAC::Metadata::Prototype + FLAC::Metadata::StreamInfo + FLAC::Metadata::Padding + FLAC::Metadata::Application + FLAC::Metadata::SeekTable + FLAC::Metadata::VorbisComment + FLAC::Metadata::CueSheet + FLAC::Metadata::Picture + FLAC::Metadata::Unknown + + Prototype * + clone + group__flacpp__metadata__object.html + gae18d91726a320349b2c3fb45e79d21fc + (const Prototype *) + + + bool + is_valid + group__flacpp__metadata__object.html + ga0466615f2d7e725d1fc33bd1ae72ea5b + () const + + + + operator const ::FLAC__StreamMetadata * + group__flacpp__metadata__object.html + ga72cc341e319780e2dca66d7c28bd0200 + () const + + + bool + operator== + group__flacpp__metadata__object.html + ga5f1ce22db46834e315363e730f24ffaf + (const Prototype &) const + + + bool + operator== + group__flacpp__metadata__object.html + gabe99f8f626c5bb26d22e594689b925b9 + (const ::FLAC__StreamMetadata &) const + + + bool + operator== + group__flacpp__metadata__object.html + ga16721da9cfeb82992e4bce373c9459e7 + (const ::FLAC__StreamMetadata *) const + + + bool + operator!= + group__flacpp__metadata__object.html + gab8e067674ea0181dc0756bbb5b242c6e + (const Prototype &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaff8915737832ccae971454926f363cf4 + (const ::FLAC__StreamMetadata &) const + + + bool + operator!= + group__flacpp__metadata__object.html + gaf9b7cbfbb8294b930b196b060476d319 + (const ::FLAC__StreamMetadata *) const + + + + flacpp_metadata_level0 + FLAC++/metadata.h: metadata level 0 interface + group__flacpp__metadata__level0.html + + bool + get_streaminfo + group__flacpp__metadata__level0.html + ga8fa8da652f33edeb4dabb4ce39fda04b + (const char *filename, StreamInfo &streaminfo) + + + bool + get_tags + group__flacpp__metadata__level0.html + ga533a71ba745ca03068523a4a45fb0329 + (const char *filename, VorbisComment *&tags) + + + bool + get_tags + group__flacpp__metadata__level0.html + ga85166e6206f3d5635684de4257f2b00e + (const char *filename, VorbisComment &tags) + + + bool + get_cuesheet + group__flacpp__metadata__level0.html + ga4fad03d91f22d78acf35dd2f35df9ac7 + (const char *filename, CueSheet *&cuesheet) + + + bool + get_cuesheet + group__flacpp__metadata__level0.html + gaea8f05f89e36af143d73b4280f05cc0e + (const char *filename, CueSheet &cuesheet) + + + bool + get_picture + group__flacpp__metadata__level0.html + gaa44df95da4d3abc459fdc526a0d54a55 + (const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + bool + get_picture + group__flacpp__metadata__level0.html + gaa6aea22f1ebeb671db19b73277babdea + (const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors) + + + + flacpp_metadata_level1 + FLAC++/metadata.h: metadata level 1 interface + group__flacpp__metadata__level1.html + FLAC::Metadata::SimpleIterator + + + flacpp_metadata_level2 + FLAC++/metadata.h: metadata level 2 interface + group__flacpp__metadata__level2.html + FLAC::Metadata::Chain + FLAC::Metadata::Iterator + + + Prototype + group__flacpp__metadata__level2.html + gae49fa399a6273ccad7cb0e6f787a3f5c + (const Prototype &) + + + + index + + index + intro + c_api + cpp_api + getting_started + porting_guide + embedded_developers + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/Makefile.am b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.am new file mode 100644 index 000000000..bc9ae52a7 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.am @@ -0,0 +1,41 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2002-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +SUBDIRS = . html + +if FLaC__HAS_DOXYGEN +all-local: Doxyfile +FLAC.tag: Doxyfile + doxygen Doxyfile + rm -rf html/api + mv doxytmp/html html/api + rm -rf doxytmp +else +FLAC.tag: + touch $@ + mkdir -p html/api +endif + +doc_DATA = \ + FLAC.tag + +EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html \ + isoflac.txt $(doc_DATA) + +distclean-local: + rm -rf FLAC.tag html/api doxytmp diff --git a/Frameworks/FLAC/flac-1.3.3/doc/Makefile.in b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.in new file mode 100644 index 000000000..0c94331f0 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.in @@ -0,0 +1,762 @@ +# Makefile.in generated by automake 1.16.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2018 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2002-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = doc +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \ + $(top_srcdir)/m4/add_cxxflags.m4 \ + $(top_srcdir)/m4/ax_add_fortify_source.m4 \ + $(top_srcdir)/m4/ax_check_enable_debug.m4 \ + $(top_srcdir)/m4/bswap.m4 $(top_srcdir)/m4/c_attribute.m4 \ + $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \ + $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \ + $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ + $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \ + $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = Doxyfile +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(docdir)" +DATA = $(doc_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir distdir-am +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +am__DIST_COMMON = $(srcdir)/Doxyfile.in $(srcdir)/Makefile.in +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@ +DOXYGEN = @DOXYGEN@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FLAC__HAS_OGG = @FLAC__HAS_OGG@ +FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@ +FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@ +GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@ +GCC_MINOR_VERSION = @GCC_MINOR_VERSION@ +GCC_VERSION = @GCC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NASM = @NASM@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OBJ_FORMAT = @OBJ_FORMAT@ +OGG_CFLAGS = @OGG_CFLAGS@ +OGG_LIBS = @OGG_LIBS@ +OGG_PACKAGE = @OGG_PACKAGE@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +XMMS_CFLAGS = @XMMS_CFLAGS@ +XMMS_CONFIG = @XMMS_CONFIG@ +XMMS_DATA_DIR = @XMMS_DATA_DIR@ +XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@ +XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@ +XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@ +XMMS_LIBS = @XMMS_LIBS@ +XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@ +XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@ +XMMS_VERSION = @XMMS_VERSION@ +XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = . html +doc_DATA = \ + FLAC.tag + +EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html \ + isoflac.txt $(doc_DATA) + +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign doc/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): +Doxyfile: $(top_builddir)/config.status $(srcdir)/Doxyfile.in + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-docDATA: $(doc_DATA) + @$(NORMAL_INSTALL) + @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ + done + +uninstall-docDATA: + @$(NORMAL_UNINSTALL) + @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +@FLaC__HAS_DOXYGEN_FALSE@all-local: +all-am: Makefile $(DATA) all-local +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(docdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-local \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-docDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-docDATA + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \ + check check-am clean clean-generic clean-libtool cscopelist-am \ + ctags ctags-am distclean distclean-generic distclean-libtool \ + distclean-local distclean-tags distdir dvi dvi-am html html-am \ + info info-am install install-am install-data install-data-am \ + install-docDATA install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-info \ + install-info-am install-man install-pdf install-pdf-am \ + install-ps install-ps-am install-strip installcheck \ + installcheck-am installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic \ + mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \ + uninstall-am uninstall-docDATA + +.PRECIOUS: Makefile + + +@FLaC__HAS_DOXYGEN_TRUE@all-local: Doxyfile +@FLaC__HAS_DOXYGEN_TRUE@FLAC.tag: Doxyfile +@FLaC__HAS_DOXYGEN_TRUE@ doxygen Doxyfile +@FLaC__HAS_DOXYGEN_TRUE@ rm -rf html/api +@FLaC__HAS_DOXYGEN_TRUE@ mv doxytmp/html html/api +@FLaC__HAS_DOXYGEN_TRUE@ rm -rf doxytmp +@FLaC__HAS_DOXYGEN_FALSE@FLAC.tag: +@FLaC__HAS_DOXYGEN_FALSE@ touch $@ +@FLaC__HAS_DOXYGEN_FALSE@ mkdir -p html/api + +distclean-local: + rm -rf FLAC.tag html/api doxytmp + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Frameworks/FLAC/flac-1.3.3/doc/Makefile.lite b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.lite new file mode 100644 index 000000000..423824f80 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/Makefile.lite @@ -0,0 +1,29 @@ +# flac - Command-line FLAC encoder/decoder +# Copyright (C) 2002-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +topdir = .. + +FLAC.tag: Doxyfile + rm -rf doxytmp + doxygen Doxyfile + rm -rf html/api + mv doxytmp/html html/api + rm -rf doxytmp + +clean: + rm -rf FLAC.tag html/api doxytmp diff --git a/Frameworks/FLAC/flac-1.3.3/doc/doxygen.footer.html b/Frameworks/FLAC/flac-1.3.3/doc/doxygen.footer.html new file mode 100644 index 000000000..cce041daa --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/doxygen.footer.html @@ -0,0 +1,25 @@ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/doxygen.header.html b/Frameworks/FLAC/flac-1.3.3/doc/doxygen.header.html new file mode 100644 index 000000000..97a03b9e5 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/doxygen.header.html @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.am b/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.am new file mode 100644 index 000000000..2c73fdbbb --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.am @@ -0,0 +1,53 @@ +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +SUBDIRS = images + +html_DATA = \ + changelog.html \ + developers.html \ + documentation.html \ + documentation_bugs.html \ + documentation_example_code.html \ + documentation_format_overview.html \ + documentation_tools.html \ + documentation_tools_flac.html \ + documentation_tools_metaflac.html \ + faq.html \ + favicon.ico \ + features.html \ + flac.css \ + format.html \ + id.html \ + index.html \ + license.html \ + ogg_mapping.html + +EXTRA_DIST = $(html_DATA) api + +if FLaC__HAS_DOXYGEN +# The install targets don't copy whole directories so we have to +# handle 'api/' specially: +install-data-local: + $(mkinstalldirs) $(DESTDIR)$(htmldir)/api + (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(htmldir)/api) +uninstall-local: + rm -rf $(DESTDIR)$(htmldir)/api +distclean-local: + -rm -rf api +endif diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.in b/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.in new file mode 100644 index 000000000..e85dc3ff2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/Makefile.in @@ -0,0 +1,775 @@ +# Makefile.in generated by automake 1.16.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2018 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# FLAC - Free Lossless Audio Codec +# Copyright (C) 2001-2009 Josh Coalson +# Copyright (C) 2011-2016 Xiph.Org Foundation +# +# This file is part the FLAC project. FLAC is comprised of several +# components distributed under different licenses. The codec libraries +# are distributed under Xiph.Org's BSD-like license (see the file +# COPYING.Xiph in this distribution). All other programs, libraries, and +# plugins are distributed under the GPL (see COPYING.GPL). The documentation +# is distributed under the Gnu FDL (see COPYING.FDL). Each file in the +# FLAC distribution contains at the top the terms under which it may be +# distributed. +# +# Since this particular file is relevant to all components of FLAC, +# it may be distributed under the Xiph.Org license, which is the least +# restrictive of those mentioned above. See the file COPYING.Xiph in this +# distribution. + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = doc/html +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/add_cflags.m4 \ + $(top_srcdir)/m4/add_cxxflags.m4 \ + $(top_srcdir)/m4/ax_add_fortify_source.m4 \ + $(top_srcdir)/m4/ax_check_enable_debug.m4 \ + $(top_srcdir)/m4/bswap.m4 $(top_srcdir)/m4/c_attribute.m4 \ + $(top_srcdir)/m4/clang.m4 $(top_srcdir)/m4/codeset.m4 \ + $(top_srcdir)/m4/gcc_version.m4 $(top_srcdir)/m4/iconv.m4 \ + $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ + $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/ogg.m4 $(top_srcdir)/m4/really_gcc.m4 \ + $(top_srcdir)/m4/stack_protect.m4 $(top_srcdir)/m4/xmms.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +am__installdirs = "$(DESTDIR)$(htmldir)" +DATA = $(html_DATA) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + distdir distdir-am +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +am__DIST_COMMON = $(srcdir)/Makefile.in +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AS = @AS@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCAS = @CCAS@ +CCASDEPMODE = @CCASDEPMODE@ +CCASFLAGS = @CCASFLAGS@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DLLTOOL = @DLLTOOL@ +DOCBOOK_TO_MAN = @DOCBOOK_TO_MAN@ +DOXYGEN = @DOXYGEN@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +ENABLE_64_BIT_WORDS = @ENABLE_64_BIT_WORDS@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FLAC__HAS_OGG = @FLAC__HAS_OGG@ +FLAC__TEST_LEVEL = @FLAC__TEST_LEVEL@ +FLAC__TEST_WITH_VALGRIND = @FLAC__TEST_WITH_VALGRIND@ +GCC_MAJOR_VERSION = @GCC_MAJOR_VERSION@ +GCC_MINOR_VERSION = @GCC_MINOR_VERSION@ +GCC_VERSION = @GCC_VERSION@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIB_CLOCK_GETTIME = @LIB_CLOCK_GETTIME@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +NASM = @NASM@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OBJ_FORMAT = @OBJ_FORMAT@ +OGG_CFLAGS = @OGG_CFLAGS@ +OGG_LIBS = @OGG_LIBS@ +OGG_PACKAGE = @OGG_PACKAGE@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +XMMS_CFLAGS = @XMMS_CFLAGS@ +XMMS_CONFIG = @XMMS_CONFIG@ +XMMS_DATA_DIR = @XMMS_DATA_DIR@ +XMMS_EFFECT_PLUGIN_DIR = @XMMS_EFFECT_PLUGIN_DIR@ +XMMS_GENERAL_PLUGIN_DIR = @XMMS_GENERAL_PLUGIN_DIR@ +XMMS_INPUT_PLUGIN_DIR = @XMMS_INPUT_PLUGIN_DIR@ +XMMS_LIBS = @XMMS_LIBS@ +XMMS_OUTPUT_PLUGIN_DIR = @XMMS_OUTPUT_PLUGIN_DIR@ +XMMS_PLUGIN_DIR = @XMMS_PLUGIN_DIR@ +XMMS_VERSION = @XMMS_VERSION@ +XMMS_VISUALIZATION_PLUGIN_DIR = @XMMS_VISUALIZATION_PLUGIN_DIR@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = images +html_DATA = \ + changelog.html \ + developers.html \ + documentation.html \ + documentation_bugs.html \ + documentation_example_code.html \ + documentation_format_overview.html \ + documentation_tools.html \ + documentation_tools_flac.html \ + documentation_tools_metaflac.html \ + faq.html \ + favicon.ico \ + features.html \ + flac.css \ + format.html \ + id.html \ + index.html \ + license.html \ + ogg_mapping.html + +EXTRA_DIST = $(html_DATA) api +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/html/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --foreign doc/html/Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-htmlDATA: $(html_DATA) + @$(NORMAL_INSTALL) + @list='$(html_DATA)'; test -n "$(htmldir)" || list=; \ + if test -n "$$list"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \ + $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \ + fi; \ + for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \ + done + +uninstall-htmlDATA: + @$(NORMAL_UNINSTALL) + @list='$(html_DATA)'; test -n "$(htmldir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir) + +# This directory's subdirectories are mostly independent; you can cd +# into them and run 'make' without going through this Makefile. +# To change the values of 'make' variables: instead of editing Makefiles, +# (1) if the variable is set in 'config.status', edit 'config.status' +# (which will cause the Makefiles to be regenerated when you run 'make'); +# (2) otherwise, pass the desired values on the 'make' command line. +$(am__recursive_targets): + @fail=; \ + if $(am__make_keepgoing); then \ + failcom='fail=yes'; \ + else \ + failcom='exit 1'; \ + fi; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +ID: $(am__tagged_files) + $(am__define_uniq_tagged_files); mkid -fID $$unique +tags: tags-recursive +TAGS: tags + +tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + set x; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + $(am__define_uniq_tagged_files); \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ + fi +ctags: ctags-recursive + +CTAGS: ctags +ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) + $(am__define_uniq_tagged_files); \ + test -z "$(CTAGS_ARGS)$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" +cscopelist: cscopelist-recursive + +cscopelist-am: $(am__tagged_files) + list='$(am__tagged_files)'; \ + case "$(srcdir)" in \ + [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ + *) sdir=$(subdir)/$(srcdir) ;; \ + esac; \ + for i in $$list; do \ + if test -f "$$i"; then \ + echo "$(subdir)/$$i"; \ + else \ + echo "$$sdir/$$i"; \ + fi; \ + done >> $(top_builddir)/cscope.files + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ + else \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ + || exit 1; \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + $(am__make_dryrun) \ + || test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + am__skip_mode_fix=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile $(DATA) +installdirs: installdirs-recursive +installdirs-am: + for dir in "$(DESTDIR)$(htmldir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + if test -z '$(STRIP)'; then \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + install; \ + else \ + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ + fi +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +@FLaC__HAS_DOXYGEN_FALSE@distclean-local: +@FLaC__HAS_DOXYGEN_FALSE@install-data-local: +@FLaC__HAS_DOXYGEN_FALSE@uninstall-local: +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-local \ + distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +html-am: + +info: info-recursive + +info-am: + +install-data-am: install-data-local install-htmlDATA + +install-dvi: install-dvi-recursive + +install-dvi-am: + +install-exec-am: + +install-html: install-html-recursive + +install-html-am: + +install-info: install-info-recursive + +install-info-am: + +install-man: + +install-pdf: install-pdf-recursive + +install-pdf-am: + +install-ps: install-ps-recursive + +install-ps-am: + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: uninstall-htmlDATA uninstall-local + +.MAKE: $(am__recursive_targets) install-am install-strip + +.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ + check-am clean clean-generic clean-libtool cscopelist-am ctags \ + ctags-am distclean distclean-generic distclean-libtool \ + distclean-local distclean-tags distdir dvi dvi-am html html-am \ + info info-am install install-am install-data install-data-am \ + install-data-local install-dvi install-dvi-am install-exec \ + install-exec-am install-html install-html-am install-htmlDATA \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-am uninstall uninstall-am uninstall-htmlDATA \ + uninstall-local + +.PRECIOUS: Makefile + + +# The install targets don't copy whole directories so we have to +# handle 'api/' specially: +@FLaC__HAS_DOXYGEN_TRUE@install-data-local: +@FLaC__HAS_DOXYGEN_TRUE@ $(mkinstalldirs) $(DESTDIR)$(htmldir)/api +@FLaC__HAS_DOXYGEN_TRUE@ (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(htmldir)/api) +@FLaC__HAS_DOXYGEN_TRUE@uninstall-local: +@FLaC__HAS_DOXYGEN_TRUE@ rm -rf $(DESTDIR)$(htmldir)/api +@FLaC__HAS_DOXYGEN_TRUE@distclean-local: +@FLaC__HAS_DOXYGEN_TRUE@ -rm -rf api + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2all_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2all_8h_source.html new file mode 100644 index 000000000..00f49dc80 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2all_8h_source.html @@ -0,0 +1,78 @@ + + + + + + + +FLAC: include/FLAC++/all.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
all.h
+
+
+
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLACPP__ALL_H
34 #define FLACPP__ALL_H
35 
36 #include "export.h"
37 
38 #include "encoder.h"
39 #include "decoder.h"
40 #include "metadata.h"
41 
49 #endif
This module provides classes for creating and manipulating FLAC metadata blocks in memory...
+
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
This module contains the classes which implement the various decoders.
+
This module contains the classes which implement the various encoders.
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h.html new file mode 100644 index 000000000..beb0302fd --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h.html @@ -0,0 +1,97 @@ + + + + + + + +FLAC: include/FLAC++/export.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
export.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Macros

+#define FLACPP_API
 
+#define FLACPP_API_VERSION_CURRENT   9
 
+#define FLACPP_API_VERSION_REVISION   0
 
+#define FLACPP_API_VERSION_AGE   3
 
+

Detailed Description

+

This module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features.

+

See the export module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h_source.html new file mode 100644 index 000000000..9f1a97138 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2export_8h_source.html @@ -0,0 +1,74 @@ + + + + + + + +FLAC: include/FLAC++/export.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
export.h
+
+
+Go to the documentation of this file.
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLACPP__EXPORT_H
34 #define FLACPP__EXPORT_H
35 
59 #if defined(FLAC__NO_DLL)
60 #define FLACPP_API
61 
62 #elif defined(_MSC_VER)
63 #ifdef FLACPP_API_EXPORTS
64 #define FLACPP_API __declspec(dllexport)
65 #else
66 #define FLACPP_API __declspec(dllimport)
67 #endif
68 
69 #elif defined(FLAC__USE_VISIBILITY_ATTR)
70 #define FLACPP_API __attribute__ ((visibility ("default")))
71 
72 #else
73 #define FLACPP_API
74 
75 #endif
76 
77 /* These #defines will mirror the libtool-based library version number, see
78  * http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning
79  */
80 #define FLACPP_API_VERSION_CURRENT 9
81 #define FLACPP_API_VERSION_REVISION 0
82 #define FLACPP_API_VERSION_AGE 3
83 
84 /* \} */
85 
86 #endif
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h.html new file mode 100644 index 000000000..71ad9b5f4 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h.html @@ -0,0 +1,161 @@ + + + + + + + +FLAC: include/FLAC++/metadata.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
metadata.h File Reference
+
+
+
#include "export.h"
+#include "FLAC/metadata.h"
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

class  FLAC::Metadata::Prototype
 
class  FLAC::Metadata::StreamInfo
 
class  FLAC::Metadata::Padding
 
class  FLAC::Metadata::Application
 
class  FLAC::Metadata::SeekTable
 
class  FLAC::Metadata::VorbisComment
 
class  FLAC::Metadata::VorbisComment::Entry
 
class  FLAC::Metadata::CueSheet
 
class  FLAC::Metadata::CueSheet::Track
 
class  FLAC::Metadata::Picture
 
class  FLAC::Metadata::Unknown
 
class  FLAC::Metadata::SimpleIterator
 
class  FLAC::Metadata::SimpleIterator::Status
 
class  FLAC::Metadata::Chain
 
class  FLAC::Metadata::Chain::Status
 
class  FLAC::Metadata::Iterator
 
+ + + + + + + + + + + + + + + + + + + +

+Functions

Prototype * FLAC::Metadata::local::construct_block (::FLAC__StreamMetadata *object)
 
Prototype * FLAC::Metadata::clone (const Prototype *)
 
bool FLAC::Metadata::get_streaminfo (const char *filename, StreamInfo &streaminfo)
 
bool FLAC::Metadata::get_tags (const char *filename, VorbisComment *&tags)
 
bool FLAC::Metadata::get_tags (const char *filename, VorbisComment &tags)
 
bool FLAC::Metadata::get_cuesheet (const char *filename, CueSheet *&cuesheet)
 
bool FLAC::Metadata::get_cuesheet (const char *filename, CueSheet &cuesheet)
 
bool FLAC::Metadata::get_picture (const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
 
bool FLAC::Metadata::get_picture (const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
 
+

Detailed Description

+

This module provides classes for creating and manipulating FLAC metadata blocks in memory, and three progressively more powerful interfaces for traversing and editing metadata in FLAC files.

+

See the detailed documentation for each interface in the metadata module.

+

Function Documentation

+ +

◆ construct_block()

+ +
+
+ + + + + + + + +
Prototype* FLAC::Metadata::local::construct_block (::FLAC__StreamMetadataobject)
+
+

Construct a new object of the type provided in object->type and return it.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h_source.html new file mode 100644 index 000000000..7490ac874 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/_09_2metadata_8h_source.html @@ -0,0 +1,238 @@ + + + + + + + +FLAC: include/FLAC++/metadata.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
metadata.h
+
+
+Go to the documentation of this file.
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLACPP__METADATA_H
34 #define FLACPP__METADATA_H
35 
36 #include "export.h"
37 
38 #include "FLAC/metadata.h"
39 
40 // ===============================================================
41 //
42 // Full documentation for the metadata interface can be found
43 // in the C layer in include/FLAC/metadata.h
44 //
45 // ===============================================================
46 
75 namespace FLAC {
76  namespace Metadata {
77 
78  // ============================================================
79  //
80  // Metadata objects
81  //
82  // ============================================================
83 
109  class FLACPP_API Prototype {
110  protected:
112 
115  Prototype(const Prototype &);
116  Prototype(const ::FLAC__StreamMetadata &);
117  Prototype(const ::FLAC__StreamMetadata *);
119 
130  Prototype(::FLAC__StreamMetadata *object, bool copy);
131 
133 
134  Prototype &operator=(const Prototype &);
135  Prototype &operator=(const ::FLAC__StreamMetadata &);
136  Prototype &operator=(const ::FLAC__StreamMetadata *);
138 
142  Prototype &assign_object(::FLAC__StreamMetadata *object, bool copy);
143 
146  virtual void clear();
147 
148  ::FLAC__StreamMetadata *object_;
149  public:
152  virtual ~Prototype();
153 
155 
157  inline bool operator==(const Prototype &) const;
158  inline bool operator==(const ::FLAC__StreamMetadata &) const;
159  inline bool operator==(const ::FLAC__StreamMetadata *) const;
161 
163 
164  inline bool operator!=(const Prototype &) const;
165  inline bool operator!=(const ::FLAC__StreamMetadata &) const;
166  inline bool operator!=(const ::FLAC__StreamMetadata *) const;
168 
169  friend class SimpleIterator;
170  friend class Iterator;
171 
176  inline bool is_valid() const;
177 
184  bool get_is_last() const;
185 
191  ::FLAC__MetadataType get_type() const;
192 
202  uint32_t get_length() const;
203 
210  void set_is_last(bool);
211 
219  inline operator const ::FLAC__StreamMetadata *() const;
220  private:
222  Prototype();
223 
224  // These are used only by Iterator
225  bool is_reference_;
226  inline void set_reference(bool x) { is_reference_ = x; }
227  };
228 
229  // local utility routines
230 
231  namespace local {
232 
234  Prototype *construct_block(::FLAC__StreamMetadata *object);
235 
236  }
237 
238 #ifdef _MSC_VER
239 // warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
240 #pragma warning ( disable : 4800 )
241 #endif
242 
243  inline bool Prototype::operator==(const Prototype &object) const
244  { return (bool)::FLAC__metadata_object_is_equal(object_, object.object_); }
245 
246  inline bool Prototype::operator==(const ::FLAC__StreamMetadata &object) const
247  { return (bool)::FLAC__metadata_object_is_equal(object_, &object); }
248 
249  inline bool Prototype::operator==(const ::FLAC__StreamMetadata *object) const
250  { return (bool)::FLAC__metadata_object_is_equal(object_, object); }
251 
252 #ifdef _MSC_VER
253 #pragma warning ( default : 4800 )
254 #endif
255 
256  inline bool Prototype::operator!=(const Prototype &object) const
257  { return !operator==(object); }
258 
259  inline bool Prototype::operator!=(const ::FLAC__StreamMetadata &object) const
260  { return !operator==(object); }
261 
262  inline bool Prototype::operator!=(const ::FLAC__StreamMetadata *object) const
263  { return !operator==(object); }
264 
265  inline bool Prototype::is_valid() const
266  { return 0 != object_; }
267 
268  inline Prototype::operator const ::FLAC__StreamMetadata *() const
269  { return object_; }
270 
272  FLACPP_API Prototype *clone(const Prototype *);
273 
274 
279  class FLACPP_API StreamInfo : public Prototype {
280  public:
281  StreamInfo();
282 
284 
287  inline StreamInfo(const StreamInfo &object): Prototype(object) { }
288  inline StreamInfo(const ::FLAC__StreamMetadata &object): Prototype(object) { }
289  inline StreamInfo(const ::FLAC__StreamMetadata *object): Prototype(object) { }
291 
295  inline StreamInfo(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
296 
297  ~StreamInfo();
298 
300 
301  inline StreamInfo &operator=(const StreamInfo &object) { Prototype::operator=(object); return *this; }
302  inline StreamInfo &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
303  inline StreamInfo &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
305 
309  inline StreamInfo &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
310 
312 
313  inline bool operator==(const StreamInfo &object) const { return Prototype::operator==(object); }
314  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
315  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
317 
319 
320  inline bool operator!=(const StreamInfo &object) const { return Prototype::operator!=(object); }
321  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
322  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
324 
326 
327  uint32_t get_min_blocksize() const;
328  uint32_t get_max_blocksize() const;
329  uint32_t get_min_framesize() const;
330  uint32_t get_max_framesize() const;
331  uint32_t get_sample_rate() const;
332  uint32_t get_channels() const;
333  uint32_t get_bits_per_sample() const;
334  FLAC__uint64 get_total_samples() const;
335  const FLAC__byte *get_md5sum() const;
336 
337  void set_min_blocksize(uint32_t value);
338  void set_max_blocksize(uint32_t value);
339  void set_min_framesize(uint32_t value);
340  void set_max_framesize(uint32_t value);
341  void set_sample_rate(uint32_t value);
342  void set_channels(uint32_t value);
343  void set_bits_per_sample(uint32_t value);
344  void set_total_samples(FLAC__uint64 value);
345  void set_md5sum(const FLAC__byte value[16]);
347  };
348 
353  class FLACPP_API Padding : public Prototype {
354  public:
355  Padding();
356 
358 
361  inline Padding(const Padding &object): Prototype(object) { }
362  inline Padding(const ::FLAC__StreamMetadata &object): Prototype(object) { }
363  inline Padding(const ::FLAC__StreamMetadata *object): Prototype(object) { }
365 
369  inline Padding(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
370 
373  Padding(uint32_t length);
374 
375  ~Padding();
376 
378 
379  inline Padding &operator=(const Padding &object) { Prototype::operator=(object); return *this; }
380  inline Padding &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
381  inline Padding &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
383 
387  inline Padding &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
388 
390 
391  inline bool operator==(const Padding &object) const { return Prototype::operator==(object); }
392  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
393  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
395 
397 
398  inline bool operator!=(const Padding &object) const { return Prototype::operator!=(object); }
399  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
400  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
402 
405  void set_length(uint32_t length);
406  };
407 
412  class FLACPP_API Application : public Prototype {
413  public:
414  Application();
415  //
417 
420  inline Application(const Application &object): Prototype(object) { }
421  inline Application(const ::FLAC__StreamMetadata &object): Prototype(object) { }
422  inline Application(const ::FLAC__StreamMetadata *object): Prototype(object) { }
424 
428  inline Application(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
429 
430  ~Application();
431 
433 
434  inline Application &operator=(const Application &object) { Prototype::operator=(object); return *this; }
435  inline Application &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
436  inline Application &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
438 
442  inline Application &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
443 
445 
446  inline bool operator==(const Application &object) const { return Prototype::operator==(object); }
447  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
448  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
450 
452 
453  inline bool operator!=(const Application &object) const { return Prototype::operator!=(object); }
454  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
455  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
457 
458  const FLAC__byte *get_id() const;
459  const FLAC__byte *get_data() const;
460 
461  void set_id(const FLAC__byte value[4]);
463  bool set_data(const FLAC__byte *data, uint32_t length);
464  bool set_data(FLAC__byte *data, uint32_t length, bool copy);
465  };
466 
471  class FLACPP_API SeekTable : public Prototype {
472  public:
473  SeekTable();
474 
476 
479  inline SeekTable(const SeekTable &object): Prototype(object) { }
480  inline SeekTable(const ::FLAC__StreamMetadata &object): Prototype(object) { }
481  inline SeekTable(const ::FLAC__StreamMetadata *object): Prototype(object) { }
483 
487  inline SeekTable(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
488 
489  ~SeekTable();
490 
492 
493  inline SeekTable &operator=(const SeekTable &object) { Prototype::operator=(object); return *this; }
494  inline SeekTable &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
495  inline SeekTable &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
497 
501  inline SeekTable &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
502 
504 
505  inline bool operator==(const SeekTable &object) const { return Prototype::operator==(object); }
506  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
507  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
509 
511 
512  inline bool operator!=(const SeekTable &object) const { return Prototype::operator!=(object); }
513  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
514  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
516 
517  uint32_t get_num_points() const;
518  ::FLAC__StreamMetadata_SeekPoint get_point(uint32_t index) const;
519 
521  bool resize_points(uint32_t new_num_points);
522 
524  void set_point(uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point);
525 
527  bool insert_point(uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point);
528 
530  bool delete_point(uint32_t index);
531 
533  bool is_legal() const;
534 
536  bool template_append_placeholders(uint32_t num);
537 
539  bool template_append_point(FLAC__uint64 sample_number);
540 
542  bool template_append_points(FLAC__uint64 sample_numbers[], uint32_t num);
543 
545  bool template_append_spaced_points(uint32_t num, FLAC__uint64 total_samples);
546 
548  bool template_append_spaced_points_by_samples(uint32_t samples, FLAC__uint64 total_samples);
549 
551  bool template_sort(bool compact);
552  };
553 
558  class FLACPP_API VorbisComment : public Prototype {
559  public:
589  class FLACPP_API Entry {
590  public:
591  Entry();
592 
593  Entry(const char *field, uint32_t field_length);
594  Entry(const char *field); // assumes \a field is NUL-terminated
595 
596  Entry(const char *field_name, const char *field_value, uint32_t field_value_length);
597  Entry(const char *field_name, const char *field_value); // assumes \a field_value is NUL-terminated
598 
599  Entry(const Entry &entry);
600 
601  Entry &operator=(const Entry &entry);
602 
603  virtual ~Entry();
604 
605  virtual bool is_valid() const;
606 
607  uint32_t get_field_length() const;
608  uint32_t get_field_name_length() const;
609  uint32_t get_field_value_length() const;
610 
612  const char *get_field() const;
613  const char *get_field_name() const;
614  const char *get_field_value() const;
615 
616  bool set_field(const char *field, uint32_t field_length);
617  bool set_field(const char *field); // assumes \a field is NUL-terminated
618  bool set_field_name(const char *field_name);
619  bool set_field_value(const char *field_value, uint32_t field_value_length);
620  bool set_field_value(const char *field_value); // assumes \a field_value is NUL-terminated
621  protected:
622  bool is_valid_;
624  char *field_name_;
625  uint32_t field_name_length_;
626  char *field_value_;
627  uint32_t field_value_length_;
628  private:
629  void zero();
630  void clear();
631  void clear_entry();
632  void clear_field_name();
633  void clear_field_value();
634  void construct(const char *field, uint32_t field_length);
635  void construct(const char *field); // assumes \a field is NUL-terminated
636  void construct(const char *field_name, const char *field_value, uint32_t field_value_length);
637  void construct(const char *field_name, const char *field_value); // assumes \a field_value is NUL-terminated
638  void compose_field();
639  void parse_field();
640  };
641 
642  VorbisComment();
643 
645 
648  inline VorbisComment(const VorbisComment &object): Prototype(object) { }
649  inline VorbisComment(const ::FLAC__StreamMetadata &object): Prototype(object) { }
650  inline VorbisComment(const ::FLAC__StreamMetadata *object): Prototype(object) { }
652 
656  inline VorbisComment(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
657 
658  ~VorbisComment();
659 
661 
662  inline VorbisComment &operator=(const VorbisComment &object) { Prototype::operator=(object); return *this; }
663  inline VorbisComment &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
664  inline VorbisComment &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
666 
670  inline VorbisComment &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
671 
673 
674  inline bool operator==(const VorbisComment &object) const { return Prototype::operator==(object); }
675  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
676  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
678 
680 
681  inline bool operator!=(const VorbisComment &object) const { return Prototype::operator!=(object); }
682  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
683  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
685 
686  uint32_t get_num_comments() const;
687  const FLAC__byte *get_vendor_string() const; // NUL-terminated UTF-8 string
688  Entry get_comment(uint32_t index) const;
689 
691  bool set_vendor_string(const FLAC__byte *string); // NUL-terminated UTF-8 string
692 
694  bool resize_comments(uint32_t new_num_comments);
695 
697  bool set_comment(uint32_t index, const Entry &entry);
698 
700  bool insert_comment(uint32_t index, const Entry &entry);
701 
703  bool append_comment(const Entry &entry);
704 
706  bool replace_comment(const Entry &entry, bool all);
707 
709  bool delete_comment(uint32_t index);
710 
712  int find_entry_from(uint32_t offset, const char *field_name);
713 
715  int remove_entry_matching(const char *field_name);
716 
718  int remove_entries_matching(const char *field_name);
719  };
720 
725  class FLACPP_API CueSheet : public Prototype {
726  public:
733  class FLACPP_API Track {
734  protected:
736  public:
737  Track();
738  Track(const ::FLAC__StreamMetadata_CueSheet_Track *track);
739  Track(const Track &track);
740  Track &operator=(const Track &track);
741 
742  virtual ~Track();
743 
744  virtual bool is_valid() const;
745 
746 
747  inline FLAC__uint64 get_offset() const { return object_->offset; }
748  inline FLAC__byte get_number() const { return object_->number; }
749  inline const char *get_isrc() const { return object_->isrc; }
750  inline uint32_t get_type() const { return object_->type; }
751  inline bool get_pre_emphasis() const { return object_->pre_emphasis; }
752 
753  inline FLAC__byte get_num_indices() const { return object_->num_indices; }
754  ::FLAC__StreamMetadata_CueSheet_Index get_index(uint32_t i) const;
755 
756  inline const ::FLAC__StreamMetadata_CueSheet_Track *get_track() const { return object_; }
757 
758  inline void set_offset(FLAC__uint64 value) { object_->offset = value; }
759  inline void set_number(FLAC__byte value) { object_->number = value; }
760  void set_isrc(const char value[12]);
761  void set_type(uint32_t value);
762  inline void set_pre_emphasis(bool value) { object_->pre_emphasis = value? 1 : 0; }
763 
764  void set_index(uint32_t i, const ::FLAC__StreamMetadata_CueSheet_Index &index);
765  //@@@ It's awkward but to insert/delete index points
766  //@@@ you must use the routines in the CueSheet class.
767  };
768 
769  CueSheet();
770 
772 
775  inline CueSheet(const CueSheet &object): Prototype(object) { }
776  inline CueSheet(const ::FLAC__StreamMetadata &object): Prototype(object) { }
777  inline CueSheet(const ::FLAC__StreamMetadata *object): Prototype(object) { }
779 
783  inline CueSheet(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
784 
785  ~CueSheet();
786 
788 
789  inline CueSheet &operator=(const CueSheet &object) { Prototype::operator=(object); return *this; }
790  inline CueSheet &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
791  inline CueSheet &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
793 
797  inline CueSheet &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
798 
800 
801  inline bool operator==(const CueSheet &object) const { return Prototype::operator==(object); }
802  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
803  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
805 
807 
808  inline bool operator!=(const CueSheet &object) const { return Prototype::operator!=(object); }
809  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
810  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
812 
813  const char *get_media_catalog_number() const;
814  FLAC__uint64 get_lead_in() const;
815  bool get_is_cd() const;
816 
817  uint32_t get_num_tracks() const;
818  Track get_track(uint32_t i) const;
819 
820  void set_media_catalog_number(const char value[128]);
821  void set_lead_in(FLAC__uint64 value);
822  void set_is_cd(bool value);
823 
824  void set_index(uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index);
825 
827  bool resize_indices(uint32_t track_num, uint32_t new_num_indices);
828 
830  bool insert_index(uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index);
831 
833  bool insert_blank_index(uint32_t track_num, uint32_t index_num);
834 
836  bool delete_index(uint32_t track_num, uint32_t index_num);
837 
839  bool resize_tracks(uint32_t new_num_tracks);
840 
842  bool set_track(uint32_t i, const Track &track);
843 
845  bool insert_track(uint32_t i, const Track &track);
846 
848  bool insert_blank_track(uint32_t i);
849 
851  bool delete_track(uint32_t i);
852 
854  bool is_legal(bool check_cd_da_subset = false, const char **violation = 0) const;
855 
857  FLAC__uint32 calculate_cddb_id() const;
858  };
859 
864  class FLACPP_API Picture : public Prototype {
865  public:
866  Picture();
867 
869 
872  inline Picture(const Picture &object): Prototype(object) { }
873  inline Picture(const ::FLAC__StreamMetadata &object): Prototype(object) { }
874  inline Picture(const ::FLAC__StreamMetadata *object): Prototype(object) { }
876 
880  inline Picture(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
881 
882  ~Picture();
883 
885 
886  inline Picture &operator=(const Picture &object) { Prototype::operator=(object); return *this; }
887  inline Picture &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
888  inline Picture &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
890 
894  inline Picture &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
895 
897 
898  inline bool operator==(const Picture &object) const { return Prototype::operator==(object); }
899  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
900  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
902 
904 
905  inline bool operator!=(const Picture &object) const { return Prototype::operator!=(object); }
906  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
907  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
909 
910  ::FLAC__StreamMetadata_Picture_Type get_type() const;
911  const char *get_mime_type() const; // NUL-terminated printable ASCII string
912  const FLAC__byte *get_description() const; // NUL-terminated UTF-8 string
913  FLAC__uint32 get_width() const;
914  FLAC__uint32 get_height() const;
915  FLAC__uint32 get_depth() const;
916  FLAC__uint32 get_colors() const;
917  FLAC__uint32 get_data_length() const;
918  const FLAC__byte *get_data() const;
919 
920  void set_type(::FLAC__StreamMetadata_Picture_Type type);
921 
923  bool set_mime_type(const char *string); // NUL-terminated printable ASCII string
924 
926  bool set_description(const FLAC__byte *string); // NUL-terminated UTF-8 string
927 
928  void set_width(FLAC__uint32 value) const;
929  void set_height(FLAC__uint32 value) const;
930  void set_depth(FLAC__uint32 value) const;
931  void set_colors(FLAC__uint32 value) const;
932 
934  bool set_data(const FLAC__byte *data, FLAC__uint32 data_length);
935 
937  bool is_legal(const char **violation);
938  };
939 
946  class FLACPP_API Unknown : public Prototype {
947  public:
948  Unknown();
949  //
951 
954  inline Unknown(const Unknown &object): Prototype(object) { }
955  inline Unknown(const ::FLAC__StreamMetadata &object): Prototype(object) { }
956  inline Unknown(const ::FLAC__StreamMetadata *object): Prototype(object) { }
958 
962  inline Unknown(::FLAC__StreamMetadata *object, bool copy): Prototype(object, copy) { }
963 
964  ~Unknown();
965 
967 
968  inline Unknown &operator=(const Unknown &object) { Prototype::operator=(object); return *this; }
969  inline Unknown &operator=(const ::FLAC__StreamMetadata &object) { Prototype::operator=(object); return *this; }
970  inline Unknown &operator=(const ::FLAC__StreamMetadata *object) { Prototype::operator=(object); return *this; }
972 
976  inline Unknown &assign(::FLAC__StreamMetadata *object, bool copy) { Prototype::assign_object(object, copy); return *this; }
977 
979 
980  inline bool operator==(const Unknown &object) const { return Prototype::operator==(object); }
981  inline bool operator==(const ::FLAC__StreamMetadata &object) const { return Prototype::operator==(object); }
982  inline bool operator==(const ::FLAC__StreamMetadata *object) const { return Prototype::operator==(object); }
984 
986 
987  inline bool operator!=(const Unknown &object) const { return Prototype::operator!=(object); }
988  inline bool operator!=(const ::FLAC__StreamMetadata &object) const { return Prototype::operator!=(object); }
989  inline bool operator!=(const ::FLAC__StreamMetadata *object) const { return Prototype::operator!=(object); }
991 
992  const FLAC__byte *get_data() const;
993 
995  bool set_data(const FLAC__byte *data, uint32_t length);
996  bool set_data(FLAC__byte *data, uint32_t length, bool copy);
997  };
998 
999  /* \} */
1000 
1001 
1014  FLACPP_API bool get_streaminfo(const char *filename, StreamInfo &streaminfo);
1015 
1016  FLACPP_API bool get_tags(const char *filename, VorbisComment *&tags);
1017  FLACPP_API bool get_tags(const char *filename, VorbisComment &tags);
1018 
1019  FLACPP_API bool get_cuesheet(const char *filename, CueSheet *&cuesheet);
1020  FLACPP_API bool get_cuesheet(const char *filename, CueSheet &cuesheet);
1021 
1022  FLACPP_API bool get_picture(const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors);
1023  FLACPP_API bool get_picture(const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors);
1024 
1025  /* \} */
1026 
1027 
1062  class FLACPP_API SimpleIterator {
1063  public:
1066  class FLACPP_API Status {
1067  public:
1068  inline Status(::FLAC__Metadata_SimpleIteratorStatus status): status_(status) { }
1069  inline operator ::FLAC__Metadata_SimpleIteratorStatus() const { return status_; }
1070  inline const char *as_cstring() const { return ::FLAC__Metadata_SimpleIteratorStatusString[status_]; }
1071  protected:
1073  };
1074 
1075  SimpleIterator();
1076  virtual ~SimpleIterator();
1077 
1078  bool is_valid() const;
1079 
1080  bool init(const char *filename, bool read_only, bool preserve_file_stats);
1081 
1082  Status status();
1083  bool is_writable() const;
1084 
1085  bool next();
1086  bool prev();
1087  bool is_last() const;
1088 
1089  off_t get_block_offset() const;
1090  ::FLAC__MetadataType get_block_type() const;
1091  uint32_t get_block_length() const;
1092  bool get_application_id(FLAC__byte *id);
1093  Prototype *get_block();
1094  bool set_block(Prototype *block, bool use_padding = true);
1095  bool insert_block_after(Prototype *block, bool use_padding = true);
1096  bool delete_block(bool use_padding = true);
1097 
1098  protected:
1100  void clear();
1101 
1102  private: // Do not use.
1104  SimpleIterator&operator=(const SimpleIterator&);
1105  };
1106 
1107  /* \} */
1108 
1109 
1152  class FLACPP_API Chain {
1153  public:
1156  class FLACPP_API Status {
1157  public:
1158  inline Status(::FLAC__Metadata_ChainStatus status): status_(status) { }
1159  inline operator ::FLAC__Metadata_ChainStatus() const { return status_; }
1160  inline const char *as_cstring() const { return ::FLAC__Metadata_ChainStatusString[status_]; }
1161  protected:
1163  };
1164 
1165  Chain();
1166  virtual ~Chain();
1167 
1168  friend class Iterator;
1169 
1170  bool is_valid() const;
1171 
1172  Status status();
1173 
1174  bool read(const char *filename, bool is_ogg = false);
1175  bool read(FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, bool is_ogg = false);
1176 
1177  bool check_if_tempfile_needed(bool use_padding);
1178 
1179  bool write(bool use_padding = true, bool preserve_file_stats = false);
1180  bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks);
1181  bool write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHandle temp_handle, ::FLAC__IOCallbacks temp_callbacks);
1182 
1183  void merge_padding();
1184  void sort_padding();
1185 
1186  protected:
1187  ::FLAC__Metadata_Chain *chain_;
1188  virtual void clear();
1189 
1190  private: // Do not use.
1191  Chain(const Chain&);
1192  Chain&operator=(const Chain&);
1193  };
1194 
1200  class FLACPP_API Iterator {
1201  public:
1202  Iterator();
1203  virtual ~Iterator();
1204 
1205  bool is_valid() const;
1206 
1207 
1208  void init(Chain &chain);
1209 
1210  bool next();
1211  bool prev();
1212 
1213  ::FLAC__MetadataType get_block_type() const;
1214  Prototype *get_block();
1215  bool set_block(Prototype *block);
1216  bool delete_block(bool replace_with_padding);
1217  bool insert_block_before(Prototype *block);
1218  bool insert_block_after(Prototype *block);
1219 
1220  protected:
1221  ::FLAC__Metadata_Iterator *iterator_;
1222  virtual void clear();
1223 
1224  private: // Do not use.
1225  Iterator(const Iterator&);
1226  Iterator&operator=(const Iterator&);
1227  };
1228 
1229  /* \} */
1230 
1231  }
1232 }
1233 
1234 #endif
FLAC__byte number
Definition: format.h:670
+
Application & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:442
+
bool operator==(const CueSheet &object) const
Definition: metadata.h:801
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:455
+
CueSheet(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:777
+
StreamInfo(const StreamInfo &object)
Definition: metadata.h:287
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:809
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:314
+
Definition: metadata.h:864
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:907
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:399
+
bool operator!=(const VorbisComment &object) const
Definition: metadata.h:681
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:989
+
VorbisComment(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:649
+
Prototype & operator=(const Prototype &)
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:514
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:906
+
Application(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:421
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:392
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:315
+
Definition: metadata.h:1062
+
CueSheet & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:797
+
bool get_cuesheet(const char *filename, CueSheet &cuesheet)
See FLAC__metadata_get_cuesheet().
+
StreamInfo & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:309
+
bool operator==(const Padding &object) const
Definition: metadata.h:391
+
Padding & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:380
+
bool get_tags(const char *filename, VorbisComment &tags)
See FLAC__metadata_get_tags().
+
Definition: decoder.h:78
+
This module provides functions for creating and manipulating FLAC metadata blocks in memory...
+
bool operator!=(const SeekTable &object) const
Definition: metadata.h:512
+
CueSheet & operator=(const CueSheet &object)
Definition: metadata.h:789
+
Unknown & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:970
+
bool operator==(const Prototype &) const
Definition: metadata.h:243
+
Definition: callback.h:170
+
Picture(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:880
+
Definition: metadata.h:353
+
const char *const FLAC__Metadata_SimpleIteratorStatusString[]
+
Unknown(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:956
+
Padding & operator=(const Padding &object)
Definition: metadata.h:379
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:322
+
VorbisComment(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:656
+
StreamInfo & operator=(const StreamInfo &object)
Definition: metadata.h:301
+
Picture & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:887
+
uint32_t type
Definition: format.h:676
+
StreamInfo(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:295
+
VorbisComment(const VorbisComment &object)
Definition: metadata.h:648
+
bool operator==(const StreamInfo &object) const
Definition: metadata.h:313
+
Unknown(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:962
+
Application & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:435
+
bool operator==(const VorbisComment &object) const
Definition: metadata.h:674
+
SeekTable & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:494
+
StreamInfo(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:288
+
Definition: format.h:666
+
Padding & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:387
+
Padding & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:381
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:675
+
StreamInfo & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:303
+
Picture & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:894
+
bool operator!=(const StreamInfo &object) const
Definition: metadata.h:320
+
Prototype * clone(const Prototype *)
+
Definition: format.h:647
+
Unknown(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:955
+
Picture & operator=(const Picture &object)
Definition: metadata.h:886
+
FLAC__bool FLAC__metadata_object_is_equal(const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2)
+
Unknown & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:976
+
CueSheet & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:791
+
Definition: metadata.h:558
+
Prototype & assign_object(::FLAC__StreamMetadata *object, bool copy)
+
uint32_t pre_emphasis
Definition: format.h:679
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:506
+
Definition: metadata.h:1152
+
SeekTable & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:501
+
CueSheet(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:776
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:393
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:447
+
FLAC__byte num_indices
Definition: format.h:682
+
bool operator==(const Unknown &object) const
Definition: metadata.h:980
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:454
+
Padding(const Padding &object)
Definition: metadata.h:361
+
bool operator!=(const Prototype &) const
Definition: metadata.h:256
+
Picture & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:888
+
StreamInfo & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:302
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:682
+
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
Unknown(const Unknown &object)
Definition: metadata.h:954
+
struct FLAC__Metadata_Chain FLAC__Metadata_Chain
Definition: metadata.h:714
+
Definition: format.h:834
+
Application & operator=(const Application &object)
Definition: metadata.h:434
+
bool get_streaminfo(const char *filename, StreamInfo &streaminfo)
See FLAC__metadata_get_streaminfo().
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:676
+
Padding(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:362
+
Definition: metadata.h:589
+
SeekTable(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:480
+
Definition: metadata.h:1156
+
const char *const FLAC__Metadata_ChainStatusString[]
+
VorbisComment(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:650
+
Application(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:428
+
Definition: metadata.h:1066
+
bool operator==(const Application &object) const
Definition: metadata.h:446
+
CueSheet(const CueSheet &object)
Definition: metadata.h:775
+
Application(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:422
+
Definition: metadata.h:279
+
StreamInfo(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:289
+
FLAC__MetadataType
Definition: format.h:489
+
struct FLAC__Metadata_Iterator FLAC__Metadata_Iterator
Definition: metadata.h:719
+
Picture(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:874
+
Definition: format.h:624
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:982
+
VorbisComment & assign(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:670
+
bool operator!=(const CueSheet &object) const
Definition: metadata.h:808
+
Picture(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:873
+
SeekTable(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:481
+
Picture(const Picture &object)
Definition: metadata.h:872
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:400
+
Definition: metadata.h:733
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:900
+
void * FLAC__IOHandle
Definition: callback.h:89
+
CueSheet(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:783
+
bool operator==(const Picture &object) const
Definition: metadata.h:898
+
char isrc[13]
Definition: format.h:673
+
SeekTable(const SeekTable &object)
Definition: metadata.h:479
+
FLAC__StreamMetadata_Picture_Type
Definition: format.h:732
+
struct FLAC__Metadata_SimpleIterator FLAC__Metadata_SimpleIterator
Definition: metadata.h:303
+
VorbisComment & operator=(const VorbisComment &object)
Definition: metadata.h:662
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:981
+
Definition: metadata.h:725
+
FLAC__uint64 offset
Definition: format.h:667
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:988
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:513
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:810
+
Definition: metadata.h:1200
+
Definition: metadata.h:109
+
bool operator==(const SeekTable &object) const
Definition: metadata.h:505
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:803
+
Padding(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:369
+
Unknown & operator=(const Unknown &object)
Definition: metadata.h:968
+
VorbisComment & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:664
+
Padding(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:363
+
Application(const Application &object)
Definition: metadata.h:420
+
bool operator!=(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:683
+
SeekTable & operator=(const SeekTable &object)
Definition: metadata.h:493
+
CueSheet & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:790
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:802
+
FLAC__Metadata_SimpleIteratorStatus
Definition: metadata.h:309
+
Definition: metadata.h:471
+
bool operator==(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:899
+
bool get_picture(const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
See FLAC__metadata_get_picture().
+
Unknown & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:969
+
bool operator!=(const Padding &object) const
Definition: metadata.h:398
+
bool operator!=(const Application &object) const
Definition: metadata.h:453
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:448
+
Definition: metadata.h:946
+
Application & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:436
+
Definition: format.h:574
+
VorbisComment & operator=(const ::FLAC__StreamMetadata &object)
Definition: metadata.h:663
+
bool operator!=(const Picture &object) const
Definition: metadata.h:905
+
FLAC__Metadata_ChainStatus
Definition: metadata.h:721
+
Definition: metadata.h:412
+
bool operator!=(const ::FLAC__StreamMetadata &object) const
Definition: metadata.h:321
+
SeekTable & operator=(const ::FLAC__StreamMetadata *object)
Definition: metadata.h:495
+
SeekTable(::FLAC__StreamMetadata *object, bool copy)
Definition: metadata.h:487
+
bool operator==(const ::FLAC__StreamMetadata *object) const
Definition: metadata.h:507
+
bool is_valid() const
Definition: metadata.h:265
+
bool operator!=(const Unknown &object) const
Definition: metadata.h:987
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/all_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/all_8h_source.html new file mode 100644 index 000000000..b24cd55b0 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/all_8h_source.html @@ -0,0 +1,80 @@ + + + + + + + +FLAC: include/FLAC/all.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
all.h
+
+
+
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2000-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__ALL_H
34 #define FLAC__ALL_H
35 
36 #include "export.h"
37 
38 #include "assert.h"
39 #include "callback.h"
40 #include "format.h"
41 #include "metadata.h"
42 #include "ordinals.h"
43 #include "stream_decoder.h"
44 #include "stream_encoder.h"
45 
371 #endif
This module contains the functions which implement the stream encoder.
+
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
This module provides functions for creating and manipulating FLAC metadata blocks in memory...
+
This module defines the structures for describing I/O callbacks to the other FLAC interfaces...
+
This module contains structure definitions for the representation of FLAC format components in memory...
+
This module contains the functions which implement the stream decoder.
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/annotated.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/annotated.html new file mode 100644 index 000000000..a779951e6 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/annotated.html @@ -0,0 +1,127 @@ + + + + + + + +FLAC: Class List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Class List
+
+
+
Here are the classes, structs, unions and interfaces with brief descriptions:
+
[detail level 1234]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 NFLAC
 NDecoder
 CFileThis class wraps the FLAC__StreamDecoder. If you are not decoding from a file, you may need to use FLAC::Decoder::Stream
 CStreamThis class wraps the FLAC__StreamDecoder. If you are decoding from a file, FLAC::Decoder::File may be more convenient
 CState
 NEncoder
 CFileThis class wraps the FLAC__StreamEncoder. If you are not encoding to a file, you may need to use FLAC::Encoder::Stream
 CStreamThis class wraps the FLAC__StreamEncoder. If you are encoding to a file, FLAC::Encoder::File may be more convenient
 CState
 NMetadata
 CApplication
 CChain
 CStatus
 CCueSheet
 CTrack
 CIterator
 CPadding
 CPicture
 CPrototype
 CSeekTable
 CSimpleIterator
 CStatus
 CStreamInfo
 CUnknown
 CVorbisComment
 CEntry
 CFLAC__EntropyCodingMethod
 CFLAC__EntropyCodingMethod_PartitionedRice
 CFLAC__EntropyCodingMethod_PartitionedRiceContents
 CFLAC__Frame
 CFLAC__FrameFooter
 CFLAC__FrameHeader
 CFLAC__IOCallbacks
 CFLAC__StreamDecoder
 CFLAC__StreamEncoder
 CFLAC__StreamMetadata
 CFLAC__StreamMetadata_Application
 CFLAC__StreamMetadata_CueSheet
 CFLAC__StreamMetadata_CueSheet_Index
 CFLAC__StreamMetadata_CueSheet_Track
 CFLAC__StreamMetadata_Padding
 CFLAC__StreamMetadata_Picture
 CFLAC__StreamMetadata_SeekPoint
 CFLAC__StreamMetadata_SeekTable
 CFLAC__StreamMetadata_StreamInfo
 CFLAC__StreamMetadata_Unknown
 CFLAC__StreamMetadata_VorbisComment
 CFLAC__StreamMetadata_VorbisComment_Entry
 CFLAC__Subframe
 CFLAC__Subframe_Constant
 CFLAC__Subframe_Fixed
 CFLAC__Subframe_LPC
 CFLAC__Subframe_Verbatim
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/assert_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/assert_8h_source.html new file mode 100644 index 000000000..f57e5286a --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/assert_8h_source.html @@ -0,0 +1,74 @@ + + + + + + + +FLAC: include/FLAC/assert.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
assert.h
+
+
+
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2001-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__ASSERT_H
34 #define FLAC__ASSERT_H
35 
36 /* we need this since some compilers (like MSVC) leave assert()s on release code (and we don't want to use their ASSERT) */
37 #ifndef NDEBUG
38 #include <assert.h>
39 #define FLAC__ASSERT(x) assert(x)
40 #define FLAC__ASSERT_DECLARATION(x) x
41 #else
42 #define FLAC__ASSERT(x)
43 #define FLAC__ASSERT_DECLARATION(x)
44 #endif
45 
46 #endif
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/bc_s.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/bc_s.png new file mode 100644 index 000000000..224b29aa9 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/bc_s.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/bdwn.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/bdwn.png new file mode 100644 index 000000000..940a0b950 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/bdwn.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h.html new file mode 100644 index 000000000..cc0f8708c --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h.html @@ -0,0 +1,107 @@ + + + + + + + +FLAC: include/FLAC/callback.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
callback.h File Reference
+
+
+
#include "ordinals.h"
+#include <stdlib.h>
+
+

Go to the source code of this file.

+ + + + +

+Classes

struct  FLAC__IOCallbacks
 
+ + + + + + + + + + + + + + + +

+Typedefs

typedef void * FLAC__IOHandle
 
typedef size_t(* FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
 
typedef size_t(* FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence)
 
typedef FLAC__int64(* FLAC__IOCallback_Tell) (FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Eof) (FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Close) (FLAC__IOHandle handle)
 
+

Detailed Description

+

This module defines the structures for describing I/O callbacks to the other FLAC interfaces.

+

See the detailed documentation for callbacks in the callbacks module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h_source.html new file mode 100644 index 000000000..2defb3a90 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/callback_8h_source.html @@ -0,0 +1,82 @@ + + + + + + + +FLAC: include/FLAC/callback.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
callback.h
+
+
+Go to the documentation of this file.
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2004-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__CALLBACK_H
34 #define FLAC__CALLBACK_H
35 
36 #include "ordinals.h"
37 #include <stdlib.h> /* for size_t */
38 
82 #ifdef __cplusplus
83 extern "C" {
84 #endif
85 
89 typedef void* FLAC__IOHandle;
90 
102 typedef size_t (*FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
103 
115 typedef size_t (*FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle);
116 
128 typedef int (*FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence);
129 
139 typedef FLAC__int64 (*FLAC__IOCallback_Tell) (FLAC__IOHandle handle);
140 
150 typedef int (*FLAC__IOCallback_Eof) (FLAC__IOHandle handle);
151 
160 typedef int (*FLAC__IOCallback_Close) (FLAC__IOHandle handle);
161 
170 typedef struct {
178 
179 /* \} */
180 
181 #ifdef __cplusplus
182 }
183 #endif
184 
185 #endif
size_t(* FLAC__IOCallback_Write)(const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
Definition: callback.h:115
+
Definition: callback.h:170
+
int(* FLAC__IOCallback_Eof)(FLAC__IOHandle handle)
Definition: callback.h:150
+
int(* FLAC__IOCallback_Close)(FLAC__IOHandle handle)
Definition: callback.h:160
+
FLAC__int64(* FLAC__IOCallback_Tell)(FLAC__IOHandle handle)
Definition: callback.h:139
+
void * FLAC__IOHandle
Definition: callback.h:89
+
size_t(* FLAC__IOCallback_Read)(void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
Definition: callback.h:102
+
int(* FLAC__IOCallback_Seek)(FLAC__IOHandle handle, FLAC__int64 offset, int whence)
Definition: callback.h:128
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File-members.html new file mode 100644 index 000000000..3f2f2c25b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File-members.html @@ -0,0 +1,133 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Decoder::File Member List
+
+
+ +

This is the complete list of members for FLAC::Decoder::File, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
decoder_ (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotected
eof_callback()FLAC::Decoder::Streamprotectedvirtual
eof_callback_(const ::FLAC__StreamDecoder *decoder, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
error_callback(::FLAC__StreamDecoderErrorStatus status)=0FLAC::Decoder::Streamprotectedpure virtual
error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
File() (defined in FLAC::Decoder::File)FLAC::Decoder::File
finish()FLAC::Decoder::Streamvirtual
flush()FLAC::Decoder::Streamvirtual
get_bits_per_sample() constFLAC::Decoder::Streamvirtual
get_blocksize() constFLAC::Decoder::Streamvirtual
get_channel_assignment() constFLAC::Decoder::Stream
get_channels() constFLAC::Decoder::Streamvirtual
get_decode_position(FLAC__uint64 *position) constFLAC::Decoder::Streamvirtual
get_md5_checking() constFLAC::Decoder::Streamvirtual
get_sample_rate() constFLAC::Decoder::Streamvirtual
get_state() constFLAC::Decoder::Stream
get_total_samples() constFLAC::Decoder::Streamvirtual
init(FILE *file)FLAC::Decoder::File
init(const char *filename)FLAC::Decoder::File
init(const std::string &filename)FLAC::Decoder::File
FLAC::Decoder::Stream::init()FLAC::Decoder::Stream
init_ogg(FILE *file)FLAC::Decoder::File
init_ogg(const char *filename)FLAC::Decoder::File
init_ogg(const std::string &filename)FLAC::Decoder::File
FLAC::Decoder::Stream::init_ogg()FLAC::Decoder::Stream
is_valid() constFLAC::Decoder::Streamvirtual
length_callback(FLAC__uint64 *stream_length)FLAC::Decoder::Streamprotected
length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
metadata_callback(const ::FLAC__StreamMetadata *metadata)FLAC::Decoder::Streamprotectedvirtual
metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
operator bool() constFLAC::Decoder::Streaminline
process_single()FLAC::Decoder::Streamvirtual
process_until_end_of_metadata()FLAC::Decoder::Streamvirtual
process_until_end_of_stream()FLAC::Decoder::Streamvirtual
read_callback(FLAC__byte buffer[], size_t *bytes)FLAC::Decoder::Fileprotectedvirtual
read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
reset()FLAC::Decoder::Streamvirtual
seek_absolute(FLAC__uint64 sample)FLAC::Decoder::Streamvirtual
seek_callback(FLAC__uint64 absolute_byte_offset)FLAC::Decoder::Streamprotected
seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
set_md5_checking(bool value)FLAC::Decoder::Streamvirtual
set_metadata_ignore(::FLAC__MetadataType type)FLAC::Decoder::Streamvirtual
set_metadata_ignore_all()FLAC::Decoder::Streamvirtual
set_metadata_ignore_application(const FLAC__byte id[4])FLAC::Decoder::Streamvirtual
set_metadata_respond(::FLAC__MetadataType type)FLAC::Decoder::Streamvirtual
set_metadata_respond_all()FLAC::Decoder::Streamvirtual
set_metadata_respond_application(const FLAC__byte id[4])FLAC::Decoder::Streamvirtual
set_ogg_serial_number(long value)FLAC::Decoder::Streamvirtual
skip_single_frame()FLAC::Decoder::Streamvirtual
Stream() (defined in FLAC::Decoder::Stream)FLAC::Decoder::Stream
tell_callback(FLAC__uint64 *absolute_byte_offset)FLAC::Decoder::Streamprotected
tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
write_callback(const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0FLAC::Decoder::Streamprotectedpure virtual
write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
~File() (defined in FLAC::Decoder::File)FLAC::Decoder::Filevirtual
~Stream() (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.html new file mode 100644 index 000000000..57b938236 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.html @@ -0,0 +1,1381 @@ + + + + + + + +FLAC: FLAC::Decoder::File Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <decoder.h>

+
+Inheritance diagram for FLAC::Decoder::File:
+
+
+ + +FLAC::Decoder::Stream + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

virtual ::FLAC__StreamDecoderInitStatus init (FILE *file)
 
virtual ::FLAC__StreamDecoderInitStatus init (const char *filename)
 
virtual ::FLAC__StreamDecoderInitStatus init (const std::string &filename)
 
virtual ::FLAC__StreamDecoderInitStatus init_ogg (FILE *file)
 
virtual ::FLAC__StreamDecoderInitStatus init_ogg (const char *filename)
 
virtual ::FLAC__StreamDecoderInitStatus init_ogg (const std::string &filename)
 
virtual bool set_ogg_serial_number (long value)
 
virtual bool set_md5_checking (bool value)
 
virtual bool set_metadata_respond (::FLAC__MetadataType type)
 
virtual bool set_metadata_respond_application (const FLAC__byte id[4])
 
virtual bool set_metadata_respond_all ()
 
virtual bool set_metadata_ignore (::FLAC__MetadataType type)
 
virtual bool set_metadata_ignore_application (const FLAC__byte id[4])
 
virtual bool set_metadata_ignore_all ()
 
State get_state () const
 
virtual bool get_md5_checking () const
 
virtual FLAC__uint64 get_total_samples () const
 
virtual uint32_t get_channels () const
 
virtual ::FLAC__ChannelAssignment get_channel_assignment () const
 
virtual uint32_t get_bits_per_sample () const
 
virtual uint32_t get_sample_rate () const
 
virtual uint32_t get_blocksize () const
 
virtual bool get_decode_position (FLAC__uint64 *position) const
 
virtual ::FLAC__StreamDecoderInitStatus init ()
 
virtual ::FLAC__StreamDecoderInitStatus init_ogg ()
 
virtual bool finish ()
 
virtual bool flush ()
 
virtual bool reset ()
 
virtual bool process_single ()
 
virtual bool process_until_end_of_metadata ()
 
virtual bool process_until_end_of_stream ()
 
virtual bool skip_single_frame ()
 
virtual bool seek_absolute (FLAC__uint64 sample)
 
virtual bool is_valid () const
 
 operator bool () const
 
+ + + + + + + + + + + + + + + + + +

+Protected Member Functions

virtual ::FLAC__StreamDecoderReadStatus read_callback (FLAC__byte buffer[], size_t *bytes)
 
virtual ::FLAC__StreamDecoderSeekStatus seek_callback (FLAC__uint64 absolute_byte_offset)
 
virtual ::FLAC__StreamDecoderTellStatus tell_callback (FLAC__uint64 *absolute_byte_offset)
 
virtual ::FLAC__StreamDecoderLengthStatus length_callback (FLAC__uint64 *stream_length)
 
virtual bool eof_callback ()
 
virtual ::FLAC__StreamDecoderWriteStatus write_callback (const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0
 
virtual void metadata_callback (const ::FLAC__StreamMetadata *metadata)
 
virtual void error_callback (::FLAC__StreamDecoderErrorStatus status)=0
 
+ + + + + + + + + + + + + + + + + +

+Static Protected Member Functions

+::FLAC__StreamDecoderReadStatus read_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
+::FLAC__StreamDecoderSeekStatus seek_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
+::FLAC__StreamDecoderTellStatus tell_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
+::FLAC__StreamDecoderLengthStatus length_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
 
+static FLAC__bool eof_callback_ (const ::FLAC__StreamDecoder *decoder, void *client_data)
 
+::FLAC__StreamDecoderWriteStatus write_callback_ (const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
 
+static void metadata_callback_ (const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
 
+static void error_callback_ (const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
 
+ + + +

+Protected Attributes

+::FLAC__StreamDecoderdecoder_
 
+

Detailed Description

+

This class wraps the FLAC__StreamDecoder. If you are not decoding from a file, you may need to use FLAC::Decoder::Stream.

+

The usage of this class is similar to FLAC__StreamDecoder, except instead of providing callbacks to FLAC__stream_decoder_init*_FILE() or FLAC__stream_decoder_init*_file(), you will inherit from this class and override the virtual callback functions with your own implementations, then call init() or init_off(). The rest of the calls work the same as in the C layer.

+

Only the write, and error callbacks from FLAC::Decoder::Stream are mandatory. The others are optional; this class provides full working implementations for all other callbacks and supports seeking.

+

Member Function Documentation

+ +

◆ init() [1/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init (FILE * file)
+
+
+ +

◆ init() [2/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init (const char * filename)
+
+
+ +

◆ init() [3/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init (const std::string & filename)
+
+
+ +

◆ init_ogg() [1/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init_ogg (FILE * file)
+
+
+ +

◆ init_ogg() [2/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init_ogg (const char * filename)
+
+
+ +

◆ init_ogg() [3/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::File::init_ogg (const std::string & filename)
+
+
+ +

◆ read_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamDecoderReadStatus FLAC::Decoder::File::read_callback (FLAC__byte buffer[],
size_t * bytes 
)
+
+protectedvirtual
+
+ +

see FLAC__StreamDecoderReadCallback

+ +

Implements FLAC::Decoder::Stream.

+ +
+
+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::is_valid () const
+
+virtualinherited
+
+

Call after construction to check that the object was created successfully. If not, use get_state() to find out why not.

+ +
+
+ +

◆ operator bool()

+ +
+
+ + + + + +
+ + + + + + + +
FLAC::Decoder::Stream::operator bool () const
+
+inlineinherited
+
+ +

See is_valid()

+ +
+
+ +

◆ set_ogg_serial_number()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_ogg_serial_number (long value)
+
+virtualinherited
+
+
+ +

◆ set_md5_checking()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_md5_checking (bool value)
+
+virtualinherited
+
+
+ +

◆ set_metadata_respond()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond (::FLAC__MetadataType type)
+
+virtualinherited
+
+
+ +

◆ set_metadata_respond_application()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond_application (const FLAC__byte id[4])
+
+virtualinherited
+
+
+ +

◆ set_metadata_respond_all()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond_all ()
+
+virtualinherited
+
+
+ +

◆ set_metadata_ignore()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore (::FLAC__MetadataType type)
+
+virtualinherited
+
+
+ +

◆ set_metadata_ignore_application()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore_application (const FLAC__byte id[4])
+
+virtualinherited
+
+
+ +

◆ set_metadata_ignore_all()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore_all ()
+
+virtualinherited
+
+
+ +

◆ get_state()

+ +
+
+ + + + + +
+ + + + + + + +
State FLAC::Decoder::Stream::get_state () const
+
+inherited
+
+
+ +

◆ get_md5_checking()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::get_md5_checking () const
+
+virtualinherited
+
+
+ +

◆ get_total_samples()

+ +
+
+ + + + + +
+ + + + + + + +
virtual FLAC__uint64 FLAC::Decoder::Stream::get_total_samples () const
+
+virtualinherited
+
+
+ +

◆ get_channels()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_channels () const
+
+virtualinherited
+
+
+ +

◆ get_channel_assignment()

+ +
+
+ + + + + +
+ + + + + + + +
virtual ::FLAC__ChannelAssignment FLAC::Decoder::Stream::get_channel_assignment () const
+
+inherited
+
+
+ +

◆ get_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_bits_per_sample () const
+
+virtualinherited
+
+
+ +

◆ get_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_sample_rate () const
+
+virtualinherited
+
+
+ +

◆ get_blocksize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_blocksize () const
+
+virtualinherited
+
+
+ +

◆ get_decode_position()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::get_decode_position (FLAC__uint64 * position) const
+
+virtualinherited
+
+
+ +

◆ init() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::Stream::init ()
+
+inherited
+
+
+ +

◆ init_ogg() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::Stream::init_ogg ()
+
+inherited
+
+
+ +

◆ finish()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::finish ()
+
+virtualinherited
+
+
+ +

◆ flush()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::flush ()
+
+virtualinherited
+
+
+ +

◆ reset()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::reset ()
+
+virtualinherited
+
+
+ +

◆ process_single()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_single ()
+
+virtualinherited
+
+
+ +

◆ process_until_end_of_metadata()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_until_end_of_metadata ()
+
+virtualinherited
+
+
+ +

◆ process_until_end_of_stream()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_until_end_of_stream ()
+
+virtualinherited
+
+
+ +

◆ skip_single_frame()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::skip_single_frame ()
+
+virtualinherited
+
+
+ +

◆ seek_absolute()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::seek_absolute (FLAC__uint64 sample)
+
+virtualinherited
+
+
+ +

◆ seek_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderSeekStatus FLAC::Decoder::Stream::seek_callback (FLAC__uint64 absolute_byte_offset)
+
+protectedinherited
+
+ +

see FLAC__StreamDecoderSeekCallback

+ +
+
+ +

◆ tell_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderTellStatus FLAC::Decoder::Stream::tell_callback (FLAC__uint64 * absolute_byte_offset)
+
+protectedinherited
+
+ +

see FLAC__StreamDecoderTellCallback

+ +
+
+ +

◆ length_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderLengthStatus FLAC::Decoder::Stream::length_callback (FLAC__uint64 * stream_length)
+
+protectedinherited
+
+ +

see FLAC__StreamDecoderLengthCallback

+ +
+
+ +

◆ eof_callback()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::eof_callback ()
+
+protectedvirtualinherited
+
+ +

see FLAC__StreamDecoderEofCallback

+ +
+
+ +

◆ write_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamDecoderWriteStatus FLAC::Decoder::Stream::write_callback (const ::FLAC__Frameframe,
const FLAC__int32 *const buffer[] 
)
+
+protectedpure virtualinherited
+
+ +

see FLAC__StreamDecoderWriteCallback

+ +
+
+ +

◆ metadata_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Decoder::Stream::metadata_callback (const ::FLAC__StreamMetadatametadata)
+
+protectedvirtualinherited
+
+ +

see FLAC__StreamDecoderMetadataCallback

+ +
+
+ +

◆ error_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Decoder::Stream::error_callback (::FLAC__StreamDecoderErrorStatus status)
+
+protectedpure virtualinherited
+
+ +

see FLAC__StreamDecoderErrorCallback

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.png new file mode 100644 index 000000000..9001f7cda Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1File.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream-members.html new file mode 100644 index 000000000..351fbb55e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream-members.html @@ -0,0 +1,125 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Decoder::Stream Member List
+
+
+ +

This is the complete list of members for FLAC::Decoder::Stream, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
decoder_ (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotected
eof_callback()FLAC::Decoder::Streamprotectedvirtual
eof_callback_(const ::FLAC__StreamDecoder *decoder, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
error_callback(::FLAC__StreamDecoderErrorStatus status)=0FLAC::Decoder::Streamprotectedpure virtual
error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
finish()FLAC::Decoder::Streamvirtual
flush()FLAC::Decoder::Streamvirtual
get_bits_per_sample() constFLAC::Decoder::Streamvirtual
get_blocksize() constFLAC::Decoder::Streamvirtual
get_channel_assignment() constFLAC::Decoder::Stream
get_channels() constFLAC::Decoder::Streamvirtual
get_decode_position(FLAC__uint64 *position) constFLAC::Decoder::Streamvirtual
get_md5_checking() constFLAC::Decoder::Streamvirtual
get_sample_rate() constFLAC::Decoder::Streamvirtual
get_state() constFLAC::Decoder::Stream
get_total_samples() constFLAC::Decoder::Streamvirtual
init()FLAC::Decoder::Stream
init_ogg()FLAC::Decoder::Stream
is_valid() constFLAC::Decoder::Streamvirtual
length_callback(FLAC__uint64 *stream_length)FLAC::Decoder::Streamprotected
length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
metadata_callback(const ::FLAC__StreamMetadata *metadata)FLAC::Decoder::Streamprotectedvirtual
metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
operator bool() constFLAC::Decoder::Streaminline
process_single()FLAC::Decoder::Streamvirtual
process_until_end_of_metadata()FLAC::Decoder::Streamvirtual
process_until_end_of_stream()FLAC::Decoder::Streamvirtual
read_callback(FLAC__byte buffer[], size_t *bytes)=0FLAC::Decoder::Streamprotectedpure virtual
read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
reset()FLAC::Decoder::Streamvirtual
seek_absolute(FLAC__uint64 sample)FLAC::Decoder::Streamvirtual
seek_callback(FLAC__uint64 absolute_byte_offset)FLAC::Decoder::Streamprotected
seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
set_md5_checking(bool value)FLAC::Decoder::Streamvirtual
set_metadata_ignore(::FLAC__MetadataType type)FLAC::Decoder::Streamvirtual
set_metadata_ignore_all()FLAC::Decoder::Streamvirtual
set_metadata_ignore_application(const FLAC__byte id[4])FLAC::Decoder::Streamvirtual
set_metadata_respond(::FLAC__MetadataType type)FLAC::Decoder::Streamvirtual
set_metadata_respond_all()FLAC::Decoder::Streamvirtual
set_metadata_respond_application(const FLAC__byte id[4])FLAC::Decoder::Streamvirtual
set_ogg_serial_number(long value)FLAC::Decoder::Streamvirtual
skip_single_frame()FLAC::Decoder::Streamvirtual
Stream() (defined in FLAC::Decoder::Stream)FLAC::Decoder::Stream
tell_callback(FLAC__uint64 *absolute_byte_offset)FLAC::Decoder::Streamprotected
tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
write_callback(const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0FLAC::Decoder::Streamprotectedpure virtual
write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data) (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamprotectedstatic
~Stream() (defined in FLAC::Decoder::Stream)FLAC::Decoder::Streamvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.html new file mode 100644 index 000000000..b80add928 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.html @@ -0,0 +1,1223 @@ + + + + + + + +FLAC: FLAC::Decoder::Stream Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <decoder.h>

+
+Inheritance diagram for FLAC::Decoder::Stream:
+
+
+ + +FLAC::Decoder::File + +
+ + + + +

+Classes

class  State
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

virtual bool set_ogg_serial_number (long value)
 
virtual bool set_md5_checking (bool value)
 
virtual bool set_metadata_respond (::FLAC__MetadataType type)
 
virtual bool set_metadata_respond_application (const FLAC__byte id[4])
 
virtual bool set_metadata_respond_all ()
 
virtual bool set_metadata_ignore (::FLAC__MetadataType type)
 
virtual bool set_metadata_ignore_application (const FLAC__byte id[4])
 
virtual bool set_metadata_ignore_all ()
 
State get_state () const
 
virtual bool get_md5_checking () const
 
virtual FLAC__uint64 get_total_samples () const
 
virtual uint32_t get_channels () const
 
virtual ::FLAC__ChannelAssignment get_channel_assignment () const
 
virtual uint32_t get_bits_per_sample () const
 
virtual uint32_t get_sample_rate () const
 
virtual uint32_t get_blocksize () const
 
virtual bool get_decode_position (FLAC__uint64 *position) const
 
virtual ::FLAC__StreamDecoderInitStatus init ()
 
virtual ::FLAC__StreamDecoderInitStatus init_ogg ()
 
virtual bool finish ()
 
virtual bool flush ()
 
virtual bool reset ()
 
virtual bool process_single ()
 
virtual bool process_until_end_of_metadata ()
 
virtual bool process_until_end_of_stream ()
 
virtual bool skip_single_frame ()
 
virtual bool seek_absolute (FLAC__uint64 sample)
 
virtual bool is_valid () const
 
 operator bool () const
 
+ + + + + + + + + + + + + + + + + +

+Protected Member Functions

virtual ::FLAC__StreamDecoderReadStatus read_callback (FLAC__byte buffer[], size_t *bytes)=0
 
virtual ::FLAC__StreamDecoderSeekStatus seek_callback (FLAC__uint64 absolute_byte_offset)
 
virtual ::FLAC__StreamDecoderTellStatus tell_callback (FLAC__uint64 *absolute_byte_offset)
 
virtual ::FLAC__StreamDecoderLengthStatus length_callback (FLAC__uint64 *stream_length)
 
virtual bool eof_callback ()
 
virtual ::FLAC__StreamDecoderWriteStatus write_callback (const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[])=0
 
virtual void metadata_callback (const ::FLAC__StreamMetadata *metadata)
 
virtual void error_callback (::FLAC__StreamDecoderErrorStatus status)=0
 
+ + + + + + + + + + + + + + + + + +

+Static Protected Member Functions

+::FLAC__StreamDecoderReadStatus read_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
+::FLAC__StreamDecoderSeekStatus seek_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
+::FLAC__StreamDecoderTellStatus tell_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
+::FLAC__StreamDecoderLengthStatus length_callback_ (const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
 
+static FLAC__bool eof_callback_ (const ::FLAC__StreamDecoder *decoder, void *client_data)
 
+::FLAC__StreamDecoderWriteStatus write_callback_ (const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
 
+static void metadata_callback_ (const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
 
+static void error_callback_ (const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
 
+ + + +

+Protected Attributes

+::FLAC__StreamDecoderdecoder_
 
+

Detailed Description

+

This class wraps the FLAC__StreamDecoder. If you are decoding from a file, FLAC::Decoder::File may be more convenient.

+

The usage of this class is similar to FLAC__StreamDecoder, except instead of providing callbacks to FLAC__stream_decoder_init*_stream(), you will inherit from this class and override the virtual callback functions with your own implementations, then call init() or init_ogg(). The rest of the calls work the same as in the C layer.

+

Only the read, write, and error callbacks are mandatory. The others are optional; this class provides default implementations that do nothing. In order for seeking to work you must override seek_callback(), tell_callback(), length_callback(), and eof_callback().

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::is_valid () const
+
+virtual
+
+

Call after construction to check that the object was created successfully. If not, use get_state() to find out why not.

+ +
+
+ +

◆ operator bool()

+ +
+
+ + + + + +
+ + + + + + + +
FLAC::Decoder::Stream::operator bool () const
+
+inline
+
+ +

See is_valid()

+ +
+
+ +

◆ set_ogg_serial_number()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_ogg_serial_number (long value)
+
+virtual
+
+
+ +

◆ set_md5_checking()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_md5_checking (bool value)
+
+virtual
+
+
+ +

◆ set_metadata_respond()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond (::FLAC__MetadataType type)
+
+virtual
+
+
+ +

◆ set_metadata_respond_application()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond_application (const FLAC__byte id[4])
+
+virtual
+
+
+ +

◆ set_metadata_respond_all()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_respond_all ()
+
+virtual
+
+
+ +

◆ set_metadata_ignore()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore (::FLAC__MetadataType type)
+
+virtual
+
+
+ +

◆ set_metadata_ignore_application()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore_application (const FLAC__byte id[4])
+
+virtual
+
+
+ +

◆ set_metadata_ignore_all()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::set_metadata_ignore_all ()
+
+virtual
+
+
+ +

◆ get_state()

+ +
+
+ + + + + + + +
State FLAC::Decoder::Stream::get_state () const
+
+
+ +

◆ get_md5_checking()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::get_md5_checking () const
+
+virtual
+
+
+ +

◆ get_total_samples()

+ +
+
+ + + + + +
+ + + + + + + +
virtual FLAC__uint64 FLAC::Decoder::Stream::get_total_samples () const
+
+virtual
+
+
+ +

◆ get_channels()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_channels () const
+
+virtual
+
+
+ +

◆ get_channel_assignment()

+ +
+
+ + + + + + + +
virtual ::FLAC__ChannelAssignment FLAC::Decoder::Stream::get_channel_assignment () const
+
+
+ +

◆ get_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_bits_per_sample () const
+
+virtual
+
+
+ +

◆ get_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_sample_rate () const
+
+virtual
+
+
+ +

◆ get_blocksize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Decoder::Stream::get_blocksize () const
+
+virtual
+
+
+ +

◆ get_decode_position()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::get_decode_position (FLAC__uint64 * position) const
+
+virtual
+
+
+ +

◆ init()

+ +
+
+ + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::Stream::init ()
+
+
+ +

◆ init_ogg()

+ +
+
+ + + + + + + +
virtual ::FLAC__StreamDecoderInitStatus FLAC::Decoder::Stream::init_ogg ()
+
+
+ +

◆ finish()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::finish ()
+
+virtual
+
+
+ +

◆ flush()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::flush ()
+
+virtual
+
+
+ +

◆ reset()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::reset ()
+
+virtual
+
+
+ +

◆ process_single()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_single ()
+
+virtual
+
+
+ +

◆ process_until_end_of_metadata()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_until_end_of_metadata ()
+
+virtual
+
+
+ +

◆ process_until_end_of_stream()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::process_until_end_of_stream ()
+
+virtual
+
+
+ +

◆ skip_single_frame()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::skip_single_frame ()
+
+virtual
+
+
+ +

◆ seek_absolute()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Decoder::Stream::seek_absolute (FLAC__uint64 sample)
+
+virtual
+
+
+ +

◆ read_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamDecoderReadStatus FLAC::Decoder::Stream::read_callback (FLAC__byte buffer[],
size_t * bytes 
)
+
+protectedpure virtual
+
+ +

see FLAC__StreamDecoderReadCallback

+ +

Implemented in FLAC::Decoder::File.

+ +
+
+ +

◆ seek_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderSeekStatus FLAC::Decoder::Stream::seek_callback (FLAC__uint64 absolute_byte_offset)
+
+protected
+
+ +

see FLAC__StreamDecoderSeekCallback

+ +
+
+ +

◆ tell_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderTellStatus FLAC::Decoder::Stream::tell_callback (FLAC__uint64 * absolute_byte_offset)
+
+protected
+
+ +

see FLAC__StreamDecoderTellCallback

+ +
+
+ +

◆ length_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamDecoderLengthStatus FLAC::Decoder::Stream::length_callback (FLAC__uint64 * stream_length)
+
+protected
+
+ +

see FLAC__StreamDecoderLengthCallback

+ +
+
+ +

◆ eof_callback()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Decoder::Stream::eof_callback ()
+
+protectedvirtual
+
+ +

see FLAC__StreamDecoderEofCallback

+ +
+
+ +

◆ write_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamDecoderWriteStatus FLAC::Decoder::Stream::write_callback (const ::FLAC__Frameframe,
const FLAC__int32 *const buffer[] 
)
+
+protectedpure virtual
+
+ +

see FLAC__StreamDecoderWriteCallback

+ +
+
+ +

◆ metadata_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Decoder::Stream::metadata_callback (const ::FLAC__StreamMetadatametadata)
+
+protectedvirtual
+
+ +

see FLAC__StreamDecoderMetadataCallback

+ +
+
+ +

◆ error_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Decoder::Stream::error_callback (::FLAC__StreamDecoderErrorStatus status)
+
+protectedpure virtual
+
+ +

see FLAC__StreamDecoderErrorCallback

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.png new file mode 100644 index 000000000..5dd5cba4f Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html new file mode 100644 index 000000000..e372777ae --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State-members.html @@ -0,0 +1,82 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Decoder::Stream::State Member List
+
+
+ +

This is the complete list of members for FLAC::Decoder::Stream::State, including all inherited members.

+ + + + + + +
as_cstring() const (defined in FLAC::Decoder::Stream::State)FLAC::Decoder::Stream::Stateinline
operator::FLAC__StreamDecoderState() const (defined in FLAC::Decoder::Stream::State)FLAC::Decoder::Stream::Stateinline
resolved_as_cstring(const Stream &decoder) const (defined in FLAC::Decoder::Stream::State)FLAC::Decoder::Stream::Stateinline
State(::FLAC__StreamDecoderState state) (defined in FLAC::Decoder::Stream::State)FLAC::Decoder::Stream::Stateinline
state_ (defined in FLAC::Decoder::Stream::State)FLAC::Decoder::Stream::Stateprotected
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html new file mode 100644 index 000000000..021d11509 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Decoder_1_1Stream_1_1State.html @@ -0,0 +1,107 @@ + + + + + + + +FLAC: FLAC::Decoder::Stream::State Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Decoder::Stream::State Class Reference
+
+
+ +

#include <decoder.h>

+ + + + + + + + + + +

+Public Member Functions

State (::FLAC__StreamDecoderState state)
 
operator::FLAC__StreamDecoderState () const
 
+const char * as_cstring () const
 
+const char * resolved_as_cstring (const Stream &decoder) const
 
+ + + +

+Protected Attributes

+::FLAC__StreamDecoderState state_
 
+

Detailed Description

+

This class is a wrapper around FLAC__StreamDecoderState.

+

The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File-members.html new file mode 100644 index 000000000..762732464 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File-members.html @@ -0,0 +1,148 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Encoder::File Member List
+
+
+ +

This is the complete list of members for FLAC::Encoder::File, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
encoder_ (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotected
File() (defined in FLAC::Encoder::File)FLAC::Encoder::File
finish()FLAC::Encoder::Streamvirtual
get_bits_per_sample() constFLAC::Encoder::Streamvirtual
get_blocksize() constFLAC::Encoder::Streamvirtual
get_channels() constFLAC::Encoder::Streamvirtual
get_do_escape_coding() constFLAC::Encoder::Streamvirtual
get_do_exhaustive_model_search() constFLAC::Encoder::Streamvirtual
get_do_mid_side_stereo() constFLAC::Encoder::Streamvirtual
get_do_qlp_coeff_prec_search() constFLAC::Encoder::Streamvirtual
get_loose_mid_side_stereo() constFLAC::Encoder::Streamvirtual
get_max_lpc_order() constFLAC::Encoder::Streamvirtual
get_max_residual_partition_order() constFLAC::Encoder::Streamvirtual
get_min_residual_partition_order() constFLAC::Encoder::Streamvirtual
get_qlp_coeff_precision() constFLAC::Encoder::Streamvirtual
get_rice_parameter_search_dist() constFLAC::Encoder::Streamvirtual
get_sample_rate() constFLAC::Encoder::Streamvirtual
get_state() constFLAC::Encoder::Stream
get_streamable_subset() constFLAC::Encoder::Streamvirtual
get_total_samples_estimate() constFLAC::Encoder::Streamvirtual
get_verify() constFLAC::Encoder::Streamvirtual
get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)FLAC::Encoder::Streamvirtual
get_verify_decoder_state() constFLAC::Encoder::Streamvirtual
init(FILE *file)FLAC::Encoder::File
init(const char *filename)FLAC::Encoder::File
init(const std::string &filename)FLAC::Encoder::File
FLAC::Encoder::Stream::init()FLAC::Encoder::Stream
init_ogg(FILE *file)FLAC::Encoder::File
init_ogg(const char *filename)FLAC::Encoder::File
init_ogg(const std::string &filename)FLAC::Encoder::File
FLAC::Encoder::Stream::init_ogg()FLAC::Encoder::Stream
is_valid() constFLAC::Encoder::Streamvirtual
metadata_callback(const ::FLAC__StreamMetadata *metadata)FLAC::Encoder::Streamprotectedvirtual
metadata_callback_(const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
operator bool() constFLAC::Encoder::Streaminline
process(const FLAC__int32 *const buffer[], uint32_t samples)FLAC::Encoder::Streamvirtual
process_interleaved(const FLAC__int32 buffer[], uint32_t samples)FLAC::Encoder::Streamvirtual
progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate)FLAC::Encoder::Fileprotectedvirtual
read_callback(FLAC__byte buffer[], size_t *bytes)FLAC::Encoder::Streamprotected
read_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
seek_callback(FLAC__uint64 absolute_byte_offset)FLAC::Encoder::Streamprotected
seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
set_apodization(const char *specification)FLAC::Encoder::Streamvirtual
set_bits_per_sample(uint32_t value)FLAC::Encoder::Streamvirtual
set_blocksize(uint32_t value)FLAC::Encoder::Streamvirtual
set_channels(uint32_t value)FLAC::Encoder::Streamvirtual
set_compression_level(uint32_t value)FLAC::Encoder::Streamvirtual
set_do_escape_coding(bool value)FLAC::Encoder::Streamvirtual
set_do_exhaustive_model_search(bool value)FLAC::Encoder::Streamvirtual
set_do_mid_side_stereo(bool value)FLAC::Encoder::Streamvirtual
set_do_qlp_coeff_prec_search(bool value)FLAC::Encoder::Streamvirtual
set_loose_mid_side_stereo(bool value)FLAC::Encoder::Streamvirtual
set_max_lpc_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_max_residual_partition_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_metadata(::FLAC__StreamMetadata **metadata, uint32_t num_blocks)FLAC::Encoder::Streamvirtual
set_metadata(FLAC::Metadata::Prototype **metadata, uint32_t num_blocks)FLAC::Encoder::Streamvirtual
set_min_residual_partition_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_ogg_serial_number(long value)FLAC::Encoder::Streamvirtual
set_qlp_coeff_precision(uint32_t value)FLAC::Encoder::Streamvirtual
set_rice_parameter_search_dist(uint32_t value)FLAC::Encoder::Streamvirtual
set_sample_rate(uint32_t value)FLAC::Encoder::Streamvirtual
set_streamable_subset(bool value)FLAC::Encoder::Streamvirtual
set_total_samples_estimate(FLAC__uint64 value)FLAC::Encoder::Streamvirtual
set_verify(bool value)FLAC::Encoder::Streamvirtual
Stream() (defined in FLAC::Encoder::Stream)FLAC::Encoder::Stream
tell_callback(FLAC__uint64 *absolute_byte_offset)FLAC::Encoder::Streamprotected
tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)FLAC::Encoder::Fileprotectedvirtual
write_callback_(const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
~File() (defined in FLAC::Encoder::File)FLAC::Encoder::Filevirtual
~Stream() (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.html new file mode 100644 index 000000000..886c6f42c --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.html @@ -0,0 +1,2018 @@ + + + + + + + +FLAC: FLAC::Encoder::File Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <encoder.h>

+
+Inheritance diagram for FLAC::Encoder::File:
+
+
+ + +FLAC::Encoder::Stream + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

virtual ::FLAC__StreamEncoderInitStatus init (FILE *file)
 
virtual ::FLAC__StreamEncoderInitStatus init (const char *filename)
 
virtual ::FLAC__StreamEncoderInitStatus init (const std::string &filename)
 
virtual ::FLAC__StreamEncoderInitStatus init_ogg (FILE *file)
 
virtual ::FLAC__StreamEncoderInitStatus init_ogg (const char *filename)
 
virtual ::FLAC__StreamEncoderInitStatus init_ogg (const std::string &filename)
 
virtual bool set_ogg_serial_number (long value)
 
virtual bool set_verify (bool value)
 
virtual bool set_streamable_subset (bool value)
 
virtual bool set_channels (uint32_t value)
 
virtual bool set_bits_per_sample (uint32_t value)
 
virtual bool set_sample_rate (uint32_t value)
 
virtual bool set_compression_level (uint32_t value)
 
virtual bool set_blocksize (uint32_t value)
 
virtual bool set_do_mid_side_stereo (bool value)
 
virtual bool set_loose_mid_side_stereo (bool value)
 
virtual bool set_apodization (const char *specification)
 
virtual bool set_max_lpc_order (uint32_t value)
 
virtual bool set_qlp_coeff_precision (uint32_t value)
 
virtual bool set_do_qlp_coeff_prec_search (bool value)
 
virtual bool set_do_escape_coding (bool value)
 
virtual bool set_do_exhaustive_model_search (bool value)
 
virtual bool set_min_residual_partition_order (uint32_t value)
 
virtual bool set_max_residual_partition_order (uint32_t value)
 
virtual bool set_rice_parameter_search_dist (uint32_t value)
 
virtual bool set_total_samples_estimate (FLAC__uint64 value)
 
virtual bool set_metadata (::FLAC__StreamMetadata **metadata, uint32_t num_blocks)
 
virtual bool set_metadata (FLAC::Metadata::Prototype **metadata, uint32_t num_blocks)
 
State get_state () const
 
virtual Decoder::Stream::State get_verify_decoder_state () const
 
virtual void get_verify_decoder_error_stats (FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)
 
virtual bool get_verify () const
 
virtual bool get_streamable_subset () const
 
virtual bool get_do_mid_side_stereo () const
 
virtual bool get_loose_mid_side_stereo () const
 
virtual uint32_t get_channels () const
 
virtual uint32_t get_bits_per_sample () const
 
virtual uint32_t get_sample_rate () const
 
virtual uint32_t get_blocksize () const
 
virtual uint32_t get_max_lpc_order () const
 
virtual uint32_t get_qlp_coeff_precision () const
 
virtual bool get_do_qlp_coeff_prec_search () const
 
virtual bool get_do_escape_coding () const
 
virtual bool get_do_exhaustive_model_search () const
 
virtual uint32_t get_min_residual_partition_order () const
 
virtual uint32_t get_max_residual_partition_order () const
 
virtual uint32_t get_rice_parameter_search_dist () const
 
virtual FLAC__uint64 get_total_samples_estimate () const
 
virtual ::FLAC__StreamEncoderInitStatus init ()
 
virtual ::FLAC__StreamEncoderInitStatus init_ogg ()
 
virtual bool finish ()
 
virtual bool process (const FLAC__int32 *const buffer[], uint32_t samples)
 
virtual bool process_interleaved (const FLAC__int32 buffer[], uint32_t samples)
 
virtual bool is_valid () const
 
 operator bool () const
 
+ + + + + + + + + + + + + +

+Protected Member Functions

virtual void progress_callback (FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate)
 
virtual ::FLAC__StreamEncoderWriteStatus write_callback (const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)
 
virtual ::FLAC__StreamEncoderReadStatus read_callback (FLAC__byte buffer[], size_t *bytes)
 
virtual ::FLAC__StreamEncoderSeekStatus seek_callback (FLAC__uint64 absolute_byte_offset)
 
virtual ::FLAC__StreamEncoderTellStatus tell_callback (FLAC__uint64 *absolute_byte_offset)
 
virtual void metadata_callback (const ::FLAC__StreamMetadata *metadata)
 
+ + + + + + + + + + + +

+Static Protected Member Functions

+::FLAC__StreamEncoderReadStatus read_callback_ (const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
+::FLAC__StreamEncoderWriteStatus write_callback_ (const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data)
 
+::FLAC__StreamEncoderSeekStatus seek_callback_ (const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
+::FLAC__StreamEncoderTellStatus tell_callback_ (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
+static void metadata_callback_ (const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
 
+ + + +

+Protected Attributes

+::FLAC__StreamEncoderencoder_
 
+

Detailed Description

+

This class wraps the FLAC__StreamEncoder. If you are not encoding to a file, you may need to use FLAC::Encoder::Stream.

+

The usage of this class is similar to FLAC__StreamEncoder, except instead of providing callbacks to FLAC__stream_encoder_init*_FILE() or FLAC__stream_encoder_init*_file(), you will inherit from this class and override the virtual callback functions with your own implementations, then call init() or init_ogg(). The rest of the calls work the same as in the C layer.

+

There are no mandatory callbacks; all the callbacks from FLAC::Encoder::Stream are implemented here fully and support full post-encode STREAMINFO and SEEKTABLE updating. There is only an optional progress callback which you may override to get periodic reports on the progress of the encode.

+

Member Function Documentation

+ +

◆ init() [1/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init (FILE * file)
+
+
+ +

◆ init() [2/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init (const char * filename)
+
+
+ +

◆ init() [3/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init (const std::string & filename)
+
+
+ +

◆ init_ogg() [1/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init_ogg (FILE * file)
+
+
+ +

◆ init_ogg() [2/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init_ogg (const char * filename)
+
+
+ +

◆ init_ogg() [3/4]

+ +
+
+ + + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::File::init_ogg (const std::string & filename)
+
+
+ +

◆ progress_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
virtual void FLAC::Encoder::File::progress_callback (FLAC__uint64 bytes_written,
FLAC__uint64 samples_written,
uint32_t frames_written,
uint32_t total_frames_estimate 
)
+
+protectedvirtual
+
+ +

See FLAC__StreamEncoderProgressCallback.

+ +
+
+ +

◆ write_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamEncoderWriteStatus FLAC::Encoder::File::write_callback (const FLAC__byte buffer[],
size_t bytes,
uint32_t samples,
uint32_t current_frame 
)
+
+protectedvirtual
+
+ +

This is a dummy implementation to satisfy the pure virtual in Stream that is actually supplied internally by the C layer.

+ +

Implements FLAC::Encoder::Stream.

+ +
+
+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::is_valid () const
+
+virtualinherited
+
+

Call after construction to check that the object was created successfully. If not, use get_state() to find out why not.

+ +
+
+ +

◆ operator bool()

+ +
+
+ + + + + +
+ + + + + + + +
FLAC::Encoder::Stream::operator bool () const
+
+inlineinherited
+
+ +

See is_valid()

+ +
+
+ +

◆ set_ogg_serial_number()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_ogg_serial_number (long value)
+
+virtualinherited
+
+
+ +

◆ set_verify()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_verify (bool value)
+
+virtualinherited
+
+
+ +

◆ set_streamable_subset()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_streamable_subset (bool value)
+
+virtualinherited
+
+
+ +

◆ set_channels()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_channels (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_bits_per_sample (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_sample_rate (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_compression_level()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_compression_level (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_blocksize()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_blocksize (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_do_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_mid_side_stereo (bool value)
+
+virtualinherited
+
+
+ +

◆ set_loose_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_loose_mid_side_stereo (bool value)
+
+virtualinherited
+
+
+ +

◆ set_apodization()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_apodization (const char * specification)
+
+virtualinherited
+
+
+ +

◆ set_max_lpc_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_max_lpc_order (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_qlp_coeff_precision()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_qlp_coeff_precision (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_do_qlp_coeff_prec_search()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_qlp_coeff_prec_search (bool value)
+
+virtualinherited
+
+
+ +

◆ set_do_escape_coding()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_escape_coding (bool value)
+
+virtualinherited
+
+
+ +

◆ set_do_exhaustive_model_search()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_exhaustive_model_search (bool value)
+
+virtualinherited
+
+
+ +

◆ set_min_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_min_residual_partition_order (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_max_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_max_residual_partition_order (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_rice_parameter_search_dist()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_rice_parameter_search_dist (uint32_t value)
+
+virtualinherited
+
+
+ +

◆ set_total_samples_estimate()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_total_samples_estimate (FLAC__uint64 value)
+
+virtualinherited
+
+
+ +

◆ set_metadata() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_metadata (::FLAC__StreamMetadata ** metadata,
uint32_t num_blocks 
)
+
+virtualinherited
+
+
+ +

◆ set_metadata() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_metadata (FLAC::Metadata::Prototype ** metadata,
uint32_t num_blocks 
)
+
+virtualinherited
+
+
+ +

◆ get_state()

+ +
+
+ + + + + +
+ + + + + + + +
State FLAC::Encoder::Stream::get_state () const
+
+inherited
+
+
+ +

◆ get_verify_decoder_state()

+ +
+
+ + + + + +
+ + + + + + + +
virtual Decoder::Stream::State FLAC::Encoder::Stream::get_verify_decoder_state () const
+
+virtualinherited
+
+
+ +

◆ get_verify_decoder_error_stats()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
virtual void FLAC::Encoder::Stream::get_verify_decoder_error_stats (FLAC__uint64 * absolute_sample,
uint32_t * frame_number,
uint32_t * channel,
uint32_t * sample,
FLAC__int32 * expected,
FLAC__int32 * got 
)
+
+virtualinherited
+
+
+ +

◆ get_verify()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_verify () const
+
+virtualinherited
+
+
+ +

◆ get_streamable_subset()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_streamable_subset () const
+
+virtualinherited
+
+
+ +

◆ get_do_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_mid_side_stereo () const
+
+virtualinherited
+
+
+ +

◆ get_loose_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_loose_mid_side_stereo () const
+
+virtualinherited
+
+
+ +

◆ get_channels()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_channels () const
+
+virtualinherited
+
+
+ +

◆ get_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_bits_per_sample () const
+
+virtualinherited
+
+
+ +

◆ get_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_sample_rate () const
+
+virtualinherited
+
+
+ +

◆ get_blocksize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_blocksize () const
+
+virtualinherited
+
+
+ +

◆ get_max_lpc_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_max_lpc_order () const
+
+virtualinherited
+
+
+ +

◆ get_qlp_coeff_precision()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_qlp_coeff_precision () const
+
+virtualinherited
+
+
+ +

◆ get_do_qlp_coeff_prec_search()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_qlp_coeff_prec_search () const
+
+virtualinherited
+
+
+ +

◆ get_do_escape_coding()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_escape_coding () const
+
+virtualinherited
+
+
+ +

◆ get_do_exhaustive_model_search()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_exhaustive_model_search () const
+
+virtualinherited
+
+
+ +

◆ get_min_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_min_residual_partition_order () const
+
+virtualinherited
+
+
+ +

◆ get_max_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_max_residual_partition_order () const
+
+virtualinherited
+
+
+ +

◆ get_rice_parameter_search_dist()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_rice_parameter_search_dist () const
+
+virtualinherited
+
+
+ +

◆ get_total_samples_estimate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual FLAC__uint64 FLAC::Encoder::Stream::get_total_samples_estimate () const
+
+virtualinherited
+
+
+ +

◆ init() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::Stream::init ()
+
+inherited
+
+
+ +

◆ init_ogg() [4/4]

+ +
+
+ + + + + +
+ + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::Stream::init_ogg ()
+
+inherited
+
+
+ +

◆ finish()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::finish ()
+
+virtualinherited
+
+
+ +

◆ process()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::process (const FLAC__int32 *const buffer[],
uint32_t samples 
)
+
+virtualinherited
+
+
+ +

◆ process_interleaved()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::process_interleaved (const FLAC__int32 buffer[],
uint32_t samples 
)
+
+virtualinherited
+
+
+ +

◆ read_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamEncoderReadStatus FLAC::Encoder::Stream::read_callback (FLAC__byte buffer[],
size_t * bytes 
)
+
+protectedinherited
+
+ +

See FLAC__StreamEncoderReadCallback.

+ +
+
+ +

◆ seek_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamEncoderSeekStatus FLAC::Encoder::Stream::seek_callback (FLAC__uint64 absolute_byte_offset)
+
+protectedinherited
+
+ +

See FLAC__StreamEncoderSeekCallback.

+ +
+
+ +

◆ tell_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamEncoderTellStatus FLAC::Encoder::Stream::tell_callback (FLAC__uint64 * absolute_byte_offset)
+
+protectedinherited
+
+ +

See FLAC__StreamEncoderTellCallback.

+ +
+
+ +

◆ metadata_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Encoder::Stream::metadata_callback (const ::FLAC__StreamMetadatametadata)
+
+protectedvirtualinherited
+
+ +

See FLAC__StreamEncoderMetadataCallback.

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.png new file mode 100644 index 000000000..7ec1aa13a Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1File.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream-members.html new file mode 100644 index 000000000..053997d35 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream-members.html @@ -0,0 +1,139 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Encoder::Stream Member List
+
+
+ +

This is the complete list of members for FLAC::Encoder::Stream, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
encoder_ (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotected
finish()FLAC::Encoder::Streamvirtual
get_bits_per_sample() constFLAC::Encoder::Streamvirtual
get_blocksize() constFLAC::Encoder::Streamvirtual
get_channels() constFLAC::Encoder::Streamvirtual
get_do_escape_coding() constFLAC::Encoder::Streamvirtual
get_do_exhaustive_model_search() constFLAC::Encoder::Streamvirtual
get_do_mid_side_stereo() constFLAC::Encoder::Streamvirtual
get_do_qlp_coeff_prec_search() constFLAC::Encoder::Streamvirtual
get_loose_mid_side_stereo() constFLAC::Encoder::Streamvirtual
get_max_lpc_order() constFLAC::Encoder::Streamvirtual
get_max_residual_partition_order() constFLAC::Encoder::Streamvirtual
get_min_residual_partition_order() constFLAC::Encoder::Streamvirtual
get_qlp_coeff_precision() constFLAC::Encoder::Streamvirtual
get_rice_parameter_search_dist() constFLAC::Encoder::Streamvirtual
get_sample_rate() constFLAC::Encoder::Streamvirtual
get_state() constFLAC::Encoder::Stream
get_streamable_subset() constFLAC::Encoder::Streamvirtual
get_total_samples_estimate() constFLAC::Encoder::Streamvirtual
get_verify() constFLAC::Encoder::Streamvirtual
get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)FLAC::Encoder::Streamvirtual
get_verify_decoder_state() constFLAC::Encoder::Streamvirtual
init()FLAC::Encoder::Stream
init_ogg()FLAC::Encoder::Stream
is_valid() constFLAC::Encoder::Streamvirtual
metadata_callback(const ::FLAC__StreamMetadata *metadata)FLAC::Encoder::Streamprotectedvirtual
metadata_callback_(const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
operator bool() constFLAC::Encoder::Streaminline
process(const FLAC__int32 *const buffer[], uint32_t samples)FLAC::Encoder::Streamvirtual
process_interleaved(const FLAC__int32 buffer[], uint32_t samples)FLAC::Encoder::Streamvirtual
read_callback(FLAC__byte buffer[], size_t *bytes)FLAC::Encoder::Streamprotected
read_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
seek_callback(FLAC__uint64 absolute_byte_offset)FLAC::Encoder::Streamprotected
seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
set_apodization(const char *specification)FLAC::Encoder::Streamvirtual
set_bits_per_sample(uint32_t value)FLAC::Encoder::Streamvirtual
set_blocksize(uint32_t value)FLAC::Encoder::Streamvirtual
set_channels(uint32_t value)FLAC::Encoder::Streamvirtual
set_compression_level(uint32_t value)FLAC::Encoder::Streamvirtual
set_do_escape_coding(bool value)FLAC::Encoder::Streamvirtual
set_do_exhaustive_model_search(bool value)FLAC::Encoder::Streamvirtual
set_do_mid_side_stereo(bool value)FLAC::Encoder::Streamvirtual
set_do_qlp_coeff_prec_search(bool value)FLAC::Encoder::Streamvirtual
set_loose_mid_side_stereo(bool value)FLAC::Encoder::Streamvirtual
set_max_lpc_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_max_residual_partition_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_metadata(::FLAC__StreamMetadata **metadata, uint32_t num_blocks)FLAC::Encoder::Streamvirtual
set_metadata(FLAC::Metadata::Prototype **metadata, uint32_t num_blocks)FLAC::Encoder::Streamvirtual
set_min_residual_partition_order(uint32_t value)FLAC::Encoder::Streamvirtual
set_ogg_serial_number(long value)FLAC::Encoder::Streamvirtual
set_qlp_coeff_precision(uint32_t value)FLAC::Encoder::Streamvirtual
set_rice_parameter_search_dist(uint32_t value)FLAC::Encoder::Streamvirtual
set_sample_rate(uint32_t value)FLAC::Encoder::Streamvirtual
set_streamable_subset(bool value)FLAC::Encoder::Streamvirtual
set_total_samples_estimate(FLAC__uint64 value)FLAC::Encoder::Streamvirtual
set_verify(bool value)FLAC::Encoder::Streamvirtual
Stream() (defined in FLAC::Encoder::Stream)FLAC::Encoder::Stream
tell_callback(FLAC__uint64 *absolute_byte_offset)FLAC::Encoder::Streamprotected
tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)=0FLAC::Encoder::Streamprotectedpure virtual
write_callback_(const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data) (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamprotectedstatic
~Stream() (defined in FLAC::Encoder::Stream)FLAC::Encoder::Streamvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.html new file mode 100644 index 000000000..dcdeff071 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.html @@ -0,0 +1,1816 @@ + + + + + + + +FLAC: FLAC::Encoder::Stream Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <encoder.h>

+
+Inheritance diagram for FLAC::Encoder::Stream:
+
+
+ + +FLAC::Encoder::File + +
+ + + + +

+Classes

class  State
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

virtual bool set_ogg_serial_number (long value)
 
virtual bool set_verify (bool value)
 
virtual bool set_streamable_subset (bool value)
 
virtual bool set_channels (uint32_t value)
 
virtual bool set_bits_per_sample (uint32_t value)
 
virtual bool set_sample_rate (uint32_t value)
 
virtual bool set_compression_level (uint32_t value)
 
virtual bool set_blocksize (uint32_t value)
 
virtual bool set_do_mid_side_stereo (bool value)
 
virtual bool set_loose_mid_side_stereo (bool value)
 
virtual bool set_apodization (const char *specification)
 
virtual bool set_max_lpc_order (uint32_t value)
 
virtual bool set_qlp_coeff_precision (uint32_t value)
 
virtual bool set_do_qlp_coeff_prec_search (bool value)
 
virtual bool set_do_escape_coding (bool value)
 
virtual bool set_do_exhaustive_model_search (bool value)
 
virtual bool set_min_residual_partition_order (uint32_t value)
 
virtual bool set_max_residual_partition_order (uint32_t value)
 
virtual bool set_rice_parameter_search_dist (uint32_t value)
 
virtual bool set_total_samples_estimate (FLAC__uint64 value)
 
virtual bool set_metadata (::FLAC__StreamMetadata **metadata, uint32_t num_blocks)
 
virtual bool set_metadata (FLAC::Metadata::Prototype **metadata, uint32_t num_blocks)
 
State get_state () const
 
virtual Decoder::Stream::State get_verify_decoder_state () const
 
virtual void get_verify_decoder_error_stats (FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)
 
virtual bool get_verify () const
 
virtual bool get_streamable_subset () const
 
virtual bool get_do_mid_side_stereo () const
 
virtual bool get_loose_mid_side_stereo () const
 
virtual uint32_t get_channels () const
 
virtual uint32_t get_bits_per_sample () const
 
virtual uint32_t get_sample_rate () const
 
virtual uint32_t get_blocksize () const
 
virtual uint32_t get_max_lpc_order () const
 
virtual uint32_t get_qlp_coeff_precision () const
 
virtual bool get_do_qlp_coeff_prec_search () const
 
virtual bool get_do_escape_coding () const
 
virtual bool get_do_exhaustive_model_search () const
 
virtual uint32_t get_min_residual_partition_order () const
 
virtual uint32_t get_max_residual_partition_order () const
 
virtual uint32_t get_rice_parameter_search_dist () const
 
virtual FLAC__uint64 get_total_samples_estimate () const
 
virtual ::FLAC__StreamEncoderInitStatus init ()
 
virtual ::FLAC__StreamEncoderInitStatus init_ogg ()
 
virtual bool finish ()
 
virtual bool process (const FLAC__int32 *const buffer[], uint32_t samples)
 
virtual bool process_interleaved (const FLAC__int32 buffer[], uint32_t samples)
 
virtual bool is_valid () const
 
 operator bool () const
 
+ + + + + + + + + + + +

+Protected Member Functions

virtual ::FLAC__StreamEncoderReadStatus read_callback (FLAC__byte buffer[], size_t *bytes)
 
virtual ::FLAC__StreamEncoderWriteStatus write_callback (const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)=0
 
virtual ::FLAC__StreamEncoderSeekStatus seek_callback (FLAC__uint64 absolute_byte_offset)
 
virtual ::FLAC__StreamEncoderTellStatus tell_callback (FLAC__uint64 *absolute_byte_offset)
 
virtual void metadata_callback (const ::FLAC__StreamMetadata *metadata)
 
+ + + + + + + + + + + +

+Static Protected Member Functions

+::FLAC__StreamEncoderReadStatus read_callback_ (const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
+::FLAC__StreamEncoderWriteStatus write_callback_ (const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data)
 
+::FLAC__StreamEncoderSeekStatus seek_callback_ (const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
+::FLAC__StreamEncoderTellStatus tell_callback_ (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
+static void metadata_callback_ (const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
 
+ + + +

+Protected Attributes

+::FLAC__StreamEncoderencoder_
 
+

Detailed Description

+

This class wraps the FLAC__StreamEncoder. If you are encoding to a file, FLAC::Encoder::File may be more convenient.

+

The usage of this class is similar to FLAC__StreamEncoder, except instead of providing callbacks to FLAC__stream_encoder_init*_stream(), you will inherit from this class and override the virtual callback functions with your own implementations, then call init() or init_ogg(). The rest of the calls work the same as in the C layer.

+

Only the write callback is mandatory. The others are optional; this class provides default implementations that do nothing. In order for some STREAMINFO and SEEKTABLE data to be written properly, you must override seek_callback() and tell_callback(); see FLAC__stream_encoder_init_stream() as to why.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::is_valid () const
+
+virtual
+
+

Call after construction to check that the object was created successfully. If not, use get_state() to find out why not.

+ +
+
+ +

◆ operator bool()

+ +
+
+ + + + + +
+ + + + + + + +
FLAC::Encoder::Stream::operator bool () const
+
+inline
+
+ +

See is_valid()

+ +
+
+ +

◆ set_ogg_serial_number()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_ogg_serial_number (long value)
+
+virtual
+
+
+ +

◆ set_verify()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_verify (bool value)
+
+virtual
+
+
+ +

◆ set_streamable_subset()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_streamable_subset (bool value)
+
+virtual
+
+
+ +

◆ set_channels()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_channels (uint32_t value)
+
+virtual
+
+
+ +

◆ set_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_bits_per_sample (uint32_t value)
+
+virtual
+
+
+ +

◆ set_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_sample_rate (uint32_t value)
+
+virtual
+
+
+ +

◆ set_compression_level()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_compression_level (uint32_t value)
+
+virtual
+
+
+ +

◆ set_blocksize()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_blocksize (uint32_t value)
+
+virtual
+
+
+ +

◆ set_do_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_mid_side_stereo (bool value)
+
+virtual
+
+
+ +

◆ set_loose_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_loose_mid_side_stereo (bool value)
+
+virtual
+
+
+ +

◆ set_apodization()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_apodization (const char * specification)
+
+virtual
+
+
+ +

◆ set_max_lpc_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_max_lpc_order (uint32_t value)
+
+virtual
+
+
+ +

◆ set_qlp_coeff_precision()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_qlp_coeff_precision (uint32_t value)
+
+virtual
+
+
+ +

◆ set_do_qlp_coeff_prec_search()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_qlp_coeff_prec_search (bool value)
+
+virtual
+
+
+ +

◆ set_do_escape_coding()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_escape_coding (bool value)
+
+virtual
+
+
+ +

◆ set_do_exhaustive_model_search()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_do_exhaustive_model_search (bool value)
+
+virtual
+
+
+ +

◆ set_min_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_min_residual_partition_order (uint32_t value)
+
+virtual
+
+
+ +

◆ set_max_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_max_residual_partition_order (uint32_t value)
+
+virtual
+
+
+ +

◆ set_rice_parameter_search_dist()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_rice_parameter_search_dist (uint32_t value)
+
+virtual
+
+
+ +

◆ set_total_samples_estimate()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_total_samples_estimate (FLAC__uint64 value)
+
+virtual
+
+
+ +

◆ set_metadata() [1/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_metadata (::FLAC__StreamMetadata ** metadata,
uint32_t num_blocks 
)
+
+virtual
+
+
+ +

◆ set_metadata() [2/2]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::set_metadata (FLAC::Metadata::Prototype ** metadata,
uint32_t num_blocks 
)
+
+virtual
+
+
+ +

◆ get_state()

+ +
+
+ + + + + + + +
State FLAC::Encoder::Stream::get_state () const
+
+
+ +

◆ get_verify_decoder_state()

+ +
+
+ + + + + +
+ + + + + + + +
virtual Decoder::Stream::State FLAC::Encoder::Stream::get_verify_decoder_state () const
+
+virtual
+
+
+ +

◆ get_verify_decoder_error_stats()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
virtual void FLAC::Encoder::Stream::get_verify_decoder_error_stats (FLAC__uint64 * absolute_sample,
uint32_t * frame_number,
uint32_t * channel,
uint32_t * sample,
FLAC__int32 * expected,
FLAC__int32 * got 
)
+
+virtual
+
+
+ +

◆ get_verify()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_verify () const
+
+virtual
+
+
+ +

◆ get_streamable_subset()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_streamable_subset () const
+
+virtual
+
+
+ +

◆ get_do_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_mid_side_stereo () const
+
+virtual
+
+
+ +

◆ get_loose_mid_side_stereo()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_loose_mid_side_stereo () const
+
+virtual
+
+
+ +

◆ get_channels()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_channels () const
+
+virtual
+
+
+ +

◆ get_bits_per_sample()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_bits_per_sample () const
+
+virtual
+
+
+ +

◆ get_sample_rate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_sample_rate () const
+
+virtual
+
+
+ +

◆ get_blocksize()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_blocksize () const
+
+virtual
+
+
+ +

◆ get_max_lpc_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_max_lpc_order () const
+
+virtual
+
+
+ +

◆ get_qlp_coeff_precision()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_qlp_coeff_precision () const
+
+virtual
+
+
+ +

◆ get_do_qlp_coeff_prec_search()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_qlp_coeff_prec_search () const
+
+virtual
+
+
+ +

◆ get_do_escape_coding()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_escape_coding () const
+
+virtual
+
+
+ +

◆ get_do_exhaustive_model_search()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::get_do_exhaustive_model_search () const
+
+virtual
+
+
+ +

◆ get_min_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_min_residual_partition_order () const
+
+virtual
+
+
+ +

◆ get_max_residual_partition_order()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_max_residual_partition_order () const
+
+virtual
+
+
+ +

◆ get_rice_parameter_search_dist()

+ +
+
+ + + + + +
+ + + + + + + +
virtual uint32_t FLAC::Encoder::Stream::get_rice_parameter_search_dist () const
+
+virtual
+
+
+ +

◆ get_total_samples_estimate()

+ +
+
+ + + + + +
+ + + + + + + +
virtual FLAC__uint64 FLAC::Encoder::Stream::get_total_samples_estimate () const
+
+virtual
+
+
+ +

◆ init()

+ +
+
+ + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::Stream::init ()
+
+
+ +

◆ init_ogg()

+ +
+
+ + + + + + + +
virtual ::FLAC__StreamEncoderInitStatus FLAC::Encoder::Stream::init_ogg ()
+
+
+ +

◆ finish()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Encoder::Stream::finish ()
+
+virtual
+
+
+ +

◆ process()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::process (const FLAC__int32 *const buffer[],
uint32_t samples 
)
+
+virtual
+
+
+ +

◆ process_interleaved()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual bool FLAC::Encoder::Stream::process_interleaved (const FLAC__int32 buffer[],
uint32_t samples 
)
+
+virtual
+
+
+ +

◆ read_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamEncoderReadStatus FLAC::Encoder::Stream::read_callback (FLAC__byte buffer[],
size_t * bytes 
)
+
+protected
+
+ +

See FLAC__StreamEncoderReadCallback.

+ +
+
+ +

◆ write_callback()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
virtual ::FLAC__StreamEncoderWriteStatus FLAC::Encoder::Stream::write_callback (const FLAC__byte buffer[],
size_t bytes,
uint32_t samples,
uint32_t current_frame 
)
+
+protectedpure virtual
+
+ +

See FLAC__StreamEncoderWriteCallback.

+ +

Implemented in FLAC::Encoder::File.

+ +
+
+ +

◆ seek_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamEncoderSeekStatus FLAC::Encoder::Stream::seek_callback (FLAC__uint64 absolute_byte_offset)
+
+protected
+
+ +

See FLAC__StreamEncoderSeekCallback.

+ +
+
+ +

◆ tell_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual ::FLAC__StreamEncoderTellStatus FLAC::Encoder::Stream::tell_callback (FLAC__uint64 * absolute_byte_offset)
+
+protected
+
+ +

See FLAC__StreamEncoderTellCallback.

+ +
+
+ +

◆ metadata_callback()

+ +
+
+ + + + + +
+ + + + + + + + +
virtual void FLAC::Encoder::Stream::metadata_callback (const ::FLAC__StreamMetadatametadata)
+
+protectedvirtual
+
+ +

See FLAC__StreamEncoderMetadataCallback.

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.png new file mode 100644 index 000000000..b705446ea Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html new file mode 100644 index 000000000..5863fcab7 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State-members.html @@ -0,0 +1,82 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Encoder::Stream::State Member List
+
+
+ +

This is the complete list of members for FLAC::Encoder::Stream::State, including all inherited members.

+ + + + + + +
as_cstring() const (defined in FLAC::Encoder::Stream::State)FLAC::Encoder::Stream::Stateinline
operator::FLAC__StreamEncoderState() const (defined in FLAC::Encoder::Stream::State)FLAC::Encoder::Stream::Stateinline
resolved_as_cstring(const Stream &encoder) const (defined in FLAC::Encoder::Stream::State)FLAC::Encoder::Stream::Stateinline
State(::FLAC__StreamEncoderState state) (defined in FLAC::Encoder::Stream::State)FLAC::Encoder::Stream::Stateinline
state_ (defined in FLAC::Encoder::Stream::State)FLAC::Encoder::Stream::Stateprotected
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html new file mode 100644 index 000000000..6d29b0558 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Encoder_1_1Stream_1_1State.html @@ -0,0 +1,107 @@ + + + + + + + +FLAC: FLAC::Encoder::Stream::State Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Encoder::Stream::State Class Reference
+
+
+ +

#include <encoder.h>

+ + + + + + + + + + +

+Public Member Functions

State (::FLAC__StreamEncoderState state)
 
operator::FLAC__StreamEncoderState () const
 
+const char * as_cstring () const
 
+const char * resolved_as_cstring (const Stream &encoder) const
 
+ + + +

+Protected Attributes

+::FLAC__StreamEncoderState state_
 
+

Detailed Description

+

This class is a wrapper around FLAC__StreamEncoderState.

+

The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application-members.html new file mode 100644 index 000000000..dafa0e334 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application-members.html @@ -0,0 +1,115 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Application Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Application, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Application() (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
Application(const Application &object)FLAC::Metadata::Applicationinline
Application(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Applicationinline
Application(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Applicationinline
Application(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Applicationinline
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Applicationinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_data() const (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
get_id() const (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_type() constFLAC::Metadata::Prototype
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const Application &object) constFLAC::Metadata::Applicationinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Applicationinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Applicationinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const Application &object)FLAC::Metadata::Applicationinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Applicationinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Applicationinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const Application &object) constFLAC::Metadata::Applicationinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Applicationinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Applicationinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_data(const FLAC__byte *data, uint32_t length)FLAC::Metadata::Application
set_data(FLAC__byte *data, uint32_t length, bool copy) (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
set_id(const FLAC__byte value[4]) (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
set_is_last(bool)FLAC::Metadata::Prototype
~Application() (defined in FLAC::Metadata::Application)FLAC::Metadata::Application
~Prototype()FLAC::Metadata::Prototypevirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.html new file mode 100644 index 000000000..64fd4c7ba --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.html @@ -0,0 +1,801 @@ + + + + + + + +FLAC: FLAC::Metadata::Application Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::Application:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Application (::FLAC__StreamMetadata *object, bool copy)
 
Applicationassign (::FLAC__StreamMetadata *object, bool copy)
 
+const FLAC__byte * get_id () const
 
+const FLAC__byte * get_data () const
 
+void set_id (const FLAC__byte value[4])
 
bool set_data (const FLAC__byte *data, uint32_t length)
 
+bool set_data (FLAC__byte *data, uint32_t length, bool copy)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 Application (const Application &object)
 
 Application (const ::FLAC__StreamMetadata &object)
 
 Application (const ::FLAC__StreamMetadata *object)
 
Applicationoperator= (const Application &object)
 
Applicationoperator= (const ::FLAC__StreamMetadata &object)
 
Applicationoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const Application &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const Application &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

APPLICATION metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ Application() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Application::Application (const Applicationobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Application() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Application::Application (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Application() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Application::Application (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Application() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::Application::Application (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Application& FLAC::Metadata::Application::operator= (const Applicationobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Application& FLAC::Metadata::Application::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Application& FLAC::Metadata::Application::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Application& FLAC::Metadata::Application::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator== (const Applicationobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator!= (const Applicationobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Application::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ set_data()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Application::set_data (const FLAC__byte * data,
uint32_t length 
)
+
+ +

This form always copies data.

+ +
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.png new file mode 100644 index 000000000..ccff7fff7 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Application.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain-members.html new file mode 100644 index 000000000..8e49700b2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain-members.html @@ -0,0 +1,92 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Chain Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Chain, including all inherited members.

+ + + + + + + + + + + + + + + + +
Chain() (defined in FLAC::Metadata::Chain)FLAC::Metadata::Chain
chain_ (defined in FLAC::Metadata::Chain)FLAC::Metadata::Chainprotected
check_if_tempfile_needed(bool use_padding)FLAC::Metadata::Chain
clear() (defined in FLAC::Metadata::Chain)FLAC::Metadata::Chainprotectedvirtual
is_valid() constFLAC::Metadata::Chain
Iterator (defined in FLAC::Metadata::Chain)FLAC::Metadata::Chainfriend
merge_padding()FLAC::Metadata::Chain
read(const char *filename, bool is_ogg=false)FLAC::Metadata::Chain
read(FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, bool is_ogg=false)FLAC::Metadata::Chain
sort_padding()FLAC::Metadata::Chain
status()FLAC::Metadata::Chain
write(bool use_padding=true, bool preserve_file_stats=false)FLAC::Metadata::Chain
write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks)FLAC::Metadata::Chain
write(bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHandle temp_handle, ::FLAC__IOCallbacks temp_callbacks)FLAC::Metadata::Chain
~Chain() (defined in FLAC::Metadata::Chain)FLAC::Metadata::Chainvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain.html new file mode 100644 index 000000000..6aba645da --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain.html @@ -0,0 +1,412 @@ + + + + + + + +FLAC: FLAC::Metadata::Chain Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+ + + + +

+Classes

class  Status
 
+ + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

bool is_valid () const
 
Status status ()
 
bool read (const char *filename, bool is_ogg=false)
 
bool read (FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, bool is_ogg=false)
 
bool check_if_tempfile_needed (bool use_padding)
 
bool write (bool use_padding=true, bool preserve_file_stats=false)
 
bool write (bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks)
 
bool write (bool use_padding, ::FLAC__IOHandle handle, ::FLAC__IOCallbacks callbacks, ::FLAC__IOHandle temp_handle, ::FLAC__IOCallbacks temp_callbacks)
 
void merge_padding ()
 
void sort_padding ()
 
+ + + +

+Protected Member Functions

+virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__Metadata_Chainchain_
 
+ + + +

+Friends

+class Iterator
 
+

Detailed Description

+

This class is a wrapper around the FLAC__metadata_chain structures and methods; see the usage guide and FLAC__Metadata_Chain.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::Chain::is_valid () const
+
+ +

Returns true iff object was properly constructed.

+ +
+
+ +

◆ status()

+ +
+
+ + + + + + + +
Status FLAC::Metadata::Chain::status ()
+
+
+ +

◆ read() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Chain::read (const char * filename,
bool is_ogg = false 
)
+
+
+ +

◆ read() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Chain::read (FLAC__IOHandle handle,
FLAC__IOCallbacks callbacks,
bool is_ogg = false 
)
+
+
+ +

◆ check_if_tempfile_needed()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Chain::check_if_tempfile_needed (bool use_padding)
+
+
+ +

◆ write() [1/3]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Chain::write (bool use_padding = true,
bool preserve_file_stats = false 
)
+
+
+ +

◆ write() [2/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Chain::write (bool use_padding,
::FLAC__IOHandle handle,
::FLAC__IOCallbacks callbacks 
)
+
+
+ +

◆ write() [3/3]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Chain::write (bool use_padding,
::FLAC__IOHandle handle,
::FLAC__IOCallbacks callbacks,
::FLAC__IOHandle temp_handle,
::FLAC__IOCallbacks temp_callbacks 
)
+
+
+ +

◆ merge_padding()

+ +
+
+ + + + + + + +
void FLAC::Metadata::Chain::merge_padding ()
+
+
+ +

◆ sort_padding()

+ +
+
+ + + + + + + +
void FLAC::Metadata::Chain::sort_padding ()
+
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html new file mode 100644 index 000000000..334952508 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status-members.html @@ -0,0 +1,81 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Chain::Status Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Chain::Status, including all inherited members.

+ + + + + +
as_cstring() const (defined in FLAC::Metadata::Chain::Status)FLAC::Metadata::Chain::Statusinline
operator::FLAC__Metadata_ChainStatus() const (defined in FLAC::Metadata::Chain::Status)FLAC::Metadata::Chain::Statusinline
Status(::FLAC__Metadata_ChainStatus status) (defined in FLAC::Metadata::Chain::Status)FLAC::Metadata::Chain::Statusinline
status_ (defined in FLAC::Metadata::Chain::Status)FLAC::Metadata::Chain::Statusprotected
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html new file mode 100644 index 000000000..7bfcfda8c --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Chain_1_1Status.html @@ -0,0 +1,104 @@ + + + + + + + +FLAC: FLAC::Metadata::Chain::Status Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Metadata::Chain::Status Class Reference
+
+
+ +

#include <metadata.h>

+ + + + + + + + +

+Public Member Functions

Status (::FLAC__Metadata_ChainStatus status)
 
operator::FLAC__Metadata_ChainStatus () const
 
+const char * as_cstring () const
 
+ + + +

+Protected Attributes

+::FLAC__Metadata_ChainStatus status_
 
+

Detailed Description

+

This class is a wrapper around FLAC__Metadata_ChainStatus.

+

The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html new file mode 100644 index 000000000..ae3b600ef --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet-members.html @@ -0,0 +1,130 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::CueSheet Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::CueSheet, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::CueSheetinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
calculate_cddb_id() constFLAC::Metadata::CueSheet
clear()FLAC::Metadata::Prototypeprotectedvirtual
CueSheet() (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
CueSheet(const CueSheet &object)FLAC::Metadata::CueSheetinline
CueSheet(const ::FLAC__StreamMetadata &object)FLAC::Metadata::CueSheetinline
CueSheet(const ::FLAC__StreamMetadata *object)FLAC::Metadata::CueSheetinline
CueSheet(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::CueSheetinline
delete_index(uint32_t track_num, uint32_t index_num)FLAC::Metadata::CueSheet
delete_track(uint32_t i)FLAC::Metadata::CueSheet
get_is_cd() const (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
get_is_last() constFLAC::Metadata::Prototype
get_lead_in() const (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
get_length() constFLAC::Metadata::Prototype
get_media_catalog_number() const (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
get_num_tracks() const (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
get_track(uint32_t i) const (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
get_type() constFLAC::Metadata::Prototype
insert_blank_index(uint32_t track_num, uint32_t index_num)FLAC::Metadata::CueSheet
insert_blank_track(uint32_t i)FLAC::Metadata::CueSheet
insert_index(uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index)FLAC::Metadata::CueSheet
insert_track(uint32_t i, const Track &track)FLAC::Metadata::CueSheet
is_legal(bool check_cd_da_subset=false, const char **violation=0) constFLAC::Metadata::CueSheet
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const CueSheet &object) constFLAC::Metadata::CueSheetinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::CueSheetinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::CueSheetinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const CueSheet &object)FLAC::Metadata::CueSheetinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::CueSheetinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::CueSheetinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const CueSheet &object) constFLAC::Metadata::CueSheetinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::CueSheetinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::CueSheetinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
resize_indices(uint32_t track_num, uint32_t new_num_indices)FLAC::Metadata::CueSheet
resize_tracks(uint32_t new_num_tracks)FLAC::Metadata::CueSheet
set_index(uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index) (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
set_is_cd(bool value) (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
set_is_last(bool)FLAC::Metadata::Prototype
set_lead_in(FLAC__uint64 value) (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
set_media_catalog_number(const char value[128]) (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
set_track(uint32_t i, const Track &track)FLAC::Metadata::CueSheet
~CueSheet() (defined in FLAC::Metadata::CueSheet)FLAC::Metadata::CueSheet
~Prototype()FLAC::Metadata::Prototypevirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.html new file mode 100644 index 000000000..ce6264fea --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.html @@ -0,0 +1,1107 @@ + + + + + + + +FLAC: FLAC::Metadata::CueSheet Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::CueSheet:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + +

+Classes

class  Track
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 CueSheet (::FLAC__StreamMetadata *object, bool copy)
 
CueSheetassign (::FLAC__StreamMetadata *object, bool copy)
 
+const char * get_media_catalog_number () const
 
+FLAC__uint64 get_lead_in () const
 
+bool get_is_cd () const
 
+uint32_t get_num_tracks () const
 
+Track get_track (uint32_t i) const
 
+void set_media_catalog_number (const char value[128])
 
+void set_lead_in (FLAC__uint64 value)
 
+void set_is_cd (bool value)
 
+void set_index (uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index)
 
bool resize_indices (uint32_t track_num, uint32_t new_num_indices)
 
bool insert_index (uint32_t track_num, uint32_t index_num, const ::FLAC__StreamMetadata_CueSheet_Index &index)
 
bool insert_blank_index (uint32_t track_num, uint32_t index_num)
 
bool delete_index (uint32_t track_num, uint32_t index_num)
 
bool resize_tracks (uint32_t new_num_tracks)
 
bool set_track (uint32_t i, const Track &track)
 
bool insert_track (uint32_t i, const Track &track)
 
bool insert_blank_track (uint32_t i)
 
bool delete_track (uint32_t i)
 
bool is_legal (bool check_cd_da_subset=false, const char **violation=0) const
 
FLAC__uint32 calculate_cddb_id () const
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 CueSheet (const CueSheet &object)
 
 CueSheet (const ::FLAC__StreamMetadata &object)
 
 CueSheet (const ::FLAC__StreamMetadata *object)
 
CueSheetoperator= (const CueSheet &object)
 
CueSheetoperator= (const ::FLAC__StreamMetadata &object)
 
CueSheetoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const CueSheet &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const CueSheet &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

CUESHEET metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ CueSheet() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::CueSheet::CueSheet (const CueSheetobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ CueSheet() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::CueSheet::CueSheet (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ CueSheet() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::CueSheet::CueSheet (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ CueSheet() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::CueSheet::CueSheet (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
CueSheet& FLAC::Metadata::CueSheet::operator= (const CueSheetobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
CueSheet& FLAC::Metadata::CueSheet::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
CueSheet& FLAC::Metadata::CueSheet::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
CueSheet& FLAC::Metadata::CueSheet::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator== (const CueSheetobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator!= (const CueSheetobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ resize_indices()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::resize_indices (uint32_t track_num,
uint32_t new_num_indices 
)
+
+
+ +

◆ insert_index()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::insert_index (uint32_t track_num,
uint32_t index_num,
const ::FLAC__StreamMetadata_CueSheet_Indexindex 
)
+
+
+ +

◆ insert_blank_index()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::insert_blank_index (uint32_t track_num,
uint32_t index_num 
)
+
+
+ +

◆ delete_index()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::delete_index (uint32_t track_num,
uint32_t index_num 
)
+
+
+ +

◆ resize_tracks()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::resize_tracks (uint32_t new_num_tracks)
+
+
+ +

◆ set_track()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::set_track (uint32_t i,
const Tracktrack 
)
+
+
+ +

◆ insert_track()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::insert_track (uint32_t i,
const Tracktrack 
)
+
+
+ +

◆ insert_blank_track()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::insert_blank_track (uint32_t i)
+
+
+ +

◆ delete_track()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::CueSheet::delete_track (uint32_t i)
+
+
+ +

◆ is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::CueSheet::is_legal (bool check_cd_da_subset = false,
const char ** violation = 0 
) const
+
+
+ +

◆ calculate_cddb_id()

+ +
+
+ + + + + + + +
FLAC__uint32 FLAC::Metadata::CueSheet::calculate_cddb_id () const
+
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.png new file mode 100644 index 000000000..171bfa61e Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html new file mode 100644 index 000000000..7e0567c06 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track-members.html @@ -0,0 +1,98 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::CueSheet::Track Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::CueSheet::Track, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + +
get_index(uint32_t i) const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
get_isrc() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_num_indices() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_number() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_offset() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_pre_emphasis() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_track() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
get_type() const (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
is_valid() constFLAC::Metadata::CueSheet::Trackvirtual
object_ (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackprotected
operator=(const Track &track) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
set_index(uint32_t i, const ::FLAC__StreamMetadata_CueSheet_Index &index) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
set_isrc(const char value[12]) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
set_number(FLAC__byte value) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
set_offset(FLAC__uint64 value) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
set_pre_emphasis(bool value) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackinline
set_type(uint32_t value) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
Track() (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
Track(const ::FLAC__StreamMetadata_CueSheet_Track *track) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
Track(const Track &track) (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Track
~Track() (defined in FLAC::Metadata::CueSheet::Track)FLAC::Metadata::CueSheet::Trackvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html new file mode 100644 index 000000000..3b2a14b62 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1CueSheet_1_1Track.html @@ -0,0 +1,177 @@ + + + + + + + +FLAC: FLAC::Metadata::CueSheet::Track Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Metadata::CueSheet::Track Class Reference
+
+
+ +

#include <metadata.h>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

Track (const ::FLAC__StreamMetadata_CueSheet_Track *track)
 
Track (const Track &track)
 
+Trackoperator= (const Track &track)
 
virtual bool is_valid () const
 
+FLAC__uint64 get_offset () const
 
+FLAC__byte get_number () const
 
+const char * get_isrc () const
 
+uint32_t get_type () const
 
+bool get_pre_emphasis () const
 
+FLAC__byte get_num_indices () const
 
+::FLAC__StreamMetadata_CueSheet_Index get_index (uint32_t i) const
 
+const ::FLAC__StreamMetadata_CueSheet_Trackget_track () const
 
+void set_offset (FLAC__uint64 value)
 
+void set_number (FLAC__byte value)
 
+void set_isrc (const char value[12])
 
+void set_type (uint32_t value)
 
+void set_pre_emphasis (bool value)
 
+void set_index (uint32_t i, const ::FLAC__StreamMetadata_CueSheet_Index &index)
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadata_CueSheet_Trackobject_
 
+

Detailed Description

+

Convenience class for encapsulating a cue sheet track.

+

Always check is_valid() after the constructor or operator= to make sure memory was properly allocated.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Metadata::CueSheet::Track::is_valid () const
+
+virtual
+
+ +

Returns true iff object was properly constructed.

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html new file mode 100644 index 000000000..b08e1da5d --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator-members.html @@ -0,0 +1,91 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Iterator Member List
+
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator.html new file mode 100644 index 000000000..aea49e71a --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Iterator.html @@ -0,0 +1,318 @@ + + + + + + + +FLAC: FLAC::Metadata::Iterator Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+ + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

bool is_valid () const
 
void init (Chain &chain)
 
bool next ()
 
bool prev ()
 
::FLAC__MetadataType get_block_type () const
 
Prototypeget_block ()
 
bool set_block (Prototype *block)
 
bool delete_block (bool replace_with_padding)
 
bool insert_block_before (Prototype *block)
 
bool insert_block_after (Prototype *block)
 
+ + + +

+Protected Member Functions

+virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__Metadata_Iteratoriterator_
 
+

Detailed Description

+

This class is a wrapper around the FLAC__metadata_iterator structures and methods; see the usage guide and FLAC__Metadata_Iterator.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::Iterator::is_valid () const
+
+ +

Returns true iff object was properly constructed.

+ +
+
+ +

◆ init()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::Iterator::init (Chainchain)
+
+
+ +

◆ next()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::Iterator::next ()
+
+
+ +

◆ prev()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::Iterator::prev ()
+
+
+ +

◆ get_block_type()

+ +
+
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Iterator::get_block_type () const
+
+
+ +

◆ get_block()

+ +
+
+ + + + + + + +
Prototype* FLAC::Metadata::Iterator::get_block ()
+
+
+ +

◆ set_block()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Iterator::set_block (Prototypeblock)
+
+
+ +

◆ delete_block()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Iterator::delete_block (bool replace_with_padding)
+
+
+ +

◆ insert_block_before()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Iterator::insert_block_before (Prototypeblock)
+
+
+ +

◆ insert_block_after()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Iterator::insert_block_after (Prototypeblock)
+
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding-members.html new file mode 100644 index 000000000..7697a9374 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding-members.html @@ -0,0 +1,112 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Padding Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Padding, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Paddinginline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_type() constFLAC::Metadata::Prototype
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const Padding &object) constFLAC::Metadata::Paddinginline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Paddinginline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Paddinginline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const Padding &object)FLAC::Metadata::Paddinginline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Paddinginline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Paddinginline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const Padding &object) constFLAC::Metadata::Paddinginline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Paddinginline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Paddinginline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Padding() (defined in FLAC::Metadata::Padding)FLAC::Metadata::Padding
Padding(const Padding &object)FLAC::Metadata::Paddinginline
Padding(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Paddinginline
Padding(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Paddinginline
Padding(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Paddinginline
Padding(uint32_t length)FLAC::Metadata::Padding
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_is_last(bool)FLAC::Metadata::Prototype
set_length(uint32_t length)FLAC::Metadata::Padding
~Padding() (defined in FLAC::Metadata::Padding)FLAC::Metadata::Padding
~Prototype()FLAC::Metadata::Prototypevirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.html new file mode 100644 index 000000000..dc5577294 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.html @@ -0,0 +1,799 @@ + + + + + + + +FLAC: FLAC::Metadata::Padding Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::Padding:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Padding (::FLAC__StreamMetadata *object, bool copy)
 
 Padding (uint32_t length)
 
Paddingassign (::FLAC__StreamMetadata *object, bool copy)
 
void set_length (uint32_t length)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 Padding (const Padding &object)
 
 Padding (const ::FLAC__StreamMetadata &object)
 
 Padding (const ::FLAC__StreamMetadata *object)
 
Paddingoperator= (const Padding &object)
 
Paddingoperator= (const ::FLAC__StreamMetadata &object)
 
Paddingoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const Padding &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const Padding &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

PADDING metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ Padding() [1/5]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Padding::Padding (const Paddingobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Padding() [2/5]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Padding::Padding (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Padding() [3/5]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Padding::Padding (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Padding() [4/5]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::Padding::Padding (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+ +

◆ Padding() [5/5]

+ +
+
+ + + + + + + + +
FLAC::Metadata::Padding::Padding (uint32_t length)
+
+

Constructs an object with the given length.

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Padding& FLAC::Metadata::Padding::operator= (const Paddingobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Padding& FLAC::Metadata::Padding::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Padding& FLAC::Metadata::Padding::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Padding& FLAC::Metadata::Padding::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator== (const Paddingobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator!= (const Paddingobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Padding::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ set_length()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::Padding::set_length (uint32_t length)
+
+

Sets the length in bytes of the padding block.

+ +
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.png new file mode 100644 index 000000000..1a4476bc9 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Padding.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture-members.html new file mode 100644 index 000000000..32107e3fc --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture-members.html @@ -0,0 +1,127 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Picture Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Picture, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Pictureinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_colors() constFLAC::Metadata::Picture
get_data() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_data_length() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_depth() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_description() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_height() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_mime_type() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_type() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
get_width() const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
is_legal(const char **violation)FLAC::Metadata::Picture
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const Picture &object) constFLAC::Metadata::Pictureinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Pictureinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Pictureinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const Picture &object)FLAC::Metadata::Pictureinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Pictureinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Pictureinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const Picture &object) constFLAC::Metadata::Pictureinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Pictureinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Pictureinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Picture() (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
Picture(const Picture &object)FLAC::Metadata::Pictureinline
Picture(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Pictureinline
Picture(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Pictureinline
Picture(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Pictureinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_colors(FLAC__uint32 value) constFLAC::Metadata::Picture
set_data(const FLAC__byte *data, FLAC__uint32 data_length)FLAC::Metadata::Picture
set_depth(FLAC__uint32 value) const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
set_description(const FLAC__byte *string)FLAC::Metadata::Picture
set_height(FLAC__uint32 value) const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
set_is_last(bool)FLAC::Metadata::Prototype
set_mime_type(const char *string)FLAC::Metadata::Picture
set_type(::FLAC__StreamMetadata_Picture_Type type) (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
set_width(FLAC__uint32 value) const (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
~Picture() (defined in FLAC::Metadata::Picture)FLAC::Metadata::Picture
~Prototype()FLAC::Metadata::Prototypevirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.html new file mode 100644 index 000000000..197fd3983 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.html @@ -0,0 +1,905 @@ + + + + + + + +FLAC: FLAC::Metadata::Picture Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::Picture:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Picture (::FLAC__StreamMetadata *object, bool copy)
 
Pictureassign (::FLAC__StreamMetadata *object, bool copy)
 
+::FLAC__StreamMetadata_Picture_Type get_type () const
 
+const char * get_mime_type () const
 
+const FLAC__byte * get_description () const
 
+FLAC__uint32 get_width () const
 
+FLAC__uint32 get_height () const
 
+FLAC__uint32 get_depth () const
 
FLAC__uint32 get_colors () const
 
+FLAC__uint32 get_data_length () const
 
+const FLAC__byte * get_data () const
 
+void set_type (::FLAC__StreamMetadata_Picture_Type type)
 
bool set_mime_type (const char *string)
 
bool set_description (const FLAC__byte *string)
 
+void set_width (FLAC__uint32 value) const
 
+void set_height (FLAC__uint32 value) const
 
+void set_depth (FLAC__uint32 value) const
 
void set_colors (FLAC__uint32 value) const
 
bool set_data (const FLAC__byte *data, FLAC__uint32 data_length)
 
bool is_legal (const char **violation)
 
bool is_valid () const
 
bool get_is_last () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 Picture (const Picture &object)
 
 Picture (const ::FLAC__StreamMetadata &object)
 
 Picture (const ::FLAC__StreamMetadata *object)
 
Pictureoperator= (const Picture &object)
 
Pictureoperator= (const ::FLAC__StreamMetadata &object)
 
Pictureoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const Picture &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const Picture &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

PICTURE metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ Picture() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Picture::Picture (const Pictureobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Picture() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Picture::Picture (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Picture() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Picture::Picture (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Picture() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::Picture::Picture (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Picture& FLAC::Metadata::Picture::operator= (const Pictureobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Picture& FLAC::Metadata::Picture::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Picture& FLAC::Metadata::Picture::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Picture& FLAC::Metadata::Picture::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator== (const Pictureobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator!= (const Pictureobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Picture::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ get_colors()

+ +
+
+ + + + + + + +
FLAC__uint32 FLAC::Metadata::Picture::get_colors () const
+
+ +

a return value of 0 means true-color, i.e. 2^depth colors

+ +
+
+ +

◆ set_mime_type()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Picture::set_mime_type (const char * string)
+
+
+ +

◆ set_description()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Picture::set_description (const FLAC__byte * string)
+
+
+ +

◆ set_colors()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::Picture::set_colors (FLAC__uint32 value) const
+
+ +

a value of 0 means true-color, i.e. 2^depth colors

+ +
+
+ +

◆ set_data()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Picture::set_data (const FLAC__byte * data,
FLAC__uint32 data_length 
)
+
+
+ +

◆ is_legal()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::Picture::is_legal (const char ** violation)
+
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.png new file mode 100644 index 000000000..e2470cc16 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Picture.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html new file mode 100644 index 000000000..b7b3f0447 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype-members.html @@ -0,0 +1,102 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Prototype Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Prototype, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_type() constFLAC::Metadata::Prototype
is_valid() constFLAC::Metadata::Prototypeinline
Iterator (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypefriend
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator!=(const ::FLAC__StreamMetadata &) constFLAC::Metadata::Prototypeinline
operator!=(const ::FLAC__StreamMetadata *) constFLAC::Metadata::Prototypeinline
operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator=(const ::FLAC__StreamMetadata &)FLAC::Metadata::Prototypeprotected
operator=(const ::FLAC__StreamMetadata *)FLAC::Metadata::Prototypeprotected
operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
operator==(const ::FLAC__StreamMetadata &) constFLAC::Metadata::Prototypeinline
operator==(const ::FLAC__StreamMetadata *) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_is_last(bool)FLAC::Metadata::Prototype
SimpleIterator (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypefriend
~Prototype()FLAC::Metadata::Prototypevirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.html new file mode 100644 index 000000000..9b7cca227 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.html @@ -0,0 +1,466 @@ + + + + + + + +FLAC: FLAC::Metadata::Prototype Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::Prototype:
+
+
+ + +FLAC::Metadata::Application +FLAC::Metadata::CueSheet +FLAC::Metadata::Padding +FLAC::Metadata::Picture +FLAC::Metadata::SeekTable +FLAC::Metadata::StreamInfo +FLAC::Metadata::Unknown +FLAC::Metadata::VorbisComment + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

virtual ~Prototype ()
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
bool operator== (const Prototype &) const
 
bool operator== (const ::FLAC__StreamMetadata &) const
 
bool operator== (const ::FLAC__StreamMetadata *) const
 
bool operator!= (const Prototype &) const
 
bool operator!= (const ::FLAC__StreamMetadata &) const
 
bool operator!= (const ::FLAC__StreamMetadata *) const
 
+ + + + + + + + + + + + + + + + + + + + +

+Protected Member Functions

 Prototype (const Prototype &)
 
Prototype (const ::FLAC__StreamMetadata &)
 
Prototype (const ::FLAC__StreamMetadata *)
 
 Prototype (::FLAC__StreamMetadata *object, bool copy)
 
Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
Prototypeoperator= (const Prototype &)
 
Prototypeoperator= (const ::FLAC__StreamMetadata &)
 
Prototypeoperator= (const ::FLAC__StreamMetadata *)
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+ + + + + +

+Friends

+class SimpleIterator
 
+class Iterator
 
+

Detailed Description

+

Base class for all metadata block types. See the overview for more.

+

Constructor & Destructor Documentation

+ +

◆ Prototype()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::Prototype::Prototype (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protected
+
+

Constructs an object with copy control. When copy is true, behaves identically to FLAC::Metadata::Prototype::Prototype(const ::FLAC__StreamMetadata *object). When copy is false, the instance takes ownership of the pointer and the FLAC__StreamMetadata object will be freed by the destructor.

+
Assertions:
object != NULL
+ +
+
+ +

◆ ~Prototype()

+ +
+
+ + + + + +
+ + + + + + + +
virtual FLAC::Metadata::Prototype::~Prototype ()
+
+virtual
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ + + +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Prototype& FLAC::Metadata::Prototype::operator= (const ::FLAC__StreamMetadata)
+
+protected
+
+

Assign from another object. Always performs a deep copy.

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Prototype& FLAC::Metadata::Prototype::operator= (const ::FLAC__StreamMetadata)
+
+protected
+
+

Assign from another object. Always performs a deep copy.

+ +
+
+ +

◆ assign_object()

+ + + +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtual
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.png new file mode 100644 index 000000000..7e42ee51d Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Prototype.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html new file mode 100644 index 000000000..c12061ebc --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable-members.html @@ -0,0 +1,123 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::SeekTable Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::SeekTable, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::SeekTableinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
delete_point(uint32_t index)FLAC::Metadata::SeekTable
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_num_points() const (defined in FLAC::Metadata::SeekTable)FLAC::Metadata::SeekTable
get_point(uint32_t index) const (defined in FLAC::Metadata::SeekTable)FLAC::Metadata::SeekTable
get_type() constFLAC::Metadata::Prototype
insert_point(uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point)FLAC::Metadata::SeekTable
is_legal() constFLAC::Metadata::SeekTable
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const SeekTable &object) constFLAC::Metadata::SeekTableinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::SeekTableinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::SeekTableinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const SeekTable &object)FLAC::Metadata::SeekTableinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::SeekTableinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::SeekTableinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const SeekTable &object) constFLAC::Metadata::SeekTableinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::SeekTableinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::SeekTableinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
resize_points(uint32_t new_num_points)FLAC::Metadata::SeekTable
SeekTable() (defined in FLAC::Metadata::SeekTable)FLAC::Metadata::SeekTable
SeekTable(const SeekTable &object)FLAC::Metadata::SeekTableinline
SeekTable(const ::FLAC__StreamMetadata &object)FLAC::Metadata::SeekTableinline
SeekTable(const ::FLAC__StreamMetadata *object)FLAC::Metadata::SeekTableinline
SeekTable(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::SeekTableinline
set_is_last(bool)FLAC::Metadata::Prototype
set_point(uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point)FLAC::Metadata::SeekTable
template_append_placeholders(uint32_t num)FLAC::Metadata::SeekTable
template_append_point(FLAC__uint64 sample_number)FLAC::Metadata::SeekTable
template_append_points(FLAC__uint64 sample_numbers[], uint32_t num)FLAC::Metadata::SeekTable
template_append_spaced_points(uint32_t num, FLAC__uint64 total_samples)FLAC::Metadata::SeekTable
template_append_spaced_points_by_samples(uint32_t samples, FLAC__uint64 total_samples)FLAC::Metadata::SeekTable
template_sort(bool compact)FLAC::Metadata::SeekTable
~Prototype()FLAC::Metadata::Prototypevirtual
~SeekTable() (defined in FLAC::Metadata::SeekTable)FLAC::Metadata::SeekTable
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.html new file mode 100644 index 000000000..9a0622f4b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.html @@ -0,0 +1,1054 @@ + + + + + + + +FLAC: FLAC::Metadata::SeekTable Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::SeekTable:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 SeekTable (::FLAC__StreamMetadata *object, bool copy)
 
SeekTableassign (::FLAC__StreamMetadata *object, bool copy)
 
+uint32_t get_num_points () const
 
+::FLAC__StreamMetadata_SeekPoint get_point (uint32_t index) const
 
bool resize_points (uint32_t new_num_points)
 
void set_point (uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point)
 
bool insert_point (uint32_t index, const ::FLAC__StreamMetadata_SeekPoint &point)
 
bool delete_point (uint32_t index)
 
bool is_legal () const
 
bool template_append_placeholders (uint32_t num)
 
bool template_append_point (FLAC__uint64 sample_number)
 
bool template_append_points (FLAC__uint64 sample_numbers[], uint32_t num)
 
bool template_append_spaced_points (uint32_t num, FLAC__uint64 total_samples)
 
bool template_append_spaced_points_by_samples (uint32_t samples, FLAC__uint64 total_samples)
 
bool template_sort (bool compact)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 SeekTable (const SeekTable &object)
 
 SeekTable (const ::FLAC__StreamMetadata &object)
 
 SeekTable (const ::FLAC__StreamMetadata *object)
 
SeekTableoperator= (const SeekTable &object)
 
SeekTableoperator= (const ::FLAC__StreamMetadata &object)
 
SeekTableoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const SeekTable &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const SeekTable &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

SEEKTABLE metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ SeekTable() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::SeekTable::SeekTable (const SeekTableobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ SeekTable() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::SeekTable::SeekTable (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ SeekTable() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::SeekTable::SeekTable (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ SeekTable() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::SeekTable::SeekTable (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
SeekTable& FLAC::Metadata::SeekTable::operator= (const SeekTableobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
SeekTable& FLAC::Metadata::SeekTable::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
SeekTable& FLAC::Metadata::SeekTable::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
SeekTable& FLAC::Metadata::SeekTable::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator== (const SeekTableobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator!= (const SeekTableobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ resize_points()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::resize_points (uint32_t new_num_points)
+
+
+ +

◆ set_point()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void FLAC::Metadata::SeekTable::set_point (uint32_t index,
const ::FLAC__StreamMetadata_SeekPointpoint 
)
+
+
+ +

◆ insert_point()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SeekTable::insert_point (uint32_t index,
const ::FLAC__StreamMetadata_SeekPointpoint 
)
+
+
+ +

◆ delete_point()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::delete_point (uint32_t index)
+
+
+ +

◆ is_legal()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SeekTable::is_legal () const
+
+
+ +

◆ template_append_placeholders()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::template_append_placeholders (uint32_t num)
+
+
+ +

◆ template_append_point()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::template_append_point (FLAC__uint64 sample_number)
+
+
+ +

◆ template_append_points()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SeekTable::template_append_points (FLAC__uint64 sample_numbers[],
uint32_t num 
)
+
+
+ +

◆ template_append_spaced_points()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SeekTable::template_append_spaced_points (uint32_t num,
FLAC__uint64 total_samples 
)
+
+
+ +

◆ template_append_spaced_points_by_samples()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SeekTable::template_append_spaced_points_by_samples (uint32_t samples,
FLAC__uint64 total_samples 
)
+
+
+ +

◆ template_sort()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SeekTable::template_sort (bool compact)
+
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.png new file mode 100644 index 000000000..b70131d54 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SeekTable.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html new file mode 100644 index 000000000..110ebd270 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator-members.html @@ -0,0 +1,96 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::SimpleIterator Member List
+
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html new file mode 100644 index 000000000..64ca94315 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator.html @@ -0,0 +1,465 @@ + + + + + + + +FLAC: FLAC::Metadata::SimpleIterator Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+ + + + +

+Classes

class  Status
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

bool is_valid () const
 
bool init (const char *filename, bool read_only, bool preserve_file_stats)
 
Status status ()
 
bool is_writable () const
 
bool next ()
 
bool prev ()
 
bool is_last () const
 
off_t get_block_offset () const
 
::FLAC__MetadataType get_block_type () const
 
uint32_t get_block_length () const
 
bool get_application_id (FLAC__byte *id)
 
Prototypeget_block ()
 
bool set_block (Prototype *block, bool use_padding=true)
 
bool insert_block_after (Prototype *block, bool use_padding=true)
 
bool delete_block (bool use_padding=true)
 
+ + + +

+Protected Member Functions

+void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__Metadata_SimpleIteratoriterator_
 
+

Detailed Description

+

This class is a wrapper around the FLAC__metadata_simple_iterator structures and methods; see the usage guide and FLAC__Metadata_SimpleIterator.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SimpleIterator::is_valid () const
+
+ +

Returns true iff object was properly constructed.

+ +
+
+ +

◆ init()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SimpleIterator::init (const char * filename,
bool read_only,
bool preserve_file_stats 
)
+
+
+ +

◆ status()

+ +
+
+ + + + + + + +
Status FLAC::Metadata::SimpleIterator::status ()
+
+
+ +

◆ is_writable()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SimpleIterator::is_writable () const
+
+
+ +

◆ next()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SimpleIterator::next ()
+
+
+ +

◆ prev()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SimpleIterator::prev ()
+
+
+ +

◆ is_last()

+ +
+
+ + + + + + + +
bool FLAC::Metadata::SimpleIterator::is_last () const
+
+
+ +

◆ get_block_offset()

+ +
+
+ + + + + + + +
off_t FLAC::Metadata::SimpleIterator::get_block_offset () const
+
+
+ +

◆ get_block_type()

+ +
+
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::SimpleIterator::get_block_type () const
+
+
+ +

◆ get_block_length()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::SimpleIterator::get_block_length () const
+
+
+ +

◆ get_application_id()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SimpleIterator::get_application_id (FLAC__byte * id)
+
+
+ +

◆ get_block()

+ +
+
+ + + + + + + +
Prototype* FLAC::Metadata::SimpleIterator::get_block ()
+
+
+ +

◆ set_block()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SimpleIterator::set_block (Prototypeblock,
bool use_padding = true 
)
+
+
+ +

◆ insert_block_after()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::SimpleIterator::insert_block_after (Prototypeblock,
bool use_padding = true 
)
+
+
+ +

◆ delete_block()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::SimpleIterator::delete_block (bool use_padding = true)
+
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html new file mode 100644 index 000000000..8f7b53c9b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status-members.html @@ -0,0 +1,81 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::SimpleIterator::Status Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::SimpleIterator::Status, including all inherited members.

+ + + + + +
as_cstring() const (defined in FLAC::Metadata::SimpleIterator::Status)FLAC::Metadata::SimpleIterator::Statusinline
operator::FLAC__Metadata_SimpleIteratorStatus() const (defined in FLAC::Metadata::SimpleIterator::Status)FLAC::Metadata::SimpleIterator::Statusinline
Status(::FLAC__Metadata_SimpleIteratorStatus status) (defined in FLAC::Metadata::SimpleIterator::Status)FLAC::Metadata::SimpleIterator::Statusinline
status_ (defined in FLAC::Metadata::SimpleIterator::Status)FLAC::Metadata::SimpleIterator::Statusprotected
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html new file mode 100644 index 000000000..1873a118d --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1SimpleIterator_1_1Status.html @@ -0,0 +1,104 @@ + + + + + + + +FLAC: FLAC::Metadata::SimpleIterator::Status Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Metadata::SimpleIterator::Status Class Reference
+
+
+ +

#include <metadata.h>

+ + + + + + + + +

+Public Member Functions

Status (::FLAC__Metadata_SimpleIteratorStatus status)
 
operator::FLAC__Metadata_SimpleIteratorStatus () const
 
+const char * as_cstring () const
 
+ + + +

+Protected Attributes

+::FLAC__Metadata_SimpleIteratorStatus status_
 
+

Detailed Description

+

This class is a wrapper around FLAC__Metadata_SimpleIteratorStatus.

+

The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html new file mode 100644 index 000000000..076de8bd2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo-members.html @@ -0,0 +1,128 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::StreamInfo Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::StreamInfo, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::StreamInfoinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_bits_per_sample() constFLAC::Metadata::StreamInfo
get_channels() constFLAC::Metadata::StreamInfo
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_max_blocksize() constFLAC::Metadata::StreamInfo
get_max_framesize() constFLAC::Metadata::StreamInfo
get_md5sum() constFLAC::Metadata::StreamInfo
get_min_blocksize() constFLAC::Metadata::StreamInfo
get_min_framesize() constFLAC::Metadata::StreamInfo
get_sample_rate() constFLAC::Metadata::StreamInfo
get_total_samples() constFLAC::Metadata::StreamInfo
get_type() constFLAC::Metadata::Prototype
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const StreamInfo &object) constFLAC::Metadata::StreamInfoinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::StreamInfoinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::StreamInfoinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const StreamInfo &object)FLAC::Metadata::StreamInfoinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::StreamInfoinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::StreamInfoinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const StreamInfo &object) constFLAC::Metadata::StreamInfoinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::StreamInfoinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::StreamInfoinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_bits_per_sample(uint32_t value)FLAC::Metadata::StreamInfo
set_channels(uint32_t value)FLAC::Metadata::StreamInfo
set_is_last(bool)FLAC::Metadata::Prototype
set_max_blocksize(uint32_t value)FLAC::Metadata::StreamInfo
set_max_framesize(uint32_t value)FLAC::Metadata::StreamInfo
set_md5sum(const FLAC__byte value[16])FLAC::Metadata::StreamInfo
set_min_blocksize(uint32_t value)FLAC::Metadata::StreamInfo
set_min_framesize(uint32_t value)FLAC::Metadata::StreamInfo
set_sample_rate(uint32_t value)FLAC::Metadata::StreamInfo
set_total_samples(FLAC__uint64 value)FLAC::Metadata::StreamInfo
StreamInfo() (defined in FLAC::Metadata::StreamInfo)FLAC::Metadata::StreamInfo
StreamInfo(const StreamInfo &object)FLAC::Metadata::StreamInfoinline
StreamInfo(const ::FLAC__StreamMetadata &object)FLAC::Metadata::StreamInfoinline
StreamInfo(const ::FLAC__StreamMetadata *object)FLAC::Metadata::StreamInfoinline
StreamInfo(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::StreamInfoinline
~Prototype()FLAC::Metadata::Prototypevirtual
~StreamInfo() (defined in FLAC::Metadata::StreamInfo)FLAC::Metadata::StreamInfo
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html new file mode 100644 index 000000000..5bc3e0ee3 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.html @@ -0,0 +1,1127 @@ + + + + + + + +FLAC: FLAC::Metadata::StreamInfo Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::StreamInfo:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 StreamInfo (::FLAC__StreamMetadata *object, bool copy)
 
StreamInfoassign (::FLAC__StreamMetadata *object, bool copy)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 StreamInfo (const StreamInfo &object)
 
 StreamInfo (const ::FLAC__StreamMetadata &object)
 
 StreamInfo (const ::FLAC__StreamMetadata *object)
 
StreamInfooperator= (const StreamInfo &object)
 
StreamInfooperator= (const ::FLAC__StreamMetadata &object)
 
StreamInfooperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const StreamInfo &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const StreamInfo &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
uint32_t get_min_blocksize () const
 
uint32_t get_max_blocksize () const
 
uint32_t get_min_framesize () const
 
uint32_t get_max_framesize () const
 
uint32_t get_sample_rate () const
 
uint32_t get_channels () const
 
uint32_t get_bits_per_sample () const
 
FLAC__uint64 get_total_samples () const
 
const FLAC__byte * get_md5sum () const
 
void set_min_blocksize (uint32_t value)
 
void set_max_blocksize (uint32_t value)
 
void set_min_framesize (uint32_t value)
 
void set_max_framesize (uint32_t value)
 
void set_sample_rate (uint32_t value)
 
void set_channels (uint32_t value)
 
void set_bits_per_sample (uint32_t value)
 
void set_total_samples (FLAC__uint64 value)
 
void set_md5sum (const FLAC__byte value[16])
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

STREAMINFO metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ StreamInfo() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::StreamInfo::StreamInfo (const StreamInfoobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ StreamInfo() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::StreamInfo::StreamInfo (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ StreamInfo() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::StreamInfo::StreamInfo (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ StreamInfo() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::StreamInfo::StreamInfo (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
StreamInfo& FLAC::Metadata::StreamInfo::operator= (const StreamInfoobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
StreamInfo& FLAC::Metadata::StreamInfo::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
StreamInfo& FLAC::Metadata::StreamInfo::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
StreamInfo& FLAC::Metadata::StreamInfo::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator== (const StreamInfoobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator!= (const StreamInfoobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::StreamInfo::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ get_min_blocksize()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_min_blocksize () const
+
+
+ +

◆ get_max_blocksize()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_max_blocksize () const
+
+
+ +

◆ get_min_framesize()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_min_framesize () const
+
+
+ +

◆ get_max_framesize()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_max_framesize () const
+
+
+ +

◆ get_sample_rate()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_sample_rate () const
+
+
+ +

◆ get_channels()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_channels () const
+
+
+ +

◆ get_bits_per_sample()

+ +
+
+ + + + + + + +
uint32_t FLAC::Metadata::StreamInfo::get_bits_per_sample () const
+
+
+ +

◆ get_total_samples()

+ +
+
+ + + + + + + +
FLAC__uint64 FLAC::Metadata::StreamInfo::get_total_samples () const
+
+
+ +

◆ get_md5sum()

+ +
+
+ + + + + + + +
const FLAC__byte* FLAC::Metadata::StreamInfo::get_md5sum () const
+
+
+ +

◆ set_min_blocksize()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_min_blocksize (uint32_t value)
+
+
+ +

◆ set_max_blocksize()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_max_blocksize (uint32_t value)
+
+
+ +

◆ set_min_framesize()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_min_framesize (uint32_t value)
+
+
+ +

◆ set_max_framesize()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_max_framesize (uint32_t value)
+
+
+ +

◆ set_sample_rate()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_sample_rate (uint32_t value)
+
+
+ +

◆ set_channels()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_channels (uint32_t value)
+
+
+ +

◆ set_bits_per_sample()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_bits_per_sample (uint32_t value)
+
+
+ +

◆ set_total_samples()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_total_samples (FLAC__uint64 value)
+
+
+ +

◆ set_md5sum()

+ +
+
+ + + + + + + + +
void FLAC::Metadata::StreamInfo::set_md5sum (const FLAC__byte value[16])
+
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png new file mode 100644 index 000000000..a60891989 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1StreamInfo.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html new file mode 100644 index 000000000..222eca9f9 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown-members.html @@ -0,0 +1,113 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::Unknown Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::Unknown, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Unknowninline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
get_data() const (defined in FLAC::Metadata::Unknown)FLAC::Metadata::Unknown
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_type() constFLAC::Metadata::Prototype
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const Unknown &object) constFLAC::Metadata::Unknowninline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Unknowninline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Unknowninline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const Unknown &object)FLAC::Metadata::Unknowninline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Unknowninline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Unknowninline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const Unknown &object) constFLAC::Metadata::Unknowninline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::Unknowninline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::Unknowninline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
set_data(const FLAC__byte *data, uint32_t length)FLAC::Metadata::Unknown
set_data(FLAC__byte *data, uint32_t length, bool copy) (defined in FLAC::Metadata::Unknown)FLAC::Metadata::Unknown
set_is_last(bool)FLAC::Metadata::Prototype
Unknown() (defined in FLAC::Metadata::Unknown)FLAC::Metadata::Unknown
Unknown(const Unknown &object)FLAC::Metadata::Unknowninline
Unknown(const ::FLAC__StreamMetadata &object)FLAC::Metadata::Unknowninline
Unknown(const ::FLAC__StreamMetadata *object)FLAC::Metadata::Unknowninline
Unknown(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Unknowninline
~Prototype()FLAC::Metadata::Prototypevirtual
~Unknown() (defined in FLAC::Metadata::Unknown)FLAC::Metadata::Unknown
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.html new file mode 100644 index 000000000..f95b2da76 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.html @@ -0,0 +1,795 @@ + + + + + + + +FLAC: FLAC::Metadata::Unknown Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::Unknown:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 Unknown (::FLAC__StreamMetadata *object, bool copy)
 
Unknownassign (::FLAC__StreamMetadata *object, bool copy)
 
+const FLAC__byte * get_data () const
 
bool set_data (const FLAC__byte *data, uint32_t length)
 
+bool set_data (FLAC__byte *data, uint32_t length, bool copy)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 Unknown (const Unknown &object)
 
 Unknown (const ::FLAC__StreamMetadata &object)
 
 Unknown (const ::FLAC__StreamMetadata *object)
 
Unknownoperator= (const Unknown &object)
 
Unknownoperator= (const ::FLAC__StreamMetadata &object)
 
Unknownoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const Unknown &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const Unknown &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

Opaque metadata block for storing unknown types. This should not be used unless you know what you are doing; it is currently used only internally to support forward compatibility of metadata blocks. See the overview for more,

+

Constructor & Destructor Documentation

+ +

◆ Unknown() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Unknown::Unknown (const Unknownobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Unknown() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Unknown::Unknown (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Unknown() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Unknown::Unknown (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ Unknown() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::Unknown::Unknown (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Unknown& FLAC::Metadata::Unknown::operator= (const Unknownobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Unknown& FLAC::Metadata::Unknown::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
Unknown& FLAC::Metadata::Unknown::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Unknown& FLAC::Metadata::Unknown::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator== (const Unknownobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator!= (const Unknownobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Unknown::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ set_data()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::Unknown::set_data (const FLAC__byte * data,
uint32_t length 
)
+
+ +

This form always copies data.

+ +
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.png new file mode 100644 index 000000000..fe2edd733 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1Unknown.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html new file mode 100644 index 000000000..8cc16f7d8 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment-members.html @@ -0,0 +1,123 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::VorbisComment Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::VorbisComment, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
append_comment(const Entry &entry)FLAC::Metadata::VorbisComment
assign(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::VorbisCommentinline
assign_object(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
clear()FLAC::Metadata::Prototypeprotectedvirtual
delete_comment(uint32_t index)FLAC::Metadata::VorbisComment
find_entry_from(uint32_t offset, const char *field_name)FLAC::Metadata::VorbisComment
get_comment(uint32_t index) const (defined in FLAC::Metadata::VorbisComment)FLAC::Metadata::VorbisComment
get_is_last() constFLAC::Metadata::Prototype
get_length() constFLAC::Metadata::Prototype
get_num_comments() const (defined in FLAC::Metadata::VorbisComment)FLAC::Metadata::VorbisComment
get_type() constFLAC::Metadata::Prototype
get_vendor_string() const (defined in FLAC::Metadata::VorbisComment)FLAC::Metadata::VorbisComment
insert_comment(uint32_t index, const Entry &entry)FLAC::Metadata::VorbisComment
is_valid() constFLAC::Metadata::Prototypeinline
object_ (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
operator const ::FLAC__StreamMetadata *() constFLAC::Metadata::Prototypeinline
operator!=(const VorbisComment &object) constFLAC::Metadata::VorbisCommentinline
operator!=(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::VorbisCommentinline
operator!=(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::VorbisCommentinline
FLAC::Metadata::Prototype::operator!=(const Prototype &) constFLAC::Metadata::Prototypeinline
operator=(const VorbisComment &object)FLAC::Metadata::VorbisCommentinline
operator=(const ::FLAC__StreamMetadata &object)FLAC::Metadata::VorbisCommentinline
operator=(const ::FLAC__StreamMetadata *object)FLAC::Metadata::VorbisCommentinline
FLAC::Metadata::Prototype::operator=(const Prototype &)FLAC::Metadata::Prototypeprotected
operator==(const VorbisComment &object) constFLAC::Metadata::VorbisCommentinline
operator==(const ::FLAC__StreamMetadata &object) constFLAC::Metadata::VorbisCommentinline
operator==(const ::FLAC__StreamMetadata *object) constFLAC::Metadata::VorbisCommentinline
FLAC::Metadata::Prototype::operator==(const Prototype &) constFLAC::Metadata::Prototypeinline
Prototype(const Prototype &)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata &) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(const ::FLAC__StreamMetadata *) (defined in FLAC::Metadata::Prototype)FLAC::Metadata::Prototypeprotected
Prototype(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::Prototypeprotected
remove_entries_matching(const char *field_name)FLAC::Metadata::VorbisComment
remove_entry_matching(const char *field_name)FLAC::Metadata::VorbisComment
replace_comment(const Entry &entry, bool all)FLAC::Metadata::VorbisComment
resize_comments(uint32_t new_num_comments)FLAC::Metadata::VorbisComment
set_comment(uint32_t index, const Entry &entry)FLAC::Metadata::VorbisComment
set_is_last(bool)FLAC::Metadata::Prototype
set_vendor_string(const FLAC__byte *string)FLAC::Metadata::VorbisComment
VorbisComment() (defined in FLAC::Metadata::VorbisComment)FLAC::Metadata::VorbisComment
VorbisComment(const VorbisComment &object)FLAC::Metadata::VorbisCommentinline
VorbisComment(const ::FLAC__StreamMetadata &object)FLAC::Metadata::VorbisCommentinline
VorbisComment(const ::FLAC__StreamMetadata *object)FLAC::Metadata::VorbisCommentinline
VorbisComment(::FLAC__StreamMetadata *object, bool copy)FLAC::Metadata::VorbisCommentinline
~Prototype()FLAC::Metadata::Prototypevirtual
~VorbisComment() (defined in FLAC::Metadata::VorbisComment)FLAC::Metadata::VorbisComment
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html new file mode 100644 index 000000000..999c8c44e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.html @@ -0,0 +1,1032 @@ + + + + + + + +FLAC: FLAC::Metadata::VorbisComment Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+ +
+ +

#include <metadata.h>

+
+Inheritance diagram for FLAC::Metadata::VorbisComment:
+
+
+ + +FLAC::Metadata::Prototype + +
+ + + + +

+Classes

class  Entry
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

 VorbisComment (::FLAC__StreamMetadata *object, bool copy)
 
VorbisCommentassign (::FLAC__StreamMetadata *object, bool copy)
 
+uint32_t get_num_comments () const
 
+const FLAC__byte * get_vendor_string () const
 
+Entry get_comment (uint32_t index) const
 
bool set_vendor_string (const FLAC__byte *string)
 
bool resize_comments (uint32_t new_num_comments)
 
bool set_comment (uint32_t index, const Entry &entry)
 
bool insert_comment (uint32_t index, const Entry &entry)
 
bool append_comment (const Entry &entry)
 
bool replace_comment (const Entry &entry, bool all)
 
bool delete_comment (uint32_t index)
 
int find_entry_from (uint32_t offset, const char *field_name)
 
int remove_entry_matching (const char *field_name)
 
int remove_entries_matching (const char *field_name)
 
bool is_valid () const
 
bool get_is_last () const
 
::FLAC__MetadataType get_type () const
 
uint32_t get_length () const
 
void set_is_last (bool)
 
 operator const ::FLAC__StreamMetadata * () const
 
 VorbisComment (const VorbisComment &object)
 
 VorbisComment (const ::FLAC__StreamMetadata &object)
 
 VorbisComment (const ::FLAC__StreamMetadata *object)
 
VorbisCommentoperator= (const VorbisComment &object)
 
VorbisCommentoperator= (const ::FLAC__StreamMetadata &object)
 
VorbisCommentoperator= (const ::FLAC__StreamMetadata *object)
 
bool operator== (const VorbisComment &object) const
 
bool operator== (const ::FLAC__StreamMetadata &object) const
 
bool operator== (const ::FLAC__StreamMetadata *object) const
 
bool operator!= (const VorbisComment &object) const
 
bool operator!= (const ::FLAC__StreamMetadata &object) const
 
bool operator!= (const ::FLAC__StreamMetadata *object) const
 
bool operator== (const Prototype &) const
 
bool operator!= (const Prototype &) const
 
+ + + + + +

+Protected Member Functions

Prototypeassign_object (::FLAC__StreamMetadata *object, bool copy)
 
virtual void clear ()
 
+ + + +

+Protected Attributes

+::FLAC__StreamMetadataobject_
 
+

Detailed Description

+

VORBIS_COMMENT metadata block. See the overview for more, and the format specification.

+

Constructor & Destructor Documentation

+ +

◆ VorbisComment() [1/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::VorbisComment::VorbisComment (const VorbisCommentobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ VorbisComment() [2/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::VorbisComment::VorbisComment (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ VorbisComment() [3/4]

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::VorbisComment::VorbisComment (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+ +

◆ VorbisComment() [4/4]

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
FLAC::Metadata::VorbisComment::VorbisComment (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+

Constructs an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).

+ +
+
+

Member Function Documentation

+ +

◆ operator=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
VorbisComment& FLAC::Metadata::VorbisComment::operator= (const VorbisCommentobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
VorbisComment& FLAC::Metadata::VorbisComment::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ operator=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
VorbisComment& FLAC::Metadata::VorbisComment::operator= (const ::FLAC__StreamMetadataobject)
+
+inline
+
+

Assign from another object. Always performs a deep copy.

+ +

References FLAC::Metadata::Prototype::operator=().

+ +
+
+ +

◆ assign()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
VorbisComment& FLAC::Metadata::VorbisComment::assign (::FLAC__StreamMetadataobject,
bool copy 
)
+
+inline
+
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator== (const VorbisCommentobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator!= (const VorbisCommentobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +

References FLAC::Metadata::Prototype::operator!=().

+ +
+
+ +

◆ set_vendor_string()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::set_vendor_string (const FLAC__byte * string)
+
+
+ +

◆ resize_comments()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::resize_comments (uint32_t new_num_comments)
+
+
+ +

◆ set_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::VorbisComment::set_comment (uint32_t index,
const Entryentry 
)
+
+
+ +

◆ insert_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::VorbisComment::insert_comment (uint32_t index,
const Entryentry 
)
+
+
+ +

◆ append_comment()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::append_comment (const Entryentry)
+
+
+ +

◆ replace_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::VorbisComment::replace_comment (const Entryentry,
bool all 
)
+
+
+ +

◆ delete_comment()

+ +
+
+ + + + + + + + +
bool FLAC::Metadata::VorbisComment::delete_comment (uint32_t index)
+
+
+ +

◆ find_entry_from()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int FLAC::Metadata::VorbisComment::find_entry_from (uint32_t offset,
const char * field_name 
)
+
+
+ +

◆ remove_entry_matching()

+ +
+
+ + + + + + + + +
int FLAC::Metadata::VorbisComment::remove_entry_matching (const char * field_name)
+
+
+ +

◆ remove_entries_matching()

+ +
+
+ + + + + + + + +
int FLAC::Metadata::VorbisComment::remove_entries_matching (const char * field_name)
+
+
+ +

◆ assign_object()

+ +
+
+ + + + + +
+ + + + + + + + + + + + + + + + + + +
Prototype& FLAC::Metadata::Prototype::assign_object (::FLAC__StreamMetadataobject,
bool copy 
)
+
+protectedinherited
+
+
+ +

◆ clear()

+ +
+
+ + + + + +
+ + + + + + + +
virtual void FLAC::Metadata::Prototype::clear ()
+
+protectedvirtualinherited
+
+

Deletes the underlying FLAC__StreamMetadata object.

+ +
+
+ +

◆ get_is_last()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::get_is_last () const
+
+inherited
+
+

Returns true if this block is the last block in a stream, else false.

+
Assertions:
+ +
+
+ +

◆ get_type()

+ +
+
+ + + + + +
+ + + + + + + +
::FLAC__MetadataType FLAC::Metadata::Prototype::get_type () const
+
+inherited
+
+

Returns the type of the block.

+
Assertions:
+ +
+
+ +

◆ get_length()

+ +
+
+ + + + + +
+ + + + + + + +
uint32_t FLAC::Metadata::Prototype::get_length () const
+
+inherited
+
+

Returns the stream length of the metadata block.

+
Note
The length does not include the metadata block header, per spec.
+
Assertions:
+ +
+
+ +

◆ set_is_last()

+ +
+
+ + + + + +
+ + + + + + + + +
void FLAC::Metadata::Prototype::set_is_last (bool )
+
+inherited
+
+

Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.

+
Assertions:
+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png new file mode 100644 index 000000000..58b91eab1 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html new file mode 100644 index 000000000..d13d435a1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry-members.html @@ -0,0 +1,104 @@ + + + + + + + +FLAC: Member List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC::Metadata::VorbisComment::Entry Member List
+
+
+ +

This is the complete list of members for FLAC::Metadata::VorbisComment::Entry, including all inherited members.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Entry() (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
Entry(const char *field, uint32_t field_length) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
Entry(const char *field) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
Entry(const char *field_name, const char *field_value, uint32_t field_value_length) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
Entry(const char *field_name, const char *field_value) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
Entry(const Entry &entry) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
entry_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
field_name_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
field_name_length_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
field_value_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
field_value_length_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
get_entry() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field_length() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field_name() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field_name_length() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field_value() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
get_field_value_length() const (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
is_valid() constFLAC::Metadata::VorbisComment::Entryvirtual
is_valid_ (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryprotected
operator=(const Entry &entry) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
set_field(const char *field, uint32_t field_length) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
set_field(const char *field) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
set_field_name(const char *field_name) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
set_field_value(const char *field_value, uint32_t field_value_length) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
set_field_value(const char *field_value) (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entry
~Entry() (defined in FLAC::Metadata::VorbisComment::Entry)FLAC::Metadata::VorbisComment::Entryvirtual
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html new file mode 100644 index 000000000..1e6abcb0f --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classFLAC_1_1Metadata_1_1VorbisComment_1_1Entry.html @@ -0,0 +1,198 @@ + + + + + + + +FLAC: FLAC::Metadata::VorbisComment::Entry Class Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
FLAC::Metadata::VorbisComment::Entry Class Reference
+
+
+ +

#include <metadata.h>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Public Member Functions

Entry (const char *field, uint32_t field_length)
 
Entry (const char *field)
 
Entry (const char *field_name, const char *field_value, uint32_t field_value_length)
 
Entry (const char *field_name, const char *field_value)
 
Entry (const Entry &entry)
 
+Entryoperator= (const Entry &entry)
 
virtual bool is_valid () const
 
+uint32_t get_field_length () const
 
+uint32_t get_field_name_length () const
 
+uint32_t get_field_value_length () const
 
+::FLAC__StreamMetadata_VorbisComment_Entry get_entry () const
 
+const char * get_field () const
 
+const char * get_field_name () const
 
+const char * get_field_value () const
 
+bool set_field (const char *field, uint32_t field_length)
 
+bool set_field (const char *field)
 
+bool set_field_name (const char *field_name)
 
+bool set_field_value (const char *field_value, uint32_t field_value_length)
 
+bool set_field_value (const char *field_value)
 
+ + + + + + + + + + + + + +

+Protected Attributes

+bool is_valid_
 
+::FLAC__StreamMetadata_VorbisComment_Entry entry_
 
+char * field_name_
 
+uint32_t field_name_length_
 
+char * field_value_
 
+uint32_t field_value_length_
 
+

Detailed Description

+

Convenience class for encapsulating Vorbis comment entries. An entry is a vendor string or a comment field. In the case of a vendor string, the field name is undefined; only the field value is relevant.

+

A field as used in the methods refers to an entire 'NAME=VALUE' string; for convenience the string is NUL-terminated. A length field is required in the unlikely event that the value contains contain embedded NULs.

+

A field_name is what is on the left side of the first '=' in the field. By definition it is ASCII and so is NUL-terminated and does not require a length to describe it. field_name is undefined for a vendor string entry.

+

A field_value is what is on the right side of the first '=' in the field. By definition, this may contain embedded NULs and so a field_value_length is required to describe it. However in practice, embedded NULs are not known to be used, so it is generally safe to treat field values as NUL- terminated UTF-8 strings.

+

Always check is_valid() after the constructor or operator= to make sure memory was properly allocated and that the Entry conforms to the Vorbis comment specification.

+

Member Function Documentation

+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
virtual bool FLAC::Metadata::VorbisComment::Entry::is_valid () const
+
+virtual
+
+ +

Returns true iff object was properly constructed.

+ +
+
+
The documentation for this class was generated from the following file: +
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/classes.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classes.html new file mode 100644 index 000000000..0fd9b2811 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/classes.html @@ -0,0 +1,101 @@ + + + + + + + +FLAC: Class Index + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Class Index
+
+
+
a | c | e | f | i | p | s | t | u | v
+ + + + + + + + + + + + + + + + + + +
  a  
+
FLAC__EntropyCodingMethod   FLAC__StreamMetadata_Padding   
  p  
+
SimpleIterator::Status (FLAC::Metadata)   
FLAC__EntropyCodingMethod_PartitionedRice   FLAC__StreamMetadata_Picture   StreamInfo (FLAC::Metadata)   
Application (FLAC::Metadata)   FLAC__EntropyCodingMethod_PartitionedRiceContents   FLAC__StreamMetadata_SeekPoint   Padding (FLAC::Metadata)   
  t  
+
  c  
+
FLAC__Frame   FLAC__StreamMetadata_SeekTable   Picture (FLAC::Metadata)   
FLAC__FrameFooter   FLAC__StreamMetadata_StreamInfo   Prototype (FLAC::Metadata)   CueSheet::Track (FLAC::Metadata)   
Chain (FLAC::Metadata)   FLAC__FrameHeader   FLAC__StreamMetadata_Unknown   
  s  
+
  u  
+
CueSheet (FLAC::Metadata)   FLAC__IOCallbacks   FLAC__StreamMetadata_VorbisComment   
  e  
+
FLAC__StreamDecoder   FLAC__StreamMetadata_VorbisComment_Entry   Stream (FLAC::Decoder)   Unknown (FLAC::Metadata)   
FLAC__StreamEncoder   FLAC__Subframe   Stream::State (FLAC::Decoder)   
  v  
+
VorbisComment::Entry (FLAC::Metadata)   FLAC__StreamMetadata   FLAC__Subframe_Constant   Stream (FLAC::Encoder)   
  f  
+
FLAC__StreamMetadata_Application   FLAC__Subframe_Fixed   Stream::State (FLAC::Encoder)   VorbisComment (FLAC::Metadata)   
FLAC__StreamMetadata_CueSheet   FLAC__Subframe_LPC   Chain::Status (FLAC::Metadata)   
File (FLAC::Decoder)   FLAC__StreamMetadata_CueSheet_Index   FLAC__Subframe_Verbatim   SeekTable (FLAC::Metadata)   
File (FLAC::Encoder)   FLAC__StreamMetadata_CueSheet_Track   
  i  
+
SimpleIterator (FLAC::Metadata)   
Iterator (FLAC::Metadata)   
+
a | c | e | f | i | p | s | t | u | v
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/closed.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/closed.png new file mode 100644 index 000000000..98cc2c909 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/closed.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h.html new file mode 100644 index 000000000..b5dba58e1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h.html @@ -0,0 +1,94 @@ + + + + + + + +FLAC: include/FLAC++/decoder.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
decoder.h File Reference
+
+
+
#include "export.h"
+#include <string>
+#include "FLAC/stream_decoder.h"
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  FLAC::Decoder::Stream
 
class  FLAC::Decoder::Stream::State
 
class  FLAC::Decoder::File
 
+

Detailed Description

+

This module contains the classes which implement the various decoders.

+

See the detailed documentation in the decoder module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h_source.html new file mode 100644 index 000000000..edc4e37c5 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/decoder_8h_source.html @@ -0,0 +1,95 @@ + + + + + + + +FLAC: include/FLAC++/decoder.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
decoder.h
+
+
+Go to the documentation of this file.
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLACPP__DECODER_H
34 #define FLACPP__DECODER_H
35 
36 #include "export.h"
37 
38 #include <string>
39 #include "FLAC/stream_decoder.h"
40 
41 
78 namespace FLAC {
79  namespace Decoder {
80 
100  class FLACPP_API Stream {
101  public:
104  class FLACPP_API State {
105  public:
106  inline State(::FLAC__StreamDecoderState state): state_(state) { }
107  inline operator ::FLAC__StreamDecoderState() const { return state_; }
108  inline const char *as_cstring() const { return ::FLAC__StreamDecoderStateString[state_]; }
109  inline const char *resolved_as_cstring(const Stream &decoder) const { return ::FLAC__stream_decoder_get_resolved_state_string(decoder.decoder_); }
110  protected:
112  };
113 
114  Stream();
115  virtual ~Stream();
116 
118 
121  virtual bool is_valid() const;
122  inline operator bool() const { return is_valid(); }
123 
124 
125  virtual bool set_ogg_serial_number(long value);
126  virtual bool set_md5_checking(bool value);
127  virtual bool set_metadata_respond(::FLAC__MetadataType type);
128  virtual bool set_metadata_respond_application(const FLAC__byte id[4]);
129  virtual bool set_metadata_respond_all();
130  virtual bool set_metadata_ignore(::FLAC__MetadataType type);
131  virtual bool set_metadata_ignore_application(const FLAC__byte id[4]);
132  virtual bool set_metadata_ignore_all();
133 
134  /* get_state() is not virtual since we want subclasses to be able to return their own state */
135  State get_state() const;
136  virtual bool get_md5_checking() const;
137  virtual FLAC__uint64 get_total_samples() const;
138  virtual uint32_t get_channels() const;
139  virtual ::FLAC__ChannelAssignment get_channel_assignment() const;
140  virtual uint32_t get_bits_per_sample() const;
141  virtual uint32_t get_sample_rate() const;
142  virtual uint32_t get_blocksize() const;
143  virtual bool get_decode_position(FLAC__uint64 *position) const;
144 
147 
148  virtual bool finish();
149 
150  virtual bool flush();
151  virtual bool reset();
152 
153  virtual bool process_single();
154  virtual bool process_until_end_of_metadata();
155  virtual bool process_until_end_of_stream();
156  virtual bool skip_single_frame();
157 
158  virtual bool seek_absolute(FLAC__uint64 sample);
159  protected:
161  virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes) = 0;
162 
164  virtual ::FLAC__StreamDecoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
165 
167  virtual ::FLAC__StreamDecoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
168 
170  virtual ::FLAC__StreamDecoderLengthStatus length_callback(FLAC__uint64 *stream_length);
171 
173  virtual bool eof_callback();
174 
176  virtual ::FLAC__StreamDecoderWriteStatus write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[]) = 0;
177 
179  virtual void metadata_callback(const ::FLAC__StreamMetadata *metadata);
180 
182  virtual void error_callback(::FLAC__StreamDecoderErrorStatus status) = 0;
183 
184 #if (defined __BORLANDC__) || (defined __GNUG__ && (__GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 96))) || (defined __SUNPRO_CC)
185  // lame hack: some compilers can't see a protected decoder_ from nested State::resolved_as_cstring()
186  friend State;
187 #endif
188  ::FLAC__StreamDecoder *decoder_;
189 
190  static ::FLAC__StreamDecoderReadStatus read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
191  static ::FLAC__StreamDecoderSeekStatus seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data);
192  static ::FLAC__StreamDecoderTellStatus tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data);
193  static ::FLAC__StreamDecoderLengthStatus length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data);
194  static FLAC__bool eof_callback_(const ::FLAC__StreamDecoder *decoder, void *client_data);
195  static ::FLAC__StreamDecoderWriteStatus write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
196  static void metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data);
197  static void error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data);
198  private:
199  // Private and undefined so you can't use them:
200  Stream(const Stream &);
201  void operator=(const Stream &);
202  };
203 
223  class FLACPP_API File: public Stream {
224  public:
225  File();
226  virtual ~File();
227 
228  using Stream::init;
229  virtual ::FLAC__StreamDecoderInitStatus init(FILE *file);
230  virtual ::FLAC__StreamDecoderInitStatus init(const char *filename);
231  virtual ::FLAC__StreamDecoderInitStatus init(const std::string &filename);
232  using Stream::init_ogg;
233  virtual ::FLAC__StreamDecoderInitStatus init_ogg(FILE *file);
234  virtual ::FLAC__StreamDecoderInitStatus init_ogg(const char *filename);
235  virtual ::FLAC__StreamDecoderInitStatus init_ogg(const std::string &filename);
236  protected:
237  // this is a dummy implementation to satisfy the pure virtual in Stream that is actually supplied internally by the C layer
238  virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
239  private:
240  // Private and undefined so you can't use them:
241  File(const File &);
242  void operator=(const File &);
243  };
244 
245  }
246 }
247 
248 #endif
const char * FLAC__stream_decoder_get_resolved_state_string(const FLAC__StreamDecoder *decoder)
+
Definition: decoder.h:78
+
This class wraps the FLAC__StreamDecoder. If you are decoding from a file, FLAC::Decoder::File may be...
Definition: decoder.h:100
+
FLAC__StreamDecoderTellStatus
Definition: stream_decoder.h:348
+
const char *const FLAC__StreamDecoderStateString[]
+
FLAC__StreamDecoderErrorStatus
Definition: stream_decoder.h:427
+
Definition: stream_decoder.h:463
+
This class wraps the FLAC__StreamDecoder. If you are not decoding from a file, you may need to use FL...
Definition: decoder.h:223
+
virtual ::FLAC__StreamDecoderInitStatus init_ogg()
Seek FLAC__stream_decoder_init_ogg_stream()
+
FLAC__StreamDecoderInitStatus
Definition: stream_decoder.h:256
+
FLAC__StreamDecoderWriteStatus
Definition: stream_decoder.h:394
+
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
FLAC__MetadataType
Definition: format.h:489
+
FLAC__StreamDecoderReadStatus
Definition: stream_decoder.h:294
+
FLAC__StreamDecoderState
Definition: stream_decoder.h:202
+
FLAC__StreamDecoderLengthStatus
Definition: stream_decoder.h:371
+
FLAC__ChannelAssignment
Definition: format.h:381
+
Definition: decoder.h:104
+
virtual ::FLAC__StreamDecoderInitStatus init()
Seek FLAC__stream_decoder_init_stream()
+
FLAC__StreamDecoderSeekStatus
Definition: stream_decoder.h:325
+
This module contains the functions which implement the stream decoder.
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_1982b5890de532b4beef7221dae776e2.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_1982b5890de532b4beef7221dae776e2.html new file mode 100644 index 000000000..5b64d37e1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_1982b5890de532b4beef7221dae776e2.html @@ -0,0 +1,90 @@ + + + + + + + +FLAC: include/FLAC Directory Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC Directory Reference
+
+
+ + + + + + + + + + + + + + +

+Files

file  callback.h [code]
 
file  export.h [code]
 
file  format.h [code]
 
 
file  stream_decoder.h [code]
 
file  stream_encoder.h [code]
 
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_527642952c2881b3e5b36abb4a29ebef.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_527642952c2881b3e5b36abb4a29ebef.html new file mode 100644 index 000000000..ff3245824 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_527642952c2881b3e5b36abb4a29ebef.html @@ -0,0 +1,86 @@ + + + + + + + +FLAC: include/FLAC++ Directory Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
FLAC++ Directory Reference
+
+
+ + + + + + + + + + +

+Files

file  decoder.h [code]
 
file  encoder.h [code]
 
file  export.h [code]
 
 
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_d44c64559bbebec7f509842c48db8b23.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_d44c64559bbebec7f509842c48db8b23.html new file mode 100644 index 000000000..e19de97df --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/dir_d44c64559bbebec7f509842c48db8b23.html @@ -0,0 +1,78 @@ + + + + + + + +FLAC: include Directory Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
include Directory Reference
+
+
+ + +

+Directories

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/doc.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doc.png new file mode 100644 index 000000000..17edabff9 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doc.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.css b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.css new file mode 100644 index 000000000..4f1ab9195 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.css @@ -0,0 +1,1596 @@ +/* The standard CSS for doxygen 1.8.13 */ + +body, table, div, p, dl { + font: 400 14px/22px Roboto,sans-serif; +} + +p.reference, p.definition { + font: 400 14px/22px Roboto,sans-serif; +} + +/* @group Heading Levels */ + +h1.groupheader { + font-size: 150%; +} + +.title { + font: 400 14px/28px Roboto,sans-serif; + font-size: 150%; + font-weight: bold; + margin: 10px 2px; +} + +h2.groupheader { + border-bottom: 1px solid #879ECB; + color: #354C7B; + font-size: 150%; + font-weight: normal; + margin-top: 1.75em; + padding-top: 8px; + padding-bottom: 4px; + width: 100%; +} + +h3.groupheader { + font-size: 100%; +} + +h1, h2, h3, h4, h5, h6 { + -webkit-transition: text-shadow 0.5s linear; + -moz-transition: text-shadow 0.5s linear; + -ms-transition: text-shadow 0.5s linear; + -o-transition: text-shadow 0.5s linear; + transition: text-shadow 0.5s linear; + margin-right: 15px; +} + +h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { + text-shadow: 0 0 15px cyan; +} + +dt { + font-weight: bold; +} + +div.multicol { + -moz-column-gap: 1em; + -webkit-column-gap: 1em; + -moz-column-count: 3; + -webkit-column-count: 3; +} + +p.startli, p.startdd { + margin-top: 2px; +} + +p.starttd { + margin-top: 0px; +} + +p.endli { + margin-bottom: 0px; +} + +p.enddd { + margin-bottom: 4px; +} + +p.endtd { + margin-bottom: 2px; +} + +/* @end */ + +caption { + font-weight: bold; +} + +span.legend { + font-size: 70%; + text-align: center; +} + +h3.version { + font-size: 90%; + text-align: center; +} + +div.qindex, div.navtab{ + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; +} + +div.qindex, div.navpath { + width: 100%; + line-height: 140%; +} + +div.navtab { + margin-right: 15px; +} + +/* @group Link Styling */ + +a { + color: #3D578C; + font-weight: normal; + text-decoration: none; +} + +.contents a:visited { + color: #4665A2; +} + +a:hover { + text-decoration: underline; +} + +a.qindex { + font-weight: bold; +} + +a.qindexHL { + font-weight: bold; + background-color: #9CAFD4; + color: #ffffff; + border: 1px double #869DCA; +} + +.contents a.qindexHL:visited { + color: #ffffff; +} + +a.el { + font-weight: bold; +} + +a.elRef { +} + +a.code, a.code:visited, a.line, a.line:visited { + color: #4665A2; +} + +a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { + color: #4665A2; +} + +/* @end */ + +dl.el { + margin-left: -1cm; +} + +pre.fragment { + border: 1px solid #C4CFE5; + background-color: #FBFCFD; + padding: 4px 6px; + margin: 4px 8px 4px 2px; + overflow: auto; + word-wrap: break-word; + font-size: 9pt; + line-height: 125%; + font-family: monospace, fixed; + font-size: 105%; +} + +div.fragment { + padding: 0px; + margin: 4px 8px 4px 2px; + background-color: #FBFCFD; + border: 1px solid #C4CFE5; +} + +div.line { + font-family: monospace, fixed; + font-size: 13px; + min-height: 13px; + line-height: 1.0; + text-wrap: unrestricted; + white-space: -moz-pre-wrap; /* Moz */ + white-space: -pre-wrap; /* Opera 4-6 */ + white-space: -o-pre-wrap; /* Opera 7 */ + white-space: pre-wrap; /* CSS3 */ + word-wrap: break-word; /* IE 5.5+ */ + text-indent: -53px; + padding-left: 53px; + padding-bottom: 0px; + margin: 0px; + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +div.line:after { + content:"\000A"; + white-space: pre; +} + +div.line.glow { + background-color: cyan; + box-shadow: 0 0 10px cyan; +} + + +span.lineno { + padding-right: 4px; + text-align: right; + border-right: 2px solid #0F0; + background-color: #E8E8E8; + white-space: pre; +} +span.lineno a { + background-color: #D8D8D8; +} + +span.lineno a:hover { + background-color: #C8C8C8; +} + +.lineno { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +div.ah, span.ah { + background-color: black; + font-weight: bold; + color: #ffffff; + margin-bottom: 3px; + margin-top: 3px; + padding: 0.2em; + border: solid thin #333; + border-radius: 0.5em; + -webkit-border-radius: .5em; + -moz-border-radius: .5em; + box-shadow: 2px 2px 3px #999; + -webkit-box-shadow: 2px 2px 3px #999; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); + background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000 110%); +} + +div.classindex ul { + list-style: none; + padding-left: 0; +} + +div.classindex span.ai { + display: inline-block; +} + +div.groupHeader { + margin-left: 16px; + margin-top: 12px; + font-weight: bold; +} + +div.groupText { + margin-left: 16px; + font-style: italic; +} + +body { + background-color: white; + color: black; + margin: 0; +} + +div.contents { + margin-top: 10px; + margin-left: 12px; + margin-right: 8px; +} + +td.indexkey { + background-color: #EBEFF6; + font-weight: bold; + border: 1px solid #C4CFE5; + margin: 2px 0px 2px 0; + padding: 2px 10px; + white-space: nowrap; + vertical-align: top; +} + +td.indexvalue { + background-color: #EBEFF6; + border: 1px solid #C4CFE5; + padding: 2px 10px; + margin: 2px 0px; +} + +tr.memlist { + background-color: #EEF1F7; +} + +p.formulaDsp { + text-align: center; +} + +img.formulaDsp { + +} + +img.formulaInl { + vertical-align: middle; +} + +div.center { + text-align: center; + margin-top: 0px; + margin-bottom: 0px; + padding: 0px; +} + +div.center img { + border: 0px; +} + +address.footer { + text-align: right; + padding-right: 12px; +} + +img.footer { + border: 0px; + vertical-align: middle; +} + +/* @group Code Colorization */ + +span.keyword { + color: #008000 +} + +span.keywordtype { + color: #604020 +} + +span.keywordflow { + color: #e08000 +} + +span.comment { + color: #800000 +} + +span.preprocessor { + color: #806020 +} + +span.stringliteral { + color: #002080 +} + +span.charliteral { + color: #008080 +} + +span.vhdldigit { + color: #ff00ff +} + +span.vhdlchar { + color: #000000 +} + +span.vhdlkeyword { + color: #700070 +} + +span.vhdllogic { + color: #ff0000 +} + +blockquote { + background-color: #F7F8FB; + border-left: 2px solid #9CAFD4; + margin: 0 24px 0 4px; + padding: 0 12px 0 16px; +} + +/* @end */ + +/* +.search { + color: #003399; + font-weight: bold; +} + +form.search { + margin-bottom: 0px; + margin-top: 0px; +} + +input.search { + font-size: 75%; + color: #000080; + font-weight: normal; + background-color: #e8eef2; +} +*/ + +td.tiny { + font-size: 75%; +} + +.dirtab { + padding: 4px; + border-collapse: collapse; + border: 1px solid #A3B4D7; +} + +th.dirtab { + background: #EBEFF6; + font-weight: bold; +} + +hr { + height: 0px; + border: none; + border-top: 1px solid #4A6AAA; +} + +hr.footer { + height: 1px; +} + +/* @group Member Descriptions */ + +table.memberdecls { + border-spacing: 0px; + padding: 0px; +} + +.memberdecls td, .fieldtable tr { + -webkit-transition-property: background-color, box-shadow; + -webkit-transition-duration: 0.5s; + -moz-transition-property: background-color, box-shadow; + -moz-transition-duration: 0.5s; + -ms-transition-property: background-color, box-shadow; + -ms-transition-duration: 0.5s; + -o-transition-property: background-color, box-shadow; + -o-transition-duration: 0.5s; + transition-property: background-color, box-shadow; + transition-duration: 0.5s; +} + +.memberdecls td.glow, .fieldtable tr.glow { + background-color: cyan; + box-shadow: 0 0 15px cyan; +} + +.mdescLeft, .mdescRight, +.memItemLeft, .memItemRight, +.memTemplItemLeft, .memTemplItemRight, .memTemplParams { + background-color: #F9FAFC; + border: none; + margin: 4px; + padding: 1px 0 0 8px; +} + +.mdescLeft, .mdescRight { + padding: 0px 8px 4px 8px; + color: #555; +} + +.memSeparator { + border-bottom: 1px solid #DEE4F0; + line-height: 1px; + margin: 0px; + padding: 0px; +} + +.memItemLeft, .memTemplItemLeft { + white-space: nowrap; +} + +.memItemRight { + width: 100%; +} + +.memTemplParams { + color: #4665A2; + white-space: nowrap; + font-size: 80%; +} + +/* @end */ + +/* @group Member Details */ + +/* Styles for detailed member documentation */ + +.memtitle { + padding: 8px; + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + border-top-right-radius: 4px; + border-top-left-radius: 4px; + margin-bottom: -1px; + background-image: url('nav_f.png'); + background-repeat: repeat-x; + background-color: #E2E8F2; + line-height: 1.25; + font-weight: 300; + float:left; +} + +.permalink +{ + font-size: 65%; + display: inline-block; + vertical-align: middle; +} + +.memtemplate { + font-size: 80%; + color: #4665A2; + font-weight: normal; + margin-left: 9px; +} + +.memnav { + background-color: #EBEFF6; + border: 1px solid #A3B4D7; + text-align: center; + margin: 2px; + margin-right: 15px; + padding: 2px; +} + +.mempage { + width: 100%; +} + +.memitem { + padding: 0; + margin-bottom: 10px; + margin-right: 5px; + -webkit-transition: box-shadow 0.5s linear; + -moz-transition: box-shadow 0.5s linear; + -ms-transition: box-shadow 0.5s linear; + -o-transition: box-shadow 0.5s linear; + transition: box-shadow 0.5s linear; + display: table !important; + width: 100%; +} + +.memitem.glow { + box-shadow: 0 0 15px cyan; +} + +.memname { + font-weight: 400; + margin-left: 6px; +} + +.memname td { + vertical-align: bottom; +} + +.memproto, dl.reflist dt { + border-top: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 0px 6px 0px; + color: #253555; + font-weight: bold; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + background-color: #DFE5F1; + /* opera specific markup */ + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + border-top-right-radius: 4px; + /* firefox specific markup */ + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + -moz-border-radius-topright: 4px; + /* webkit specific markup */ + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + -webkit-border-top-right-radius: 4px; + +} + +.overload { + font-family: "courier new",courier,monospace; + font-size: 65%; +} + +.memdoc, dl.reflist dd { + border-bottom: 1px solid #A8B8D9; + border-left: 1px solid #A8B8D9; + border-right: 1px solid #A8B8D9; + padding: 6px 10px 2px 10px; + background-color: #FBFCFD; + border-top-width: 0; + background-image:url('nav_g.png'); + background-repeat:repeat-x; + background-color: #FFFFFF; + /* opera specific markup */ + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); + /* firefox specific markup */ + -moz-border-radius-bottomleft: 4px; + -moz-border-radius-bottomright: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; + /* webkit specific markup */ + -webkit-border-bottom-left-radius: 4px; + -webkit-border-bottom-right-radius: 4px; + -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); +} + +dl.reflist dt { + padding: 5px; +} + +dl.reflist dd { + margin: 0px 0px 10px 0px; + padding: 5px; +} + +.paramkey { + text-align: right; +} + +.paramtype { + white-space: nowrap; +} + +.paramname { + color: #602020; + white-space: nowrap; +} +.paramname em { + font-style: normal; +} +.paramname code { + line-height: 14px; +} + +.params, .retval, .exception, .tparams { + margin-left: 0px; + padding-left: 0px; +} + +.params .paramname, .retval .paramname { + font-weight: bold; + vertical-align: top; +} + +.params .paramtype { + font-style: italic; + vertical-align: top; +} + +.params .paramdir { + font-family: "courier new",courier,monospace; + vertical-align: top; +} + +table.mlabels { + border-spacing: 0px; +} + +td.mlabels-left { + width: 100%; + padding: 0px; +} + +td.mlabels-right { + vertical-align: bottom; + padding: 0px; + white-space: nowrap; +} + +span.mlabels { + margin-left: 8px; +} + +span.mlabel { + background-color: #728DC1; + border-top:1px solid #5373B4; + border-left:1px solid #5373B4; + border-right:1px solid #C4CFE5; + border-bottom:1px solid #C4CFE5; + text-shadow: none; + color: white; + margin-right: 4px; + padding: 2px 3px; + border-radius: 3px; + font-size: 7pt; + white-space: nowrap; + vertical-align: middle; +} + + + +/* @end */ + +/* these are for tree view inside a (index) page */ + +div.directory { + margin: 10px 0px; + border-top: 1px solid #9CAFD4; + border-bottom: 1px solid #9CAFD4; + width: 100%; +} + +.directory table { + border-collapse:collapse; +} + +.directory td { + margin: 0px; + padding: 0px; + vertical-align: top; +} + +.directory td.entry { + white-space: nowrap; + padding-right: 6px; + padding-top: 3px; +} + +.directory td.entry a { + outline:none; +} + +.directory td.entry a img { + border: none; +} + +.directory td.desc { + width: 100%; + padding-left: 6px; + padding-right: 6px; + padding-top: 3px; + border-left: 1px solid rgba(0,0,0,0.05); +} + +.directory tr.even { + padding-left: 6px; + background-color: #F7F8FB; +} + +.directory img { + vertical-align: -30%; +} + +.directory .levels { + white-space: nowrap; + width: 100%; + text-align: right; + font-size: 9pt; +} + +.directory .levels span { + cursor: pointer; + padding-left: 2px; + padding-right: 2px; + color: #3D578C; +} + +.arrow { + color: #9CAFD4; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; + font-size: 80%; + display: inline-block; + width: 16px; + height: 22px; +} + +.icon { + font-family: Arial, Helvetica; + font-weight: bold; + font-size: 12px; + height: 14px; + width: 16px; + display: inline-block; + background-color: #728DC1; + color: white; + text-align: center; + border-radius: 4px; + margin-left: 2px; + margin-right: 2px; +} + +.icona { + width: 24px; + height: 22px; + display: inline-block; +} + +.iconfopen { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderopen.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.iconfclosed { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('folderclosed.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +.icondoc { + width: 24px; + height: 18px; + margin-bottom: 4px; + background-image:url('doc.png'); + background-position: 0px -4px; + background-repeat: repeat-y; + vertical-align:top; + display: inline-block; +} + +table.directory { + font: 400 14px Roboto,sans-serif; +} + +/* @end */ + +div.dynheader { + margin-top: 8px; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +address { + font-style: normal; + color: #2A3D61; +} + +table.doxtable caption { + caption-side: top; +} + +table.doxtable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.doxtable td, table.doxtable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.doxtable th { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +table.fieldtable { + /*width: 100%;*/ + margin-bottom: 10px; + border: 1px solid #A8B8D9; + border-spacing: 0px; + -moz-border-radius: 4px; + -webkit-border-radius: 4px; + border-radius: 4px; + -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; + -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); + box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); +} + +.fieldtable td, .fieldtable th { + padding: 3px 7px 2px; +} + +.fieldtable td.fieldtype, .fieldtable td.fieldname { + white-space: nowrap; + border-right: 1px solid #A8B8D9; + border-bottom: 1px solid #A8B8D9; + vertical-align: top; +} + +.fieldtable td.fieldname { + padding-top: 3px; +} + +.fieldtable td.fielddoc { + border-bottom: 1px solid #A8B8D9; + /*width: 100%;*/ +} + +.fieldtable td.fielddoc p:first-child { + margin-top: 0px; +} + +.fieldtable td.fielddoc p:last-child { + margin-bottom: 2px; +} + +.fieldtable tr:last-child td { + border-bottom: none; +} + +.fieldtable th { + background-image:url('nav_f.png'); + background-repeat:repeat-x; + background-color: #E2E8F2; + font-size: 90%; + color: #253555; + padding-bottom: 4px; + padding-top: 5px; + text-align:left; + font-weight: 400; + -moz-border-radius-topleft: 4px; + -moz-border-radius-topright: 4px; + -webkit-border-top-left-radius: 4px; + -webkit-border-top-right-radius: 4px; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom: 1px solid #A8B8D9; +} + + +.tabsearch { + top: 0px; + left: 10px; + height: 36px; + background-image: url('tab_b.png'); + z-index: 101; + overflow: hidden; + font-size: 13px; +} + +.navpath ul +{ + font-size: 11px; + background-image:url('tab_b.png'); + background-repeat:repeat-x; + background-position: 0 -5px; + height:30px; + line-height:30px; + color:#8AA0CC; + border:solid 1px #C2CDE4; + overflow:hidden; + margin:0px; + padding:0px; +} + +.navpath li +{ + list-style-type:none; + float:left; + padding-left:10px; + padding-right:15px; + background-image:url('bc_s.png'); + background-repeat:no-repeat; + background-position:right; + color:#364D7C; +} + +.navpath li.navelem a +{ + height:32px; + display:block; + text-decoration: none; + outline: none; + color: #283A5D; + font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; + text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); + text-decoration: none; +} + +.navpath li.navelem a:hover +{ + color:#6884BD; +} + +.navpath li.footer +{ + list-style-type:none; + float:right; + padding-left:10px; + padding-right:15px; + background-image:none; + background-repeat:no-repeat; + background-position:right; + color:#364D7C; + font-size: 8pt; +} + + +div.summary +{ + float: right; + font-size: 8pt; + padding-right: 5px; + width: 50%; + text-align: right; +} + +div.summary a +{ + white-space: nowrap; +} + +table.classindex +{ + margin: 10px; + white-space: nowrap; + margin-left: 3%; + margin-right: 3%; + width: 94%; + border: 0; + border-spacing: 0; + padding: 0; +} + +div.ingroups +{ + font-size: 8pt; + width: 50%; + text-align: left; +} + +div.ingroups a +{ + white-space: nowrap; +} + +div.header +{ + background-image:url('nav_h.png'); + background-repeat:repeat-x; + background-color: #F9FAFC; + margin: 0px; + border-bottom: 1px solid #C4CFE5; +} + +div.headertitle +{ + padding: 5px 5px 5px 10px; +} + +dl +{ + padding: 0 0 0 10px; +} + +/* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ +dl.section +{ + margin-left: 0px; + padding-left: 0px; +} + +dl.note +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #D0C000; +} + +dl.warning, dl.attention +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #FF0000; +} + +dl.pre, dl.post, dl.invariant +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00D000; +} + +dl.deprecated +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #505050; +} + +dl.todo +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #00C0E0; +} + +dl.test +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #3030E0; +} + +dl.bug +{ + margin-left:-7px; + padding-left: 3px; + border-left:4px solid; + border-color: #C08050; +} + +dl.section dd { + margin-bottom: 6px; +} + + +#projectlogo +{ + text-align: center; + vertical-align: bottom; + border-collapse: separate; +} + +#projectlogo img +{ + border: 0px none; +} + +#projectalign +{ + vertical-align: middle; +} + +#projectname +{ + font: 300% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 2px 0px; +} + +#projectbrief +{ + font: 120% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#projectnumber +{ + font: 50% Tahoma, Arial,sans-serif; + margin: 0px; + padding: 0px; +} + +#titlearea +{ + padding: 0px; + margin: 0px; + width: 100%; + border-bottom: 1px solid #5373B4; +} + +.image +{ + text-align: center; +} + +.dotgraph +{ + text-align: center; +} + +.mscgraph +{ + text-align: center; +} + +.plantumlgraph +{ + text-align: center; +} + +.diagraph +{ + text-align: center; +} + +.caption +{ + font-weight: bold; +} + +div.zoom +{ + border: 1px solid #90A5CE; +} + +dl.citelist { + margin-bottom:50px; +} + +dl.citelist dt { + color:#334975; + float:left; + font-weight:bold; + margin-right:10px; + padding:5px; +} + +dl.citelist dd { + margin:2px 0; + padding:5px 0; +} + +div.toc { + padding: 14px 25px; + background-color: #F4F6FA; + border: 1px solid #D8DFEE; + border-radius: 7px 7px 7px 7px; + float: right; + height: auto; + margin: 0 8px 10px 10px; + width: 200px; +} + +div.toc li { + background: url("bdwn.png") no-repeat scroll 0 5px transparent; + font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; + margin-top: 5px; + padding-left: 10px; + padding-top: 2px; +} + +div.toc h3 { + font: bold 12px/1.2 Arial,FreeSans,sans-serif; + color: #4665A2; + border-bottom: 0 none; + margin: 0; +} + +div.toc ul { + list-style: none outside none; + border: medium none; + padding: 0px; +} + +div.toc li.level1 { + margin-left: 0px; +} + +div.toc li.level2 { + margin-left: 15px; +} + +div.toc li.level3 { + margin-left: 30px; +} + +div.toc li.level4 { + margin-left: 45px; +} + +.inherit_header { + font-weight: bold; + color: gray; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.inherit_header td { + padding: 6px 0px 2px 5px; +} + +.inherit { + display: none; +} + +tr.heading h2 { + margin-top: 12px; + margin-bottom: 4px; +} + +/* tooltip related style info */ + +.ttc { + position: absolute; + display: none; +} + +#powerTip { + cursor: default; + white-space: nowrap; + background-color: white; + border: 1px solid gray; + border-radius: 4px 4px 4px 4px; + box-shadow: 1px 1px 7px gray; + display: none; + font-size: smaller; + max-width: 80%; + opacity: 0.9; + padding: 1ex 1em 1em; + position: absolute; + z-index: 2147483647; +} + +#powerTip div.ttdoc { + color: grey; + font-style: italic; +} + +#powerTip div.ttname a { + font-weight: bold; +} + +#powerTip div.ttname { + font-weight: bold; +} + +#powerTip div.ttdeci { + color: #006318; +} + +#powerTip div { + margin: 0px; + padding: 0px; + font: 12px/16px Roboto,sans-serif; +} + +#powerTip:before, #powerTip:after { + content: ""; + position: absolute; + margin: 0px; +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.s:after, #powerTip.s:before, +#powerTip.w:after, #powerTip.w:before, +#powerTip.e:after, #powerTip.e:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.nw:after, #powerTip.nw:before, +#powerTip.sw:after, #powerTip.sw:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; +} + +#powerTip.n:after, #powerTip.s:after, +#powerTip.w:after, #powerTip.e:after, +#powerTip.nw:after, #powerTip.ne:after, +#powerTip.sw:after, #powerTip.se:after { + border-color: rgba(255, 255, 255, 0); +} + +#powerTip.n:before, #powerTip.s:before, +#powerTip.w:before, #powerTip.e:before, +#powerTip.nw:before, #powerTip.ne:before, +#powerTip.sw:before, #powerTip.se:before { + border-color: rgba(128, 128, 128, 0); +} + +#powerTip.n:after, #powerTip.n:before, +#powerTip.ne:after, #powerTip.ne:before, +#powerTip.nw:after, #powerTip.nw:before { + top: 100%; +} + +#powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { + border-top-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} +#powerTip.n:before { + border-top-color: #808080; + border-width: 11px; + margin: 0px -11px; +} +#powerTip.n:after, #powerTip.n:before { + left: 50%; +} + +#powerTip.nw:after, #powerTip.nw:before { + right: 14px; +} + +#powerTip.ne:after, #powerTip.ne:before { + left: 14px; +} + +#powerTip.s:after, #powerTip.s:before, +#powerTip.se:after, #powerTip.se:before, +#powerTip.sw:after, #powerTip.sw:before { + bottom: 100%; +} + +#powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { + border-bottom-color: #ffffff; + border-width: 10px; + margin: 0px -10px; +} + +#powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { + border-bottom-color: #808080; + border-width: 11px; + margin: 0px -11px; +} + +#powerTip.s:after, #powerTip.s:before { + left: 50%; +} + +#powerTip.sw:after, #powerTip.sw:before { + right: 14px; +} + +#powerTip.se:after, #powerTip.se:before { + left: 14px; +} + +#powerTip.e:after, #powerTip.e:before { + left: 100%; +} +#powerTip.e:after { + border-left-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.e:before { + border-left-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +#powerTip.w:after, #powerTip.w:before { + right: 100%; +} +#powerTip.w:after { + border-right-color: #ffffff; + border-width: 10px; + top: 50%; + margin-top: -10px; +} +#powerTip.w:before { + border-right-color: #808080; + border-width: 11px; + top: 50%; + margin-top: -11px; +} + +@media print +{ + #top { display: none; } + #side-nav { display: none; } + #nav-path { display: none; } + body { overflow:visible; } + h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } + .summary { display: none; } + .memitem { page-break-inside: avoid; } + #doc-content + { + margin-left:0 !important; + height:auto !important; + width:auto !important; + overflow:inherit; + display:inline; + } +} + +/* @group Markdown */ + +/* +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTableHead tr { +} + +table.markdownTableBodyLeft td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +th.markdownTableHeadLeft th.markdownTableHeadRight th.markdownTableHeadCenter th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft { + text-align: left +} + +th.markdownTableHeadRight { + text-align: right +} + +th.markdownTableHeadCenter { + text-align: center +} +*/ + +table.markdownTable { + border-collapse:collapse; + margin-top: 4px; + margin-bottom: 4px; +} + +table.markdownTable td, table.markdownTable th { + border: 1px solid #2D4068; + padding: 3px 7px 2px; +} + +table.markdownTable tr { +} + +th.markdownTableHeadLeft, th.markdownTableHeadRight, th.markdownTableHeadCenter, th.markdownTableHeadNone { + background-color: #374F7F; + color: #FFFFFF; + font-size: 110%; + padding-bottom: 4px; + padding-top: 5px; +} + +th.markdownTableHeadLeft, td.markdownTableBodyLeft { + text-align: left +} + +th.markdownTableHeadRight, td.markdownTableBodyRight { + text-align: right +} + +th.markdownTableHeadCenter, td.markdownTableBodyCenter { + text-align: center +} + + +/* @end */ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.png new file mode 100644 index 000000000..3ff17d807 Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/doxygen.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h.html new file mode 100644 index 000000000..0596535ef --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h.html @@ -0,0 +1,95 @@ + + + + + + + +FLAC: include/FLAC++/encoder.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
encoder.h File Reference
+
+
+
#include "export.h"
+#include "FLAC/stream_encoder.h"
+#include "decoder.h"
+#include "metadata.h"
+
+

Go to the source code of this file.

+ + + + + + + + +

+Classes

class  FLAC::Encoder::Stream
 
class  FLAC::Encoder::Stream::State
 
class  FLAC::Encoder::File
 
+

Detailed Description

+

This module contains the classes which implement the various encoders.

+

See the detailed documentation in the encoder module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h_source.html new file mode 100644 index 000000000..8ded74e6f --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/encoder_8h_source.html @@ -0,0 +1,96 @@ + + + + + + + +FLAC: include/FLAC++/encoder.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
encoder.h
+
+
+Go to the documentation of this file.
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLACPP__ENCODER_H
34 #define FLACPP__ENCODER_H
35 
36 #include "export.h"
37 
38 #include "FLAC/stream_encoder.h"
39 #include "decoder.h"
40 #include "metadata.h"
41 
42 
79 namespace FLAC {
80  namespace Encoder {
81 
102  class FLACPP_API Stream {
103  public:
106  class FLACPP_API State {
107  public:
108  inline State(::FLAC__StreamEncoderState state): state_(state) { }
109  inline operator ::FLAC__StreamEncoderState() const { return state_; }
110  inline const char *as_cstring() const { return ::FLAC__StreamEncoderStateString[state_]; }
111  inline const char *resolved_as_cstring(const Stream &encoder) const { return ::FLAC__stream_encoder_get_resolved_state_string(encoder.encoder_); }
112  protected:
114  };
115 
116  Stream();
117  virtual ~Stream();
118 
120 
124  virtual bool is_valid() const;
125  inline operator bool() const { return is_valid(); }
126 
127 
128  virtual bool set_ogg_serial_number(long value);
129  virtual bool set_verify(bool value);
130  virtual bool set_streamable_subset(bool value);
131  virtual bool set_channels(uint32_t value);
132  virtual bool set_bits_per_sample(uint32_t value);
133  virtual bool set_sample_rate(uint32_t value);
134  virtual bool set_compression_level(uint32_t value);
135  virtual bool set_blocksize(uint32_t value);
136  virtual bool set_do_mid_side_stereo(bool value);
137  virtual bool set_loose_mid_side_stereo(bool value);
138  virtual bool set_apodization(const char *specification);
139  virtual bool set_max_lpc_order(uint32_t value);
140  virtual bool set_qlp_coeff_precision(uint32_t value);
141  virtual bool set_do_qlp_coeff_prec_search(bool value);
142  virtual bool set_do_escape_coding(bool value);
143  virtual bool set_do_exhaustive_model_search(bool value);
144  virtual bool set_min_residual_partition_order(uint32_t value);
145  virtual bool set_max_residual_partition_order(uint32_t value);
146  virtual bool set_rice_parameter_search_dist(uint32_t value);
147  virtual bool set_total_samples_estimate(FLAC__uint64 value);
148  virtual bool set_metadata(::FLAC__StreamMetadata **metadata, uint32_t num_blocks);
149  virtual bool set_metadata(FLAC::Metadata::Prototype **metadata, uint32_t num_blocks);
150 
151  /* get_state() is not virtual since we want subclasses to be able to return their own state */
152  State get_state() const;
153  virtual Decoder::Stream::State get_verify_decoder_state() const;
154  virtual void get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got);
155  virtual bool get_verify() const;
156  virtual bool get_streamable_subset() const;
157  virtual bool get_do_mid_side_stereo() const;
158  virtual bool get_loose_mid_side_stereo() const;
159  virtual uint32_t get_channels() const;
160  virtual uint32_t get_bits_per_sample() const;
161  virtual uint32_t get_sample_rate() const;
162  virtual uint32_t get_blocksize() const;
163  virtual uint32_t get_max_lpc_order() const;
164  virtual uint32_t get_qlp_coeff_precision() const;
165  virtual bool get_do_qlp_coeff_prec_search() const;
166  virtual bool get_do_escape_coding() const;
167  virtual bool get_do_exhaustive_model_search() const;
168  virtual uint32_t get_min_residual_partition_order() const;
169  virtual uint32_t get_max_residual_partition_order() const;
170  virtual uint32_t get_rice_parameter_search_dist() const;
171  virtual FLAC__uint64 get_total_samples_estimate() const;
172 
175 
176  virtual bool finish();
177 
178  virtual bool process(const FLAC__int32 * const buffer[], uint32_t samples);
179  virtual bool process_interleaved(const FLAC__int32 buffer[], uint32_t samples);
180  protected:
182  virtual ::FLAC__StreamEncoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
183 
185  virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame) = 0;
186 
188  virtual ::FLAC__StreamEncoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
189 
191  virtual ::FLAC__StreamEncoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
192 
194  virtual void metadata_callback(const ::FLAC__StreamMetadata *metadata);
195 
196 #if (defined __BORLANDC__) || (defined __GNUG__ && (__GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 96))) || (defined __SUNPRO_CC)
197  // lame hack: some compilers can't see a protected encoder_ from nested State::resolved_as_cstring()
198  friend State;
199 #endif
200  ::FLAC__StreamEncoder *encoder_;
201 
202  static ::FLAC__StreamEncoderReadStatus read_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
203  static ::FLAC__StreamEncoderWriteStatus write_callback_(const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data);
204  static ::FLAC__StreamEncoderSeekStatus seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data);
205  static ::FLAC__StreamEncoderTellStatus tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data);
206  static void metadata_callback_(const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data);
207  private:
208  // Private and undefined so you can't use them:
209  Stream(const Stream &);
210  void operator=(const Stream &);
211  };
212 
233  class FLACPP_API File: public Stream {
234  public:
235  File();
236  virtual ~File();
237 
238  using Stream::init;
239  virtual ::FLAC__StreamEncoderInitStatus init(FILE *file);
240  virtual ::FLAC__StreamEncoderInitStatus init(const char *filename);
241  virtual ::FLAC__StreamEncoderInitStatus init(const std::string &filename);
242  using Stream::init_ogg;
243  virtual ::FLAC__StreamEncoderInitStatus init_ogg(FILE *file);
244  virtual ::FLAC__StreamEncoderInitStatus init_ogg(const char *filename);
245  virtual ::FLAC__StreamEncoderInitStatus init_ogg(const std::string &filename);
246  protected:
248  virtual void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate);
249 
251  virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame);
252  private:
253  static void progress_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data);
254 
255  // Private and undefined so you can't use them:
256  File(const Stream &);
257  void operator=(const Stream &);
258  };
259 
260  }
261 }
262 
263 #endif
This module contains the functions which implement the stream encoder.
+
Definition: encoder.h:106
+
This class wraps the FLAC__StreamEncoder. If you are encoding to a file, FLAC::Encoder::File may be m...
Definition: encoder.h:102
+
FLAC__StreamEncoderTellStatus
Definition: stream_encoder.h:432
+
Definition: decoder.h:78
+
FLAC__StreamEncoderSeekStatus
Definition: stream_encoder.h:409
+
This module provides classes for creating and manipulating FLAC metadata blocks in memory...
+
FLAC__StreamEncoderReadStatus
Definition: stream_encoder.h:363
+
FLAC__StreamEncoderState
Definition: stream_encoder.h:241
+
virtual ::FLAC__StreamEncoderInitStatus init()
See FLAC__stream_encoder_init_stream()
+
const char * FLAC__stream_encoder_get_resolved_state_string(const FLAC__StreamEncoder *encoder)
+
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
Definition: format.h:834
+
This class wraps the FLAC__StreamEncoder. If you are not encoding to a file, you may need to use FLAC...
Definition: encoder.h:233
+
This module contains the classes which implement the various decoders.
+
FLAC__StreamEncoderInitStatus
Definition: stream_encoder.h:293
+
FLAC__StreamEncoderWriteStatus
Definition: stream_encoder.h:389
+
Definition: metadata.h:109
+
Definition: decoder.h:104
+
virtual ::FLAC__StreamEncoderInitStatus init_ogg()
See FLAC__stream_encoder_init_ogg_stream()
+
Definition: stream_encoder.h:465
+
const char *const FLAC__StreamEncoderStateString[]
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h.html new file mode 100644 index 000000000..13a71d183 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h.html @@ -0,0 +1,100 @@ + + + + + + + +FLAC: include/FLAC/export.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
export.h File Reference
+
+
+ +

Go to the source code of this file.

+ + + + + + + + + + +

+Macros

+#define FLAC_API
 
#define FLAC_API_VERSION_CURRENT   11
 
#define FLAC_API_VERSION_REVISION   0
 
#define FLAC_API_VERSION_AGE   3
 
+ + + +

+Variables

int FLAC_API_SUPPORTS_OGG_FLAC
 
+

Detailed Description

+

This module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features.

+

See the export module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h_source.html new file mode 100644 index 000000000..a18b2e35a --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/export_8h_source.html @@ -0,0 +1,75 @@ + + + + + + + +FLAC: include/FLAC/export.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
export.h
+
+
+Go to the documentation of this file.
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2000-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__EXPORT_H
34 #define FLAC__EXPORT_H
35 
59 #if defined(FLAC__NO_DLL)
60 #define FLAC_API
61 
62 #elif defined(_MSC_VER)
63 #ifdef FLAC_API_EXPORTS
64 #define FLAC_API __declspec(dllexport)
65 #else
66 #define FLAC_API __declspec(dllimport)
67 #endif
68 
69 #elif defined(FLAC__USE_VISIBILITY_ATTR)
70 #define FLAC_API __attribute__ ((visibility ("default")))
71 
72 #else
73 #define FLAC_API
74 
75 #endif
76 
80 #define FLAC_API_VERSION_CURRENT 11
81 #define FLAC_API_VERSION_REVISION 0
82 #define FLAC_API_VERSION_AGE 3
84 #ifdef __cplusplus
85 extern "C" {
86 #endif
87 
89 extern FLAC_API int FLAC_API_SUPPORTS_OGG_FLAC;
90 
91 #ifdef __cplusplus
92 }
93 #endif
94 
95 /* \} */
96 
97 #endif
int FLAC_API_SUPPORTS_OGG_FLAC
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/files.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/files.html new file mode 100644 index 000000000..db685ddf8 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/files.html @@ -0,0 +1,91 @@ + + + + + + + +FLAC: File List + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
File List
+
+
+
Here is a list of all documented files with brief descriptions:
+
[detail level 123]
+ + + + + + + + + + + + + + + + + +
  include
  FLAC
 all.h
 assert.h
 callback.hThis module defines the structures for describing I/O callbacks to the other FLAC interfaces
 export.hThis module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features
 format.hThis module contains structure definitions for the representation of FLAC format components in memory. These are the basic structures used by the rest of the interfaces
 metadata.hThis module provides functions for creating and manipulating FLAC metadata blocks in memory, and three progressively more powerful interfaces for traversing and editing metadata in FLAC files
 ordinals.h
 stream_decoder.hThis module contains the functions which implement the stream decoder
 stream_encoder.hThis module contains the functions which implement the stream encoder
  FLAC++
 all.h
 decoder.hThis module contains the classes which implement the various decoders
 encoder.hThis module contains the classes which implement the various encoders
 export.hThis module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features
 metadata.hThis module provides classes for creating and manipulating FLAC metadata blocks in memory, and three progressively more powerful interfaces for traversing and editing metadata in FLAC files
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderclosed.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderclosed.png new file mode 100644 index 000000000..bb8ab35ed Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderclosed.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderopen.png b/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderopen.png new file mode 100644 index 000000000..d6c7f676a Binary files /dev/null and b/Frameworks/FLAC/flac-1.3.3/doc/html/api/folderopen.png differ diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h.html new file mode 100644 index 000000000..d7b566611 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h.html @@ -0,0 +1,437 @@ + + + + + + + +FLAC: include/FLAC/format.h File Reference + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+ +
+
format.h File Reference
+
+
+
#include "export.h"
+#include "ordinals.h"
+
+

Go to the source code of this file.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

struct  FLAC__EntropyCodingMethod_PartitionedRiceContents
 
struct  FLAC__EntropyCodingMethod_PartitionedRice
 
struct  FLAC__EntropyCodingMethod
 
struct  FLAC__Subframe_Constant
 
struct  FLAC__Subframe_Verbatim
 
struct  FLAC__Subframe_Fixed
 
struct  FLAC__Subframe_LPC
 
struct  FLAC__Subframe
 
struct  FLAC__FrameHeader
 
struct  FLAC__FrameFooter
 
struct  FLAC__Frame
 
struct  FLAC__StreamMetadata_StreamInfo
 
struct  FLAC__StreamMetadata_Padding
 
struct  FLAC__StreamMetadata_Application
 
struct  FLAC__StreamMetadata_SeekPoint
 
struct  FLAC__StreamMetadata_SeekTable
 
struct  FLAC__StreamMetadata_VorbisComment_Entry
 
struct  FLAC__StreamMetadata_VorbisComment
 
struct  FLAC__StreamMetadata_CueSheet_Index
 
struct  FLAC__StreamMetadata_CueSheet_Track
 
struct  FLAC__StreamMetadata_CueSheet
 
struct  FLAC__StreamMetadata_Picture
 
struct  FLAC__StreamMetadata_Unknown
 
struct  FLAC__StreamMetadata
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define FLAC__MAX_METADATA_TYPE_CODE   (126u)
 
#define FLAC__MIN_BLOCK_SIZE   (16u)
 
#define FLAC__MAX_BLOCK_SIZE   (65535u)
 
#define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ   (4608u)
 
#define FLAC__MAX_CHANNELS   (8u)
 
#define FLAC__MIN_BITS_PER_SAMPLE   (4u)
 
#define FLAC__MAX_BITS_PER_SAMPLE   (32u)
 
#define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE   (24u)
 
#define FLAC__MAX_SAMPLE_RATE   (655350u)
 
#define FLAC__MAX_LPC_ORDER   (32u)
 
#define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ   (12u)
 
#define FLAC__MIN_QLP_COEFF_PRECISION   (5u)
 
#define FLAC__MAX_QLP_COEFF_PRECISION   (15u)
 
#define FLAC__MAX_FIXED_ORDER   (4u)
 
#define FLAC__MAX_RICE_PARTITION_ORDER   (15u)
 
#define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER   (8u)
 
#define FLAC__STREAM_SYNC_LENGTH   (4u)
 
#define FLAC__STREAM_METADATA_STREAMINFO_LENGTH   (34u)
 
#define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH   (18u)
 
#define FLAC__STREAM_METADATA_HEADER_LENGTH   (4u)
 
+ + + + + + + + + + + + + +

+Enumerations

enum  FLAC__EntropyCodingMethodType { FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE = 0, +FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 = 1 + }
 
enum  FLAC__SubframeType { FLAC__SUBFRAME_TYPE_CONSTANT = 0, +FLAC__SUBFRAME_TYPE_VERBATIM = 1, +FLAC__SUBFRAME_TYPE_FIXED = 2, +FLAC__SUBFRAME_TYPE_LPC = 3 + }
 
enum  FLAC__ChannelAssignment { FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT = 0, +FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE = 1, +FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE = 2, +FLAC__CHANNEL_ASSIGNMENT_MID_SIDE = 3 + }
 
enum  FLAC__FrameNumberType { FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER, +FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER + }
 
enum  FLAC__MetadataType {
+  FLAC__METADATA_TYPE_STREAMINFO = 0, +FLAC__METADATA_TYPE_PADDING = 1, +FLAC__METADATA_TYPE_APPLICATION = 2, +FLAC__METADATA_TYPE_SEEKTABLE = 3, +
+  FLAC__METADATA_TYPE_VORBIS_COMMENT = 4, +FLAC__METADATA_TYPE_CUESHEET = 5, +FLAC__METADATA_TYPE_PICTURE = 6, +FLAC__METADATA_TYPE_UNDEFINED = 7, +
+  FLAC__MAX_METADATA_TYPE = FLAC__MAX_METADATA_TYPE_CODE +
+ }
 
enum  FLAC__StreamMetadata_Picture_Type {
+  FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER = 0, +FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD = 1, +FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON = 2, +FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER = 3, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER = 4, +FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE = 5, +FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA = 6, +FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST = 7, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST = 8, +FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR = 9, +FLAC__STREAM_METADATA_PICTURE_TYPE_BAND = 10, +FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER = 11, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST = 12, +FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION = 13, +FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING = 14, +FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE = 15, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE = 16, +FLAC__STREAM_METADATA_PICTURE_TYPE_FISH = 17, +FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION = 18, +FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE = 19, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE = 20, +FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__bool FLAC__format_sample_rate_is_valid (uint32_t sample_rate)
 
FLAC__bool FLAC__format_blocksize_is_subset (uint32_t blocksize, uint32_t sample_rate)
 
FLAC__bool FLAC__format_sample_rate_is_subset (uint32_t sample_rate)
 
FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal (const char *name)
 
FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal (const FLAC__byte *value, uint32_t length)
 
FLAC__bool FLAC__format_vorbiscomment_entry_is_legal (const FLAC__byte *entry, uint32_t length)
 
FLAC__bool FLAC__format_seektable_is_legal (const FLAC__StreamMetadata_SeekTable *seek_table)
 
uint32_t FLAC__format_seektable_sort (FLAC__StreamMetadata_SeekTable *seek_table)
 
FLAC__bool FLAC__format_cuesheet_is_legal (const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
 
FLAC__bool FLAC__format_picture_is_legal (const FLAC__StreamMetadata_Picture *picture, const char **violation)
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Variables

const char * FLAC__VERSION_STRING
 
const char * FLAC__VENDOR_STRING
 
const FLAC__byte FLAC__STREAM_SYNC_STRING [4]
 
const uint32_t FLAC__STREAM_SYNC
 
const uint32_t FLAC__STREAM_SYNC_LEN
 
const char *const FLAC__EntropyCodingMethodTypeString []
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
 
const char *const FLAC__SubframeTypeString []
 
const uint32_t FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
 
const uint32_t FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
 
const uint32_t FLAC__SUBFRAME_ZERO_PAD_LEN
 
const uint32_t FLAC__SUBFRAME_TYPE_LEN
 
const uint32_t FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
 
const uint32_t FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
 
const char *const FLAC__ChannelAssignmentString []
 
const char *const FLAC__FrameNumberTypeString []
 
const uint32_t FLAC__FRAME_HEADER_SYNC
 
const uint32_t FLAC__FRAME_HEADER_SYNC_LEN
 
const uint32_t FLAC__FRAME_HEADER_RESERVED_LEN
 
const uint32_t FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
 
const uint32_t FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
 
const uint32_t FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
 
const uint32_t FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
 
const uint32_t FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
 
const uint32_t FLAC__FRAME_HEADER_ZERO_PAD_LEN
 
const uint32_t FLAC__FRAME_HEADER_CRC_LEN
 
const uint32_t FLAC__FRAME_FOOTER_CRC_LEN
 
const char *const FLAC__MetadataTypeString []
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
 
const uint32_t FLAC__STREAM_METADATA_APPLICATION_ID_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
 
const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
 
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
 
const char *const FLAC__StreamMetadata_Picture_TypeString []
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_IS_LAST_LEN
 
const uint32_t FLAC__STREAM_METADATA_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_LENGTH_LEN
 
+

Detailed Description

+

This module contains structure definitions for the representation of FLAC format components in memory. These are the basic structures used by the rest of the interfaces.

+

See the detailed documentation in the format module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h_source.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h_source.html new file mode 100644 index 000000000..32f7bddc1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/format_8h_source.html @@ -0,0 +1,292 @@ + + + + + + + +FLAC: include/FLAC/format.h Source File + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + + +
+
+
+
format.h
+
+
+Go to the documentation of this file.
1 /* libFLAC - Free Lossless Audio Codec library
2  * Copyright (C) 2000-2009 Josh Coalson
3  * Copyright (C) 2011-2016 Xiph.Org Foundation
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * - Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  *
12  * - Redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution.
15  *
16  * - Neither the name of the Xiph.org Foundation nor the names of its
17  * contributors may be used to endorse or promote products derived from
18  * this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef FLAC__FORMAT_H
34 #define FLAC__FORMAT_H
35 
36 #include "export.h"
37 #include "ordinals.h"
38 
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
87 /*
88  Most of the values described in this file are defined by the FLAC
89  format specification. There is nothing to tune here.
90 */
91 
93 #define FLAC__MAX_METADATA_TYPE_CODE (126u)
94 
96 #define FLAC__MIN_BLOCK_SIZE (16u)
97 
99 #define FLAC__MAX_BLOCK_SIZE (65535u)
100 
103 #define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ (4608u)
104 
106 #define FLAC__MAX_CHANNELS (8u)
107 
109 #define FLAC__MIN_BITS_PER_SAMPLE (4u)
110 
112 #define FLAC__MAX_BITS_PER_SAMPLE (32u)
113 
122 #define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE (24u)
123 
128 #define FLAC__MAX_SAMPLE_RATE (655350u)
129 
131 #define FLAC__MAX_LPC_ORDER (32u)
132 
135 #define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ (12u)
136 
140 #define FLAC__MIN_QLP_COEFF_PRECISION (5u)
141 
145 #define FLAC__MAX_QLP_COEFF_PRECISION (15u)
146 
148 #define FLAC__MAX_FIXED_ORDER (4u)
149 
151 #define FLAC__MAX_RICE_PARTITION_ORDER (15u)
152 
154 #define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER (8u)
155 
162 extern FLAC_API const char *FLAC__VERSION_STRING;
163 
168 extern FLAC_API const char *FLAC__VENDOR_STRING;
169 
171 extern FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4]; /* = "fLaC" */
172 
176 extern FLAC_API const uint32_t FLAC__STREAM_SYNC; /* = 0x664C6143 */
177 
179 extern FLAC_API const uint32_t FLAC__STREAM_SYNC_LEN; /* = 32 bits */
180 
182 #define FLAC__STREAM_SYNC_LENGTH (4u)
183 
184 
185 /*****************************************************************************
186  *
187  * Subframe structures
188  *
189  *****************************************************************************/
190 
191 /*****************************************************************************/
192 
194 typedef enum {
203 
209 extern FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[];
210 
211 
214 typedef struct {
215 
216  uint32_t *parameters;
219  uint32_t *raw_bits;
230 
233 typedef struct {
234 
235  uint32_t order;
242 
243 extern FLAC_API const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN;
244 extern FLAC_API const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN;
246 extern FLAC_API const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN;
255 typedef struct {
257  union {
259  } data;
261 
262 extern FLAC_API const uint32_t FLAC__ENTROPY_CODING_METHOD_TYPE_LEN;
264 /*****************************************************************************/
265 
267 typedef enum {
273 
279 extern FLAC_API const char * const FLAC__SubframeTypeString[];
280 
281 
284 typedef struct {
285  FLAC__int32 value;
287 
288 
291 typedef struct {
292  const FLAC__int32 *data;
294 
295 
298 typedef struct {
302  uint32_t order;
305  FLAC__int32 warmup[FLAC__MAX_FIXED_ORDER];
308  const FLAC__int32 *residual;
311 
312 
315 typedef struct {
319  uint32_t order;
328  FLAC__int32 qlp_coeff[FLAC__MAX_LPC_ORDER];
331  FLAC__int32 warmup[FLAC__MAX_LPC_ORDER];
334  const FLAC__int32 *residual;
337 
338 extern FLAC_API const uint32_t FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN;
339 extern FLAC_API const uint32_t FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN;
344 typedef struct {
345  FLAC__SubframeType type;
346  union {
347  FLAC__Subframe_Constant constant;
348  FLAC__Subframe_Fixed fixed;
349  FLAC__Subframe_LPC lpc;
350  FLAC__Subframe_Verbatim verbatim;
351  } data;
352  uint32_t wasted_bits;
354 
362 extern FLAC_API const uint32_t FLAC__SUBFRAME_ZERO_PAD_LEN;
363 extern FLAC_API const uint32_t FLAC__SUBFRAME_TYPE_LEN;
364 extern FLAC_API const uint32_t FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN;
366 extern FLAC_API const uint32_t FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK;
367 extern FLAC_API const uint32_t FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK;
368 extern FLAC_API const uint32_t FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK;
369 extern FLAC_API const uint32_t FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK;
371 /*****************************************************************************/
372 
373 
374 /*****************************************************************************
375  *
376  * Frame structures
377  *
378  *****************************************************************************/
379 
381 typedef enum {
387 
393 extern FLAC_API const char * const FLAC__ChannelAssignmentString[];
394 
396 typedef enum {
400 
406 extern FLAC_API const char * const FLAC__FrameNumberTypeString[];
407 
408 
411 typedef struct {
412  uint32_t blocksize;
415  uint32_t sample_rate;
418  uint32_t channels;
424  uint32_t bits_per_sample;
427  FLAC__FrameNumberType number_type;
432  union {
433  FLAC__uint32 frame_number;
434  FLAC__uint64 sample_number;
435  } number;
439  FLAC__uint8 crc;
445 
446 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_SYNC;
447 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_SYNC_LEN;
448 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_RESERVED_LEN;
449 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN;
450 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_BLOCK_SIZE_LEN;
451 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_SAMPLE_RATE_LEN;
452 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN;
453 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN;
454 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_ZERO_PAD_LEN;
455 extern FLAC_API const uint32_t FLAC__FRAME_HEADER_CRC_LEN;
460 typedef struct {
461  FLAC__uint16 crc;
467 
468 extern FLAC_API const uint32_t FLAC__FRAME_FOOTER_CRC_LEN;
473 typedef struct {
474  FLAC__FrameHeader header;
476  FLAC__FrameFooter footer;
477 } FLAC__Frame;
478 
479 /*****************************************************************************/
480 
481 
482 /*****************************************************************************
483  *
484  * Meta-data structures
485  *
486  *****************************************************************************/
487 
489 typedef enum {
490 
518 
524 extern FLAC_API const char * const FLAC__MetadataTypeString[];
525 
526 
529 typedef struct {
530  uint32_t min_blocksize, max_blocksize;
531  uint32_t min_framesize, max_framesize;
532  uint32_t sample_rate;
533  uint32_t channels;
534  uint32_t bits_per_sample;
535  FLAC__uint64 total_samples;
536  FLAC__byte md5sum[16];
538 
539 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN;
540 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN;
541 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN;
542 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN;
543 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN;
544 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN;
545 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN;
546 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN;
547 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN;
550 #define FLAC__STREAM_METADATA_STREAMINFO_LENGTH (34u)
551 
554 typedef struct {
555  int dummy;
561 
562 
565 typedef struct {
566  FLAC__byte id[4];
567  FLAC__byte *data;
569 
570 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_APPLICATION_ID_LEN;
574 typedef struct {
575  FLAC__uint64 sample_number;
578  FLAC__uint64 stream_offset;
582  uint32_t frame_samples;
585 
586 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN;
587 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN;
588 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN;
591 #define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH (18u)
592 
597 extern FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
598 
599 
612 typedef struct {
613  uint32_t num_points;
616 
617 
624 typedef struct {
625  FLAC__uint32 length;
626  FLAC__byte *entry;
628 
629 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN;
634 typedef struct {
636  FLAC__uint32 num_comments;
639 
640 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN;
647 typedef struct {
648  FLAC__uint64 offset;
653  FLAC__byte number;
656 
657 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN;
658 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN;
659 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN;
666 typedef struct {
667  FLAC__uint64 offset;
670  FLAC__byte number;
673  char isrc[13];
676  uint32_t type:1;
679  uint32_t pre_emphasis:1;
682  FLAC__byte num_indices;
689 
690 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN;
691 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN;
692 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN;
693 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN;
694 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN;
695 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN;
696 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN;
703 typedef struct {
704  char media_catalog_number[129];
710  FLAC__uint64 lead_in;
713  FLAC__bool is_cd;
716  uint32_t num_tracks;
723 
724 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN;
725 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN;
726 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN;
727 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN;
728 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN;
732 typedef enum {
754  FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED
756 
763 extern FLAC_API const char * const FLAC__StreamMetadata_Picture_TypeString[];
764 
769 typedef struct {
770  FLAC__StreamMetadata_Picture_Type type;
773  char *mime_type;
784  FLAC__byte *description;
791  FLAC__uint32 width;
794  FLAC__uint32 height;
797  FLAC__uint32 depth;
800  FLAC__uint32 colors;
805  FLAC__uint32 data_length;
808  FLAC__byte *data;
812 
813 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_TYPE_LEN;
814 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN;
815 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN;
816 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN;
817 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN;
818 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN;
819 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_COLORS_LEN;
820 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN;
827 typedef struct {
828  FLAC__byte *data;
830 
831 
834 typedef struct {
835  FLAC__MetadataType type;
840  FLAC__bool is_last;
843  uint32_t length;
846  union {
851  FLAC__StreamMetadata_VorbisComment vorbis_comment;
855  } data;
859 
860 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_IS_LAST_LEN;
861 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_TYPE_LEN;
862 extern FLAC_API const uint32_t FLAC__STREAM_METADATA_LENGTH_LEN;
865 #define FLAC__STREAM_METADATA_HEADER_LENGTH (4u)
866 
867 /*****************************************************************************/
868 
869 
870 /*****************************************************************************
871  *
872  * Utility functions
873  *
874  *****************************************************************************/
875 
883 FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(uint32_t sample_rate);
884 
895 FLAC_API FLAC__bool FLAC__format_blocksize_is_subset(uint32_t blocksize, uint32_t sample_rate);
896 
906 FLAC_API FLAC__bool FLAC__format_sample_rate_is_subset(uint32_t sample_rate);
907 
920 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name);
921 
936 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, uint32_t length);
937 
953 FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, uint32_t length);
954 
965 FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table);
966 
979 FLAC_API uint32_t FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table);
980 
999 FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation);
1000 
1017 FLAC_API FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation);
1018 
1019 /* \} */
1020 
1021 #ifdef __cplusplus
1022 }
1023 #endif
1024 
1025 #endif
FLAC__byte number
Definition: format.h:670
+
const FLAC__EntropyCodingMethod_PartitionedRiceContents * contents
Definition: format.h:238
+
const uint32_t FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
+
uint32_t order
Definition: format.h:235
+
uint32_t bits_per_sample
Definition: format.h:424
+
const char *const FLAC__ChannelAssignmentString[]
+
const uint32_t FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
+
FLAC__bool FLAC__format_sample_rate_is_subset(uint32_t sample_rate)
+
Definition: format.h:512
+
const uint32_t FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
+
FLAC__uint8 crc
Definition: format.h:439
+
FLAC__uint16 crc
Definition: format.h:461
+ +
Definition: format.h:506
+ + +
FLAC__byte * description
Definition: format.h:784
+
FLAC__uint32 height
Definition: format.h:794
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
+
FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
+
uint32_t * raw_bits
Definition: format.h:219
+ +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
+
FLAC__uint32 width
Definition: format.h:791
+
FLAC__bool FLAC__format_blocksize_is_subset(uint32_t blocksize, uint32_t sample_rate)
+
Definition: format.h:284
+
const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
+ + +
This module contains #defines and symbols for exporting function calls, and providing version informa...
+
const char *const FLAC__StreamMetadata_Picture_TypeString[]
+
FLAC__StreamMetadata_CueSheet_Track * tracks
Definition: format.h:719
+
FLAC__uint32 colors
Definition: format.h:800
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
+ +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
+ +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
+ + +
const uint32_t FLAC__SUBFRAME_ZERO_PAD_LEN
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
+
FLAC__ChannelAssignment channel_assignment
Definition: format.h:421
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
+
const uint32_t FLAC__FRAME_HEADER_ZERO_PAD_LEN
+
const uint32_t FLAC__FRAME_FOOTER_CRC_LEN
+
Definition: format.h:503
+
char * mime_type
Definition: format.h:773
+
Definition: format.h:612
+ +
uint32_t type
Definition: format.h:676
+
Definition: format.h:397
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
+
FLAC__bool is_cd
Definition: format.h:713
+
Definition: format.h:385
+
FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, uint32_t length)
+
Definition: format.h:666
+ +
uint32_t * parameters
Definition: format.h:216
+
const uint32_t FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
+
const uint32_t FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
+
#define FLAC__MAX_CHANNELS
Definition: format.h:106
+
const uint32_t FLAC__FRAME_HEADER_SYNC
+
FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
+
Definition: format.h:554
+
int quantization_level
Definition: format.h:325
+
Definition: format.h:647
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
+
const uint32_t FLAC__SUBFRAME_TYPE_LEN
+
const FLAC__int32 * residual
Definition: format.h:334
+
const uint32_t FLAC__STREAM_METADATA_IS_LAST_LEN
+
uint32_t FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
+
Definition: format.h:344
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
+
Definition: format.h:271
+
uint32_t pre_emphasis
Definition: format.h:679
+
uint32_t blocksize
Definition: format.h:412
+
const uint32_t FLAC__STREAM_METADATA_APPLICATION_ID_LEN
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
+
uint32_t num_tracks
Definition: format.h:716
+
Definition: format.h:411
+
FLAC__uint64 sample_number
Definition: format.h:575
+
const uint32_t FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
+ +
const uint32_t FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
+
FLAC__byte num_indices
Definition: format.h:682
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
+
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
+
uint32_t sample_rate
Definition: format.h:415
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
+
Definition: format.h:491
+
Definition: format.h:473
+
Definition: format.h:634
+ +
FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, uint32_t length)
+ +
FLAC__SubframeType
Definition: format.h:267
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
+
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
+
const char *const FLAC__MetadataTypeString[]
+
FLAC__uint64 offset
Definition: format.h:648
+
#define FLAC__MAX_FIXED_ORDER
Definition: format.h:148
+
const FLAC__int32 * data
Definition: format.h:292
+
FLAC__bool is_last
Definition: format.h:840
+
const uint32_t FLAC__STREAM_METADATA_TYPE_LEN
+
const uint32_t FLAC__FRAME_HEADER_RESERVED_LEN
+
Definition: format.h:315
+
FLAC__StreamMetadata_Picture_Type type
Definition: format.h:770
+ +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
+
const char *const FLAC__FrameNumberTypeString[]
+
Definition: format.h:834
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
+
Definition: format.h:383
+
FLAC__uint64 stream_offset
Definition: format.h:578
+ +
FLAC__bool FLAC__format_sample_rate_is_valid(uint32_t sample_rate)
+
Definition: format.h:509
+
uint32_t order
Definition: format.h:302
+
const uint32_t FLAC__FRAME_HEADER_CRC_LEN
+
const uint32_t FLAC__FRAME_HEADER_SYNC_LEN
+
const uint32_t FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
+
Definition: format.h:827
+
FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
+
const char * FLAC__VERSION_STRING
+
FLAC__StreamMetadata_CueSheet_Index * indices
Definition: format.h:685
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
+
const uint32_t FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
+
FLAC__EntropyCodingMethodType
Definition: format.h:194
+
const uint32_t FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
+ +
Definition: format.h:268
+
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
+
FLAC__MetadataType
Definition: format.h:489
+
Definition: format.h:500
+ +
Definition: format.h:497
+ +
Definition: format.h:624
+
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
+
Definition: format.h:270
+
Definition: format.h:529
+
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
+
FLAC__uint32 data_length
Definition: format.h:805
+
#define FLAC__MAX_METADATA_TYPE_CODE
Definition: format.h:93
+
const uint32_t FLAC__STREAM_SYNC
+
uint32_t channels
Definition: format.h:418
+
Definition: format.h:565
+
uint32_t capacity_by_order
Definition: format.h:224
+
const uint32_t FLAC__STREAM_METADATA_LENGTH_LEN
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
+
const uint32_t FLAC__STREAM_SYNC_LEN
+
Definition: format.h:384
+
FLAC__StreamMetadata_Picture_Type
Definition: format.h:732
+
FLAC__ChannelAssignment
Definition: format.h:381
+
Definition: format.h:382
+
#define FLAC__MAX_LPC_ORDER
Definition: format.h:131
+
Definition: format.h:494
+
const char * FLAC__VENDOR_STRING
+
int dummy
Definition: format.h:555
+
FLAC__uint64 lead_in
Definition: format.h:710
+
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
+
Definition: format.h:703
+
const uint32_t FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
+
FLAC__FrameNumberType number_type
Definition: format.h:427
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
+
FLAC__uint64 offset
Definition: format.h:667
+
FLAC__MetadataType type
Definition: format.h:835
+
FLAC__bool FLAC__format_picture_is_legal(const FLAC__StreamMetadata_Picture *picture, const char **violation)
+
const uint32_t FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
+
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:316
+
Definition: format.h:269
+
Definition: format.h:460
+
Definition: format.h:515
+
FLAC__byte number
Definition: format.h:653
+
uint32_t qlp_coeff_precision
Definition: format.h:322
+ +
uint32_t length
Definition: format.h:843
+
Definition: format.h:255
+ +
uint32_t frame_samples
Definition: format.h:582
+ +
const uint32_t FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
+
const FLAC__byte FLAC__STREAM_SYNC_STRING[4]
+
const char *const FLAC__EntropyCodingMethodTypeString[]
+
const char *const FLAC__SubframeTypeString[]
+ +
const FLAC__int32 * residual
Definition: format.h:308
+
FLAC__FrameNumberType
Definition: format.h:396
+ +
const uint32_t FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
+
Definition: format.h:574
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
+
FLAC__byte * data
Definition: format.h:808
+ +
FLAC__int32 value
Definition: format.h:285
+
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
+
Definition: format.h:769
+
Definition: format.h:291
+
FLAC__EntropyCodingMethod entropy_coding_method
Definition: format.h:299
+
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
+
Definition: format.h:298
+
FLAC__uint32 depth
Definition: format.h:797
+
const uint32_t FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
+
uint32_t order
Definition: format.h:319
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions.html new file mode 100644 index 000000000..5cf22e449 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions.html @@ -0,0 +1,89 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- a -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_0x7e.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_0x7e.html new file mode 100644 index 000000000..1ef4a1699 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_0x7e.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- ~ -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_b.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_b.html new file mode 100644 index 000000000..9928f8ef7 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_b.html @@ -0,0 +1,76 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- b -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_c.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_c.html new file mode 100644 index 000000000..ace96b335 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_c.html @@ -0,0 +1,101 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- c -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_d.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_d.html new file mode 100644 index 000000000..daa857d83 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_d.html @@ -0,0 +1,103 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- d -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_e.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_e.html new file mode 100644 index 000000000..f51bfb732 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_e.html @@ -0,0 +1,80 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- e -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_f.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_f.html new file mode 100644 index 000000000..20fdcf2fa --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_f.html @@ -0,0 +1,83 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- f -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func.html new file mode 100644 index 000000000..bae87609e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func.html @@ -0,0 +1,89 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_0x7e.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_0x7e.html new file mode 100644 index 000000000..0ae347e81 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_0x7e.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- ~ -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_c.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_c.html new file mode 100644 index 000000000..6b331edf8 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_c.html @@ -0,0 +1,82 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- c -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_d.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_d.html new file mode 100644 index 000000000..c8948e7ea --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_d.html @@ -0,0 +1,86 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- d -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_e.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_e.html new file mode 100644 index 000000000..ebe7255ab --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_e.html @@ -0,0 +1,76 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- e -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_f.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_f.html new file mode 100644 index 000000000..ae078e530 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_f.html @@ -0,0 +1,80 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- f -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_g.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_g.html new file mode 100644 index 000000000..51365e09e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_g.html @@ -0,0 +1,195 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- g -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_i.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_i.html new file mode 100644 index 000000000..3db600b4d --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_i.html @@ -0,0 +1,130 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_l.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_l.html new file mode 100644 index 000000000..7e986f013 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_l.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- l -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_m.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_m.html new file mode 100644 index 000000000..94d933b49 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_m.html @@ -0,0 +1,77 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- m -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_n.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_n.html new file mode 100644 index 000000000..f4a2c22e2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_n.html @@ -0,0 +1,74 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_o.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_o.html new file mode 100644 index 000000000..f96be7590 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_o.html @@ -0,0 +1,110 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_p.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_p.html new file mode 100644 index 000000000..8b9142cad --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_p.html @@ -0,0 +1,101 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- p -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_r.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_r.html new file mode 100644 index 000000000..84482acb1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_r.html @@ -0,0 +1,102 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- r -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_s.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_s.html new file mode 100644 index 000000000..a39d41ecd --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_s.html @@ -0,0 +1,235 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- s -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_t.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_t.html new file mode 100644 index 000000000..97ca00f84 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_t.html @@ -0,0 +1,92 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- t -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_u.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_u.html new file mode 100644 index 000000000..08d0ff8e2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_u.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- u -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_v.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_v.html new file mode 100644 index 000000000..988301793 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_v.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- v -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_w.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_w.html new file mode 100644 index 000000000..514b5b549 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_func_w.html @@ -0,0 +1,78 @@ + + + + + + + +FLAC: Class Members - Functions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- w -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_g.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_g.html new file mode 100644 index 000000000..3dead1a79 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_g.html @@ -0,0 +1,195 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- g -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_h.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_h.html new file mode 100644 index 000000000..11aeddf13 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_h.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- h -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_i.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_i.html new file mode 100644 index 000000000..8c12f5968 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_i.html @@ -0,0 +1,140 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_l.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_l.html new file mode 100644 index 000000000..8f05cb5e3 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_l.html @@ -0,0 +1,79 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- l -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_m.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_m.html new file mode 100644 index 000000000..31611ed3a --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_m.html @@ -0,0 +1,83 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- m -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_n.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_n.html new file mode 100644 index 000000000..5dd526f12 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_n.html @@ -0,0 +1,88 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- n -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_o.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_o.html new file mode 100644 index 000000000..1bed69d07 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_o.html @@ -0,0 +1,119 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+ + +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_p.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_p.html new file mode 100644 index 000000000..caa445df6 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_p.html @@ -0,0 +1,107 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- p -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_q.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_q.html new file mode 100644 index 000000000..3b93c0876 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_q.html @@ -0,0 +1,79 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- q -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_r.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_r.html new file mode 100644 index 000000000..b3eb34a2d --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_r.html @@ -0,0 +1,109 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- r -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_s.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_s.html new file mode 100644 index 000000000..26803d708 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_s.html @@ -0,0 +1,244 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- s -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_t.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_t.html new file mode 100644 index 000000000..5090233cf --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_t.html @@ -0,0 +1,100 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- t -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_u.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_u.html new file mode 100644 index 000000000..9648d20d5 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_u.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- u -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_v.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_v.html new file mode 100644 index 000000000..5f511f7e6 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_v.html @@ -0,0 +1,76 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- v -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_vars.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_vars.html new file mode 100644 index 000000000..ca7beb19b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_vars.html @@ -0,0 +1,286 @@ + + + + + + + +FLAC: Class Members - Variables + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- b -

+ + +

- c -

+ + +

- d -

+ + +

- e -

+ + +

- f -

+ + +

- h -

+ + +

- i -

+ + +

- l -

+ + +

- m -

+ + +

- n -

+ + +

- o -

+ + +

- p -

+ + +

- q -

+ + +

- r -

+ + +

- s -

+ + +

- t -

+ + +

- v -

+ + +

- w -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_w.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_w.html new file mode 100644 index 000000000..8c859cc87 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/functions_w.html @@ -0,0 +1,85 @@ + + + + + + + +FLAC: Class Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented class members with links to the class documentation for each member:
+ +

- w -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals.html new file mode 100644 index 000000000..ef27b4976 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals.html @@ -0,0 +1,1552 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
Here is a list of all documented file members with links to the documentation:
+ +

- f -

    +
  • FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_MID_SIDE +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE +: format.h +
  • +
  • FLAC__ChannelAssignment +: format.h +
  • +
  • FLAC__ChannelAssignmentString +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_TYPE_LEN +: format.h +
  • +
  • FLAC__EntropyCodingMethodType +: format.h +
  • +
  • FLAC__EntropyCodingMethodTypeString +: format.h +
  • +
  • FLAC__format_blocksize_is_subset() +: format.h +
  • +
  • FLAC__format_cuesheet_is_legal() +: format.h +
  • +
  • FLAC__format_picture_is_legal() +: format.h +
  • +
  • FLAC__format_sample_rate_is_subset() +: format.h +
  • +
  • FLAC__format_sample_rate_is_valid() +: format.h +
  • +
  • FLAC__format_seektable_is_legal() +: format.h +
  • +
  • FLAC__format_seektable_sort() +: format.h +
  • +
  • FLAC__format_vorbiscomment_entry_is_legal() +: format.h +
  • +
  • FLAC__format_vorbiscomment_entry_name_is_legal() +: format.h +
  • +
  • FLAC__format_vorbiscomment_entry_value_is_legal() +: format.h +
  • +
  • FLAC__FRAME_FOOTER_CRC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_CRC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_RESERVED_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_SAMPLE_RATE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_SYNC +: format.h +
  • +
  • FLAC__FRAME_HEADER_SYNC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_ZERO_PAD_LEN +: format.h +
  • +
  • FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER +: format.h +
  • +
  • FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER +: format.h +
  • +
  • FLAC__FrameNumberType +: format.h +
  • +
  • FLAC__FrameNumberTypeString +: format.h +
  • +
  • FLAC__IOCallback_Close +: callback.h +
  • +
  • FLAC__IOCallback_Eof +: callback.h +
  • +
  • FLAC__IOCallback_Read +: callback.h +
  • +
  • FLAC__IOCallback_Seek +: callback.h +
  • +
  • FLAC__IOCallback_Tell +: callback.h +
  • +
  • FLAC__IOCallback_Write +: callback.h +
  • +
  • FLAC__IOHandle +: callback.h +
  • +
  • FLAC__MAX_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__MAX_BLOCK_SIZE +: format.h +
  • +
  • FLAC__MAX_CHANNELS +: format.h +
  • +
  • FLAC__MAX_FIXED_ORDER +: format.h +
  • +
  • FLAC__MAX_LPC_ORDER +: format.h +
  • +
  • FLAC__MAX_METADATA_TYPE +: format.h +
  • +
  • FLAC__MAX_METADATA_TYPE_CODE +: format.h +
  • +
  • FLAC__MAX_QLP_COEFF_PRECISION +: format.h +
  • +
  • FLAC__MAX_RICE_PARTITION_ORDER +: format.h +
  • +
  • FLAC__MAX_SAMPLE_RATE +: format.h +
  • +
  • FLAC__Metadata_Chain +: metadata.h +
  • +
  • FLAC__metadata_chain_check_if_tempfile_needed() +: metadata.h +
  • +
  • FLAC__metadata_chain_delete() +: metadata.h +
  • +
  • FLAC__metadata_chain_merge_padding() +: metadata.h +
  • +
  • FLAC__metadata_chain_new() +: metadata.h +
  • +
  • FLAC__metadata_chain_read() +: metadata.h +
  • +
  • FLAC__metadata_chain_read_ogg() +: metadata.h +
  • +
  • FLAC__metadata_chain_read_ogg_with_callbacks() +: metadata.h +
  • +
  • FLAC__metadata_chain_read_with_callbacks() +: metadata.h +
  • +
  • FLAC__metadata_chain_sort_padding() +: metadata.h +
  • +
  • FLAC__metadata_chain_status() +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_BAD_METADATA +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_OK +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_READ_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL +: metadata.h +
  • +
  • FLAC__metadata_chain_write() +: metadata.h +
  • +
  • FLAC__metadata_chain_write_with_callbacks() +: metadata.h +
  • +
  • FLAC__metadata_chain_write_with_callbacks_and_tempfile() +: metadata.h +
  • +
  • FLAC__Metadata_ChainStatus +: metadata.h +
  • +
  • FLAC__Metadata_ChainStatusString +: metadata.h +
  • +
  • FLAC__metadata_get_cuesheet() +: metadata.h +
  • +
  • FLAC__metadata_get_picture() +: metadata.h +
  • +
  • FLAC__metadata_get_streaminfo() +: metadata.h +
  • +
  • FLAC__metadata_get_tags() +: metadata.h +
  • +
  • FLAC__Metadata_Iterator +: metadata.h +
  • +
  • FLAC__metadata_iterator_delete() +: metadata.h +
  • +
  • FLAC__metadata_iterator_delete_block() +: metadata.h +
  • +
  • FLAC__metadata_iterator_get_block() +: metadata.h +
  • +
  • FLAC__metadata_iterator_get_block_type() +: metadata.h +
  • +
  • FLAC__metadata_iterator_init() +: metadata.h +
  • +
  • FLAC__metadata_iterator_insert_block_after() +: metadata.h +
  • +
  • FLAC__metadata_iterator_insert_block_before() +: metadata.h +
  • +
  • FLAC__metadata_iterator_new() +: metadata.h +
  • +
  • FLAC__metadata_iterator_next() +: metadata.h +
  • +
  • FLAC__metadata_iterator_prev() +: metadata.h +
  • +
  • FLAC__metadata_iterator_set_block() +: metadata.h +
  • +
  • FLAC__metadata_object_application_set_data() +: metadata.h +
  • +
  • FLAC__metadata_object_clone() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_calculate_cddb_id() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_delete_track() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_insert_blank_track() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_insert_track() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_is_legal() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_resize_tracks() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_set_track() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_clone() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_delete() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_delete_index() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_insert_blank_index() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_insert_index() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_new() +: metadata.h +
  • +
  • FLAC__metadata_object_cuesheet_track_resize_indices() +: metadata.h +
  • +
  • FLAC__metadata_object_delete() +: metadata.h +
  • +
  • FLAC__metadata_object_is_equal() +: metadata.h +
  • +
  • FLAC__metadata_object_new() +: metadata.h +
  • +
  • FLAC__metadata_object_picture_is_legal() +: metadata.h +
  • +
  • FLAC__metadata_object_picture_set_data() +: metadata.h +
  • +
  • FLAC__metadata_object_picture_set_description() +: metadata.h +
  • +
  • FLAC__metadata_object_picture_set_mime_type() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_delete_point() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_insert_point() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_is_legal() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_resize_points() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_set_point() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_append_placeholders() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_append_point() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_append_points() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_append_spaced_points() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_append_spaced_points_by_samples() +: metadata.h +
  • +
  • FLAC__metadata_object_seektable_template_sort() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_append_comment() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_delete_comment() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_entry_matches() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_find_entry_from() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_insert_comment() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_remove_entries_matching() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_remove_entry_matching() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_replace_comment() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_resize_comments() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_set_comment() +: metadata.h +
  • +
  • FLAC__metadata_object_vorbiscomment_set_vendor_string() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_delete() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_delete_block() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_get_application_id() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_get_block() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_get_block_length() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_get_block_offset() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_get_block_type() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_init() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_insert_block_after() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_is_last() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_is_writable() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_new() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_next() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_prev() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_set_block() +: metadata.h +
  • +
  • FLAC__metadata_simple_iterator_status() +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR +: metadata.h +
  • +
  • FLAC__Metadata_SimpleIterator +: metadata.h +
  • +
  • FLAC__Metadata_SimpleIteratorStatus +: metadata.h +
  • +
  • FLAC__Metadata_SimpleIteratorStatusString +: metadata.h +
  • +
  • FLAC__METADATA_TYPE_APPLICATION +: format.h +
  • +
  • FLAC__METADATA_TYPE_CUESHEET +: format.h +
  • +
  • FLAC__METADATA_TYPE_PADDING +: format.h +
  • +
  • FLAC__METADATA_TYPE_PICTURE +: format.h +
  • +
  • FLAC__METADATA_TYPE_SEEKTABLE +: format.h +
  • +
  • FLAC__METADATA_TYPE_STREAMINFO +: format.h +
  • +
  • FLAC__METADATA_TYPE_UNDEFINED +: format.h +
  • +
  • FLAC__METADATA_TYPE_VORBIS_COMMENT +: format.h +
  • +
  • FLAC__MetadataType +: format.h +
  • +
  • FLAC__MetadataTypeString +: format.h +
  • +
  • FLAC__MIN_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__MIN_BLOCK_SIZE +: format.h +
  • +
  • FLAC__MIN_QLP_COEFF_PRECISION +: format.h +
  • +
  • FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__STREAM_DECODER_ABORTED +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_delete() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_END_OF_STREAM +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_finish() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_flush() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_bits_per_sample() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_blocksize() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_channel_assignment() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_channels() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_decode_position() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_md5_checking() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_resolved_state_string() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_sample_rate() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_state() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_get_total_samples() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_FILE() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_file() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_ogg_file() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_ogg_FILE() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_ogg_stream() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_init_stream() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_new() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_OGG_ERROR +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_process_single() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_process_until_end_of_metadata() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_process_until_end_of_stream() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_FRAME +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_METADATA +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_ABORT +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_CONTINUE +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_reset() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEARCH_FOR_METADATA +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_seek_absolute() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_md5_checking() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_ignore() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_ignore_all() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_ignore_application() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_respond() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_respond_all() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_metadata_respond_application() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_set_ogg_serial_number() +: stream_decoder.h +
  • +
  • FLAC__stream_decoder_skip_single_frame() +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_UNINITIALIZED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_WRITE_STATUS_ABORT +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE +: stream_decoder.h +
  • +
  • FLAC__STREAM_ENCODER_CLIENT_ERROR +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_delete() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_finish() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_FRAMING_ERROR +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_bits_per_sample() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_blocksize() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_channels() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_do_escape_coding() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_do_exhaustive_model_search() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_do_mid_side_stereo() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_do_qlp_coeff_prec_search() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_loose_mid_side_stereo() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_max_lpc_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_max_residual_partition_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_min_residual_partition_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_qlp_coeff_precision() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_resolved_state_string() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_rice_parameter_search_dist() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_sample_rate() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_state() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_streamable_subset() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_total_samples_estimate() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_verify() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_verify_decoder_error_stats() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_get_verify_decoder_state() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_file() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_FILE() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_ogg_file() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_ogg_FILE() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_ogg_stream() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_init_stream() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_IO_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_new() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_OGG_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_OK +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_process() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_process_interleaved() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_ABORT +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_apodization() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_bits_per_sample() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_blocksize() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_channels() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_compression_level() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_do_escape_coding() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_do_exhaustive_model_search() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_do_mid_side_stereo() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_do_qlp_coeff_prec_search() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_loose_mid_side_stereo() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_max_lpc_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_max_residual_partition_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_metadata() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_min_residual_partition_order() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_ogg_serial_number() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_qlp_coeff_precision() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_rice_parameter_search_dist() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_sample_rate() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_streamable_subset() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_total_samples_estimate() +: stream_encoder.h +
  • +
  • FLAC__stream_encoder_set_verify() +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_UNINITIALIZED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_WRITE_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_METADATA_APPLICATION_ID_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_HEADER_LENGTH +: format.h +
  • +
  • FLAC__STREAM_METADATA_IS_LAST_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_COLORS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BAND +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FISH +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_LENGTH +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_LENGTH +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN +: format.h +
  • +
  • FLAC__STREAM_SYNC +: format.h +
  • +
  • FLAC__STREAM_SYNC_LEN +: format.h +
  • +
  • FLAC__STREAM_SYNC_LENGTH +: format.h +
  • +
  • FLAC__STREAM_SYNC_STRING +: format.h +
  • +
  • FLAC__StreamDecoderEofCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderErrorCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderErrorStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderErrorStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderInitStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderInitStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderLengthCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderLengthStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderLengthStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderMetadataCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderReadCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderReadStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderReadStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderSeekCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderSeekStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderSeekStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderState +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderStateString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderTellCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderTellStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderTellStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderWriteCallback +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderWriteStatus +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderWriteStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamEncoderInitStatus +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderInitStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderMetadataCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderProgressCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderReadCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderReadStatus +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderReadStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderSeekCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderSeekStatus +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderSeekStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderState +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderStateString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderTellCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderTellStatus +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderTellStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderWriteCallback +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderWriteStatus +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderWriteStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamMetadata_Picture_Type +: format.h +
  • +
  • FLAC__StreamMetadata_Picture_TypeString +: format.h +
  • +
  • FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_CONSTANT +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_FIXED +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LPC +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_VERBATIM +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_ZERO_PAD_LEN +: format.h +
  • +
  • FLAC__SubframeType +: format.h +
  • +
  • FLAC__SubframeTypeString +: format.h +
  • +
  • FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ +: format.h +
  • +
  • FLAC__SUBSET_MAX_LPC_ORDER_48000HZ +: format.h +
  • +
  • FLAC__SUBSET_MAX_RICE_PARTITION_ORDER +: format.h +
  • +
  • FLAC__VENDOR_STRING +: format.h +
  • +
  • FLAC__VERSION_STRING +: format.h +
  • +
  • FLAC_API_SUPPORTS_OGG_FLAC +: export.h +
  • +
  • FLAC_API_VERSION_AGE +: export.h +
  • +
  • FLAC_API_VERSION_CURRENT +: export.h +
  • +
  • FLAC_API_VERSION_REVISION +: export.h +
  • +
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_defs.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_defs.html new file mode 100644 index 000000000..2014b7816 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_defs.html @@ -0,0 +1,137 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
    +
  • FLAC__MAX_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__MAX_BLOCK_SIZE +: format.h +
  • +
  • FLAC__MAX_CHANNELS +: format.h +
  • +
  • FLAC__MAX_FIXED_ORDER +: format.h +
  • +
  • FLAC__MAX_LPC_ORDER +: format.h +
  • +
  • FLAC__MAX_METADATA_TYPE_CODE +: format.h +
  • +
  • FLAC__MAX_QLP_COEFF_PRECISION +: format.h +
  • +
  • FLAC__MAX_RICE_PARTITION_ORDER +: format.h +
  • +
  • FLAC__MAX_SAMPLE_RATE +: format.h +
  • +
  • FLAC__MIN_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__MIN_BLOCK_SIZE +: format.h +
  • +
  • FLAC__MIN_QLP_COEFF_PRECISION +: format.h +
  • +
  • FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE +: format.h +
  • +
  • FLAC__STREAM_METADATA_HEADER_LENGTH +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_LENGTH +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_LENGTH +: format.h +
  • +
  • FLAC__STREAM_SYNC_LENGTH +: format.h +
  • +
  • FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ +: format.h +
  • +
  • FLAC__SUBSET_MAX_LPC_ORDER_48000HZ +: format.h +
  • +
  • FLAC__SUBSET_MAX_RICE_PARTITION_ORDER +: format.h +
  • +
  • FLAC_API_VERSION_AGE +: export.h +
  • +
  • FLAC_API_VERSION_CURRENT +: export.h +
  • +
  • FLAC_API_VERSION_REVISION +: export.h +
  • +
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_enum.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_enum.html new file mode 100644 index 000000000..abadc640e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_enum.html @@ -0,0 +1,134 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_eval.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_eval.html new file mode 100644 index 000000000..5a8d3c31c --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_eval.html @@ -0,0 +1,490 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- f -

    +
  • FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_MID_SIDE +: format.h +
  • +
  • FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 +: format.h +
  • +
  • FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER +: format.h +
  • +
  • FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER +: format.h +
  • +
  • FLAC__MAX_METADATA_TYPE +: format.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_BAD_METADATA +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_OK +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_READ_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR +: metadata.h +
  • +
  • FLAC__METADATA_TYPE_APPLICATION +: format.h +
  • +
  • FLAC__METADATA_TYPE_CUESHEET +: format.h +
  • +
  • FLAC__METADATA_TYPE_PADDING +: format.h +
  • +
  • FLAC__METADATA_TYPE_PICTURE +: format.h +
  • +
  • FLAC__METADATA_TYPE_SEEKTABLE +: format.h +
  • +
  • FLAC__METADATA_TYPE_STREAMINFO +: format.h +
  • +
  • FLAC__METADATA_TYPE_UNDEFINED +: format.h +
  • +
  • FLAC__METADATA_TYPE_VORBIS_COMMENT +: format.h +
  • +
  • FLAC__STREAM_DECODER_ABORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_END_OF_STREAM +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_OGG_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_FRAME +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_METADATA +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_ABORT +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_CONTINUE +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEARCH_FOR_METADATA +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_ERROR +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_OK +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_UNINITIALIZED +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_WRITE_STATUS_ABORT +: stream_decoder.h +
  • +
  • FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE +: stream_decoder.h +
  • +
  • FLAC__STREAM_ENCODER_CLIENT_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_FRAMING_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_IO_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_OGG_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_ABORT +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_UNINITIALIZED +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR +: stream_encoder.h +
  • +
  • FLAC__STREAM_ENCODER_WRITE_STATUS_OK +: stream_encoder.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BAND +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FISH +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_CONSTANT +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_FIXED +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LPC +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_VERBATIM +: format.h +
  • +
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_func.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_func.html new file mode 100644 index 000000000..3495353a8 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_func.html @@ -0,0 +1,634 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- f -

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_type.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_type.html new file mode 100644 index 000000000..b826dadd8 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_type.html @@ -0,0 +1,140 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_vars.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_vars.html new file mode 100644 index 000000000..6a1d1e5c1 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/globals_vars.html @@ -0,0 +1,361 @@ + + + + + + + +FLAC: File Members + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+  + +

- f -

    +
  • FLAC__ChannelAssignmentString +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN +: format.h +
  • +
  • FLAC__ENTROPY_CODING_METHOD_TYPE_LEN +: format.h +
  • +
  • FLAC__EntropyCodingMethodTypeString +: format.h +
  • +
  • FLAC__FRAME_FOOTER_CRC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_CRC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_RESERVED_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_SAMPLE_RATE_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_SYNC +: format.h +
  • +
  • FLAC__FRAME_HEADER_SYNC_LEN +: format.h +
  • +
  • FLAC__FRAME_HEADER_ZERO_PAD_LEN +: format.h +
  • +
  • FLAC__FrameNumberTypeString +: format.h +
  • +
  • FLAC__Metadata_ChainStatusString +: metadata.h +
  • +
  • FLAC__Metadata_SimpleIteratorStatusString +: metadata.h +
  • +
  • FLAC__MetadataTypeString +: format.h +
  • +
  • FLAC__STREAM_METADATA_APPLICATION_ID_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_IS_LAST_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_COLORS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_TYPE_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN +: format.h +
  • +
  • FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN +: format.h +
  • +
  • FLAC__STREAM_SYNC +: format.h +
  • +
  • FLAC__STREAM_SYNC_LEN +: format.h +
  • +
  • FLAC__STREAM_SYNC_STRING +: format.h +
  • +
  • FLAC__StreamDecoderErrorStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderInitStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderLengthStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderReadStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderSeekStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderStateString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderTellStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamDecoderWriteStatusString +: stream_decoder.h +
  • +
  • FLAC__StreamEncoderInitStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderReadStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderSeekStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderStateString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderTellStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamEncoderWriteStatusString +: stream_encoder.h +
  • +
  • FLAC__StreamMetadata_Picture_TypeString +: format.h +
  • +
  • FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK +: format.h +
  • +
  • FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN +: format.h +
  • +
  • FLAC__SUBFRAME_ZERO_PAD_LEN +: format.h +
  • +
  • FLAC__SubframeTypeString +: format.h +
  • +
  • FLAC__VENDOR_STRING +: format.h +
  • +
  • FLAC__VERSION_STRING +: format.h +
  • +
  • FLAC_API_SUPPORTS_OGG_FLAC +: export.h +
  • +
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac.html new file mode 100644 index 000000000..1b88d6fd9 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac.html @@ -0,0 +1,91 @@ + + + + + + + +FLAC: FLAC C API + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC C API
+
+
+ + + + + + + + + + + + + + +

+Modules

 FLAC/callback.h: I/O callback structures
 
 FLAC/export.h: export symbols
 
 FLAC/format.h: format components
 
 
 FLAC/_decoder.h: decoder interfaces
 
 FLAC/_encoder.h: encoder interfaces
 
+

Detailed Description

+

The FLAC C API is the interface to libFLAC, a set of structures describing the components of FLAC streams, and functions for encoding and decoding streams, as well as manipulating FLAC metadata in files.

+

You should start with the format components as all other modules are dependent on it.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__callbacks.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__callbacks.html new file mode 100644 index 000000000..0fd44541b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__callbacks.html @@ -0,0 +1,288 @@ + + + + + + + +FLAC: FLAC/callback.h: I/O callback structures + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/callback.h: I/O callback structures
+
+
+ + + + +

+Classes

struct  FLAC__IOCallbacks
 
+ + + + + + + + + + + + + + + +

+Typedefs

typedef void * FLAC__IOHandle
 
typedef size_t(* FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
 
typedef size_t(* FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence)
 
typedef FLAC__int64(* FLAC__IOCallback_Tell) (FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Eof) (FLAC__IOHandle handle)
 
typedef int(* FLAC__IOCallback_Close) (FLAC__IOHandle handle)
 
+

Detailed Description

+

This module defines the structures for describing I/O callbacks to the other FLAC interfaces.

+

The purpose of the I/O callback functions is to create a common way for the metadata interfaces to handle I/O.

+

Originally the metadata interfaces required filenames as the way of specifying FLAC files to operate on. This is problematic in some environments so there is an additional option to specify a set of callbacks for doing I/O on the FLAC file, instead of the filename.

+

In addition to the callbacks, a FLAC__IOHandle type is defined as an opaque structure for a data source.

+

The callback function prototypes are similar (but not identical) to the stdio functions fread, fwrite, fseek, ftell, feof, and fclose. If you use stdio streams to implement the callbacks, you can pass fread, fwrite, and fclose anywhere a FLAC__IOCallback_Read, FLAC__IOCallback_Write, or FLAC__IOCallback_Close is required, and a FILE* anywhere a FLAC__IOHandle is required.

Warning
You generally CANNOT directly use fseek or ftell for FLAC__IOCallback_Seek or FLAC__IOCallback_Tell since on most systems these use 32-bit offsets and FLAC requires 64-bit offsets to deal with large files. You will have to find an equivalent function (e.g. ftello), or write a wrapper. The same is true for feof() since this is usually implemented as a macro, not as a function whose address can be taken.
+

Typedef Documentation

+ +

◆ FLAC__IOHandle

+ +
+
+ + + + +
typedef void* FLAC__IOHandle
+
+

This is the opaque handle type used by the callbacks. Typically this is a FILE* or address of a file descriptor.

+ +
+
+ +

◆ FLAC__IOCallback_Read

+ +
+
+ + + + +
typedef size_t(* FLAC__IOCallback_Read) (void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
+
+

Signature for the read callback. The signature and semantics match POSIX fread() implementations and can generally be used interchangeably.

+
Parameters
+ + + + + +
ptrThe address of the read buffer.
sizeThe size of the records to be read.
nmembThe number of records to be read.
handleThe handle to the data source.
+
+
+
Return values
+ + +
size_tThe number of records read.
+
+
+ +
+
+ +

◆ FLAC__IOCallback_Write

+ +
+
+ + + + +
typedef size_t(* FLAC__IOCallback_Write) (const void *ptr, size_t size, size_t nmemb, FLAC__IOHandle handle)
+
+

Signature for the write callback. The signature and semantics match POSIX fwrite() implementations and can generally be used interchangeably.

+
Parameters
+ + + + + +
ptrThe address of the write buffer.
sizeThe size of the records to be written.
nmembThe number of records to be written.
handleThe handle to the data source.
+
+
+
Return values
+ + +
size_tThe number of records written.
+
+
+ +
+
+ +

◆ FLAC__IOCallback_Seek

+ +
+
+ + + + +
typedef int(* FLAC__IOCallback_Seek) (FLAC__IOHandle handle, FLAC__int64 offset, int whence)
+
+

Signature for the seek callback. The signature and semantics mostly match POSIX fseek() WITH ONE IMPORTANT EXCEPTION: the offset is a 64-bit type whereas fseek() is generally 'long' and 32-bits wide.

+
Parameters
+ + + + +
handleThe handle to the data source.
offsetThe new position, relative to whence
whenceSEEK_SET, SEEK_CUR, or SEEK_END
+
+
+
Return values
+ + +
int0 on success, -1 on error.
+
+
+ +
+
+ +

◆ FLAC__IOCallback_Tell

+ +
+
+ + + + +
typedef FLAC__int64(* FLAC__IOCallback_Tell) (FLAC__IOHandle handle)
+
+

Signature for the tell callback. The signature and semantics mostly match POSIX ftell() WITH ONE IMPORTANT EXCEPTION: the offset is a 64-bit type whereas ftell() is generally 'long' and 32-bits wide.

+
Parameters
+ + +
handleThe handle to the data source.
+
+
+
Return values
+ + +
FLAC__int64The current position on success, -1 on error.
+
+
+ +
+
+ +

◆ FLAC__IOCallback_Eof

+ +
+
+ + + + +
typedef int(* FLAC__IOCallback_Eof) (FLAC__IOHandle handle)
+
+

Signature for the EOF callback. The signature and semantics mostly match POSIX feof() but WATCHOUT: on many systems, feof() is a macro, so in this case a wrapper function must be provided instead.

+
Parameters
+ + +
handleThe handle to the data source.
+
+
+
Return values
+ + +
int0 if not at end of file, nonzero if at end of file.
+
+
+ +
+
+ +

◆ FLAC__IOCallback_Close

+ +
+
+ + + + +
typedef int(* FLAC__IOCallback_Close) (FLAC__IOHandle handle)
+
+

Signature for the close callback. The signature and semantics match POSIX fclose() implementations and can generally be used interchangeably.

+
Parameters
+ + +
handleThe handle to the data source.
+
+
+
Return values
+ + +
int0 on success, EOF on error.
+
+
+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__decoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__decoder.html new file mode 100644 index 000000000..e7df5c75e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__decoder.html @@ -0,0 +1,81 @@ + + + + + + + +FLAC: FLAC/_decoder.h: decoder interfaces + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/_decoder.h: decoder interfaces
+
+
+ + + + +

+Modules

 FLAC/stream_decoder.h: stream decoder interface
 
+

Detailed Description

+

This module describes the decoder layers provided by libFLAC.

+

The stream decoder can be used to decode complete streams either from the client via callbacks, or directly from a file, depending on how it is initialized. When decoding via callbacks, the client provides callbacks for reading FLAC data and writing decoded samples, and handling metadata and errors. If the client also supplies seek-related callback, the decoder function for sample-accurate seeking within the FLAC input is also available. When decoding from a file, the client needs only supply a filename or open FILE* and write/metadata/error callbacks; the rest of the callbacks are supplied internally. For more info see the stream decoder module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__encoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__encoder.html new file mode 100644 index 000000000..32d87e0b0 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__encoder.html @@ -0,0 +1,81 @@ + + + + + + + +FLAC: FLAC/_encoder.h: encoder interfaces + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/_encoder.h: encoder interfaces
+
+
+ + + + +

+Modules

 FLAC/stream_encoder.h: stream encoder interface
 
+

Detailed Description

+

This module describes the encoder layers provided by libFLAC.

+

The stream encoder can be used to encode complete streams either to the client via callbacks, or directly to a file, depending on how it is initialized. When encoding via callbacks, the client provides a write callback which will be called whenever FLAC data is ready to be written. If the client also supplies a seek callback, the encoder will also automatically handle the writing back of metadata discovered while encoding, like stream info, seek points offsets, etc. When encoding to a file, the client needs only supply a filename or open FILE* and an optional progress callback for periodic notification of progress; the write and seek callbacks are supplied internally. For more info see the stream encoder module.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__export.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__export.html new file mode 100644 index 000000000..0f43f7588 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__export.html @@ -0,0 +1,156 @@ + + + + + + + +FLAC: FLAC/export.h: export symbols + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/export.h: export symbols
+
+
+ + + + + + + + + + +

+Macros

+#define FLAC_API
 
#define FLAC_API_VERSION_CURRENT   11
 
#define FLAC_API_VERSION_REVISION   0
 
#define FLAC_API_VERSION_AGE   3
 
+ + + +

+Variables

int FLAC_API_SUPPORTS_OGG_FLAC
 
+

Detailed Description

+

This module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features.

+

If you are compiling with MSVC and will link to the static library (libFLAC.lib) you should define FLAC__NO_DLL in your project to make sure the symbols are exported properly.

+

Macro Definition Documentation

+ +

◆ FLAC_API_VERSION_CURRENT

+ +
+
+ + + + +
#define FLAC_API_VERSION_CURRENT   11
+
+

These #defines will mirror the libtool-based library version number, see http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning

+ +
+
+ +

◆ FLAC_API_VERSION_REVISION

+ +
+
+ + + + +
#define FLAC_API_VERSION_REVISION   0
+
+

see above

+ +
+
+ +

◆ FLAC_API_VERSION_AGE

+ +
+
+ + + + +
#define FLAC_API_VERSION_AGE   3
+
+

see above

+ +
+
+

Variable Documentation

+ +

◆ FLAC_API_SUPPORTS_OGG_FLAC

+ +
+
+ + + + +
int FLAC_API_SUPPORTS_OGG_FLAC
+
+

1 if the library has been compiled with support for Ogg FLAC, else 0.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__format.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__format.html new file mode 100644 index 000000000..db79dce23 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__format.html @@ -0,0 +1,2512 @@ + + + + + + + +FLAC: FLAC/format.h: format components + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/format.h: format components
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Classes

struct  FLAC__EntropyCodingMethod_PartitionedRiceContents
 
struct  FLAC__EntropyCodingMethod_PartitionedRice
 
struct  FLAC__EntropyCodingMethod
 
struct  FLAC__Subframe_Constant
 
struct  FLAC__Subframe_Verbatim
 
struct  FLAC__Subframe_Fixed
 
struct  FLAC__Subframe_LPC
 
struct  FLAC__Subframe
 
struct  FLAC__FrameHeader
 
struct  FLAC__FrameFooter
 
struct  FLAC__Frame
 
struct  FLAC__StreamMetadata_StreamInfo
 
struct  FLAC__StreamMetadata_Padding
 
struct  FLAC__StreamMetadata_Application
 
struct  FLAC__StreamMetadata_SeekPoint
 
struct  FLAC__StreamMetadata_SeekTable
 
struct  FLAC__StreamMetadata_VorbisComment_Entry
 
struct  FLAC__StreamMetadata_VorbisComment
 
struct  FLAC__StreamMetadata_CueSheet_Index
 
struct  FLAC__StreamMetadata_CueSheet_Track
 
struct  FLAC__StreamMetadata_CueSheet
 
struct  FLAC__StreamMetadata_Picture
 
struct  FLAC__StreamMetadata_Unknown
 
struct  FLAC__StreamMetadata
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Macros

#define FLAC__MAX_METADATA_TYPE_CODE   (126u)
 
#define FLAC__MIN_BLOCK_SIZE   (16u)
 
#define FLAC__MAX_BLOCK_SIZE   (65535u)
 
#define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ   (4608u)
 
#define FLAC__MAX_CHANNELS   (8u)
 
#define FLAC__MIN_BITS_PER_SAMPLE   (4u)
 
#define FLAC__MAX_BITS_PER_SAMPLE   (32u)
 
#define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE   (24u)
 
#define FLAC__MAX_SAMPLE_RATE   (655350u)
 
#define FLAC__MAX_LPC_ORDER   (32u)
 
#define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ   (12u)
 
#define FLAC__MIN_QLP_COEFF_PRECISION   (5u)
 
#define FLAC__MAX_QLP_COEFF_PRECISION   (15u)
 
#define FLAC__MAX_FIXED_ORDER   (4u)
 
#define FLAC__MAX_RICE_PARTITION_ORDER   (15u)
 
#define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER   (8u)
 
#define FLAC__STREAM_SYNC_LENGTH   (4u)
 
#define FLAC__STREAM_METADATA_STREAMINFO_LENGTH   (34u)
 
#define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH   (18u)
 
#define FLAC__STREAM_METADATA_HEADER_LENGTH   (4u)
 
+ + + + + + + + + + + + + +

+Enumerations

enum  FLAC__EntropyCodingMethodType { FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE = 0, +FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 = 1 + }
 
enum  FLAC__SubframeType { FLAC__SUBFRAME_TYPE_CONSTANT = 0, +FLAC__SUBFRAME_TYPE_VERBATIM = 1, +FLAC__SUBFRAME_TYPE_FIXED = 2, +FLAC__SUBFRAME_TYPE_LPC = 3 + }
 
enum  FLAC__ChannelAssignment { FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT = 0, +FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE = 1, +FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE = 2, +FLAC__CHANNEL_ASSIGNMENT_MID_SIDE = 3 + }
 
enum  FLAC__FrameNumberType { FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER, +FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER + }
 
enum  FLAC__MetadataType {
+  FLAC__METADATA_TYPE_STREAMINFO = 0, +FLAC__METADATA_TYPE_PADDING = 1, +FLAC__METADATA_TYPE_APPLICATION = 2, +FLAC__METADATA_TYPE_SEEKTABLE = 3, +
+  FLAC__METADATA_TYPE_VORBIS_COMMENT = 4, +FLAC__METADATA_TYPE_CUESHEET = 5, +FLAC__METADATA_TYPE_PICTURE = 6, +FLAC__METADATA_TYPE_UNDEFINED = 7, +
+  FLAC__MAX_METADATA_TYPE = FLAC__MAX_METADATA_TYPE_CODE +
+ }
 
enum  FLAC__StreamMetadata_Picture_Type {
+  FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER = 0, +FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD = 1, +FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON = 2, +FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER = 3, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER = 4, +FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE = 5, +FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA = 6, +FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST = 7, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST = 8, +FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR = 9, +FLAC__STREAM_METADATA_PICTURE_TYPE_BAND = 10, +FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER = 11, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST = 12, +FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION = 13, +FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING = 14, +FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE = 15, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE = 16, +FLAC__STREAM_METADATA_PICTURE_TYPE_FISH = 17, +FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION = 18, +FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE = 19, +
+  FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE = 20, +FLAC__STREAM_METADATA_PICTURE_TYPE_UNDEFINED +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__bool FLAC__format_sample_rate_is_valid (uint32_t sample_rate)
 
FLAC__bool FLAC__format_blocksize_is_subset (uint32_t blocksize, uint32_t sample_rate)
 
FLAC__bool FLAC__format_sample_rate_is_subset (uint32_t sample_rate)
 
FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal (const char *name)
 
FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal (const FLAC__byte *value, uint32_t length)
 
FLAC__bool FLAC__format_vorbiscomment_entry_is_legal (const FLAC__byte *entry, uint32_t length)
 
FLAC__bool FLAC__format_seektable_is_legal (const FLAC__StreamMetadata_SeekTable *seek_table)
 
uint32_t FLAC__format_seektable_sort (FLAC__StreamMetadata_SeekTable *seek_table)
 
FLAC__bool FLAC__format_cuesheet_is_legal (const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
 
FLAC__bool FLAC__format_picture_is_legal (const FLAC__StreamMetadata_Picture *picture, const char **violation)
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Variables

const char * FLAC__VERSION_STRING
 
const char * FLAC__VENDOR_STRING
 
const FLAC__byte FLAC__STREAM_SYNC_STRING [4]
 
const uint32_t FLAC__STREAM_SYNC
 
const uint32_t FLAC__STREAM_SYNC_LEN
 
const char *const FLAC__EntropyCodingMethodTypeString []
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
 
const uint32_t FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
 
const char *const FLAC__SubframeTypeString []
 
const uint32_t FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
 
const uint32_t FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
 
const uint32_t FLAC__SUBFRAME_ZERO_PAD_LEN
 
const uint32_t FLAC__SUBFRAME_TYPE_LEN
 
const uint32_t FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
 
const uint32_t FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
 
const uint32_t FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
 
const char *const FLAC__ChannelAssignmentString []
 
const char *const FLAC__FrameNumberTypeString []
 
const uint32_t FLAC__FRAME_HEADER_SYNC
 
const uint32_t FLAC__FRAME_HEADER_SYNC_LEN
 
const uint32_t FLAC__FRAME_HEADER_RESERVED_LEN
 
const uint32_t FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
 
const uint32_t FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
 
const uint32_t FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
 
const uint32_t FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
 
const uint32_t FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
 
const uint32_t FLAC__FRAME_HEADER_ZERO_PAD_LEN
 
const uint32_t FLAC__FRAME_HEADER_CRC_LEN
 
const uint32_t FLAC__FRAME_FOOTER_CRC_LEN
 
const char *const FLAC__MetadataTypeString []
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
 
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
 
const uint32_t FLAC__STREAM_METADATA_APPLICATION_ID_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
 
const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
 
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
 
const uint32_t FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
 
const char *const FLAC__StreamMetadata_Picture_TypeString []
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
 
const uint32_t FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
 
const uint32_t FLAC__STREAM_METADATA_IS_LAST_LEN
 
const uint32_t FLAC__STREAM_METADATA_TYPE_LEN
 
const uint32_t FLAC__STREAM_METADATA_LENGTH_LEN
 
+

Detailed Description

+

This module contains structure definitions for the representation of FLAC format components in memory. These are the basic structures used by the rest of the interfaces.

+

First, you should be familiar with the FLAC format. Many of the values here follow directly from the specification. As a user of libFLAC, the interesting parts really are the structures that describe the frame header and metadata blocks.

+

The format structures here are very primitive, designed to store information in an efficient way. Reading information from the structures is easy but creating or modifying them directly is more complex. For the most part, as a user of a library, editing is not necessary; however, for metadata blocks it is, so there are convenience functions provided in the metadata module to simplify the manipulation of metadata blocks.

+
Note
It's not the best convention, but symbols ending in _LEN are in bits and _LENGTH are in bytes. _LENGTH symbols are #defines instead of global variables because they are usually used when declaring byte arrays and some compilers require compile-time knowledge of array sizes when declared on the stack.
+

Macro Definition Documentation

+ +

◆ FLAC__MAX_METADATA_TYPE_CODE

+ +
+
+ + + + +
#define FLAC__MAX_METADATA_TYPE_CODE   (126u)
+
+

The largest legal metadata type code.

+ +
+
+ +

◆ FLAC__MIN_BLOCK_SIZE

+ +
+
+ + + + +
#define FLAC__MIN_BLOCK_SIZE   (16u)
+
+

The minimum block size, in samples, permitted by the format.

+ +
+
+ +

◆ FLAC__MAX_BLOCK_SIZE

+ +
+
+ + + + +
#define FLAC__MAX_BLOCK_SIZE   (65535u)
+
+

The maximum block size, in samples, permitted by the format.

+ +
+
+ +

◆ FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ

+ +
+
+ + + + +
#define FLAC__SUBSET_MAX_BLOCK_SIZE_48000HZ   (4608u)
+
+

The maximum block size, in samples, permitted by the FLAC subset for sample rates up to 48kHz.

+ +
+
+ +

◆ FLAC__MAX_CHANNELS

+ +
+
+ + + + +
#define FLAC__MAX_CHANNELS   (8u)
+
+

The maximum number of channels permitted by the format.

+ +
+
+ +

◆ FLAC__MIN_BITS_PER_SAMPLE

+ +
+
+ + + + +
#define FLAC__MIN_BITS_PER_SAMPLE   (4u)
+
+

The minimum sample resolution permitted by the format.

+ +
+
+ +

◆ FLAC__MAX_BITS_PER_SAMPLE

+ +
+
+ + + + +
#define FLAC__MAX_BITS_PER_SAMPLE   (32u)
+
+

The maximum sample resolution permitted by the format.

+ +
+
+ +

◆ FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE

+ +
+
+ + + + +
#define FLAC__REFERENCE_CODEC_MAX_BITS_PER_SAMPLE   (24u)
+
+

The maximum sample resolution permitted by libFLAC.

+
Warning
FLAC__MAX_BITS_PER_SAMPLE is the limit of the FLAC format. However, the reference encoder/decoder is currently limited to 24 bits because of prevalent 32-bit math, so make sure and use this value when appropriate.
+ +
+
+ +

◆ FLAC__MAX_SAMPLE_RATE

+ +
+
+ + + + +
#define FLAC__MAX_SAMPLE_RATE   (655350u)
+
+

The maximum sample rate permitted by the format. The value is ((2 ^ 16) - 1) * 10; see FLAC format as to why.

+ +
+
+ +

◆ FLAC__MAX_LPC_ORDER

+ +
+
+ + + + +
#define FLAC__MAX_LPC_ORDER   (32u)
+
+

The maximum LPC order permitted by the format.

+ +
+
+ +

◆ FLAC__SUBSET_MAX_LPC_ORDER_48000HZ

+ +
+
+ + + + +
#define FLAC__SUBSET_MAX_LPC_ORDER_48000HZ   (12u)
+
+

The maximum LPC order permitted by the FLAC subset for sample rates up to 48kHz.

+ +
+
+ +

◆ FLAC__MIN_QLP_COEFF_PRECISION

+ +
+
+ + + + +
#define FLAC__MIN_QLP_COEFF_PRECISION   (5u)
+
+

The minimum quantized linear predictor coefficient precision permitted by the format.

+ +
+
+ +

◆ FLAC__MAX_QLP_COEFF_PRECISION

+ +
+
+ + + + +
#define FLAC__MAX_QLP_COEFF_PRECISION   (15u)
+
+

The maximum quantized linear predictor coefficient precision permitted by the format.

+ +
+
+ +

◆ FLAC__MAX_FIXED_ORDER

+ +
+
+ + + + +
#define FLAC__MAX_FIXED_ORDER   (4u)
+
+

The maximum order of the fixed predictors permitted by the format.

+ +
+
+ +

◆ FLAC__MAX_RICE_PARTITION_ORDER

+ +
+
+ + + + +
#define FLAC__MAX_RICE_PARTITION_ORDER   (15u)
+
+

The maximum Rice partition order permitted by the format.

+ +
+
+ +

◆ FLAC__SUBSET_MAX_RICE_PARTITION_ORDER

+ +
+
+ + + + +
#define FLAC__SUBSET_MAX_RICE_PARTITION_ORDER   (8u)
+
+

The maximum Rice partition order permitted by the FLAC Subset.

+ +
+
+ +

◆ FLAC__STREAM_SYNC_LENGTH

+ +
+
+ + + + +
#define FLAC__STREAM_SYNC_LENGTH   (4u)
+
+

The length of the FLAC signature in bytes.

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_LENGTH

+ +
+
+ + + + +
#define FLAC__STREAM_METADATA_STREAMINFO_LENGTH   (34u)
+
+

The total stream length of the STREAMINFO block in bytes.

+ +
+
+ +

◆ FLAC__STREAM_METADATA_SEEKPOINT_LENGTH

+ +
+
+ + + + +
#define FLAC__STREAM_METADATA_SEEKPOINT_LENGTH   (18u)
+
+

The total stream length of a seek point in bytes.

+ +
+
+ +

◆ FLAC__STREAM_METADATA_HEADER_LENGTH

+ +
+
+ + + + +
#define FLAC__STREAM_METADATA_HEADER_LENGTH   (4u)
+
+

The total stream length of a metadata block header in bytes.

+ +
+
+

Enumeration Type Documentation

+ +

◆ FLAC__EntropyCodingMethodType

+ +
+
+

An enumeration of the available entropy coding methods.

+ + + +
Enumerator
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE 

Residual is coded by partitioning into contexts, each with it's own 4-bit Rice parameter.

+
FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2 

Residual is coded by partitioning into contexts, each with it's own 5-bit Rice parameter.

+
+ +
+
+ +

◆ FLAC__SubframeType

+ +
+
+ + + + +
enum FLAC__SubframeType
+
+

An enumeration of the available subframe types.

+ + + + + +
Enumerator
FLAC__SUBFRAME_TYPE_CONSTANT 

constant signal

+
FLAC__SUBFRAME_TYPE_VERBATIM 

uncompressed signal

+
FLAC__SUBFRAME_TYPE_FIXED 

fixed polynomial prediction

+
FLAC__SUBFRAME_TYPE_LPC 

linear prediction

+
+ +
+
+ +

◆ FLAC__ChannelAssignment

+ +
+
+ + + + +
enum FLAC__ChannelAssignment
+
+

An enumeration of the available channel assignments.

+ + + + + +
Enumerator
FLAC__CHANNEL_ASSIGNMENT_INDEPENDENT 

independent channels

+
FLAC__CHANNEL_ASSIGNMENT_LEFT_SIDE 

left+side stereo

+
FLAC__CHANNEL_ASSIGNMENT_RIGHT_SIDE 

right+side stereo

+
FLAC__CHANNEL_ASSIGNMENT_MID_SIDE 

mid+side stereo

+
+ +
+
+ +

◆ FLAC__FrameNumberType

+ +
+
+ + + + +
enum FLAC__FrameNumberType
+
+

An enumeration of the possible frame numbering methods.

+ + + +
Enumerator
FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER 

number contains the frame number

+
FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER 

number contains the sample number of first sample in frame

+
+ +
+
+ +

◆ FLAC__MetadataType

+ +
+
+ + + + +
enum FLAC__MetadataType
+
+

An enumeration of the available metadata block types.

+ + + + + + + + + + +
Enumerator
FLAC__METADATA_TYPE_STREAMINFO 

STREAMINFO block

+
FLAC__METADATA_TYPE_PADDING 

PADDING block

+
FLAC__METADATA_TYPE_APPLICATION 

APPLICATION block

+
FLAC__METADATA_TYPE_SEEKTABLE 

SEEKTABLE block

+
FLAC__METADATA_TYPE_VORBIS_COMMENT 

VORBISCOMMENT block (a.k.a. FLAC tags)

+
FLAC__METADATA_TYPE_CUESHEET 

CUESHEET block

+
FLAC__METADATA_TYPE_PICTURE 

PICTURE block

+
FLAC__METADATA_TYPE_UNDEFINED 

marker to denote beginning of undefined type range; this number will increase as new metadata types are added

+
FLAC__MAX_METADATA_TYPE 

No type will ever be greater than this. There is not enough room in the protocol block.

+
+ +
+
+ +

◆ FLAC__StreamMetadata_Picture_Type

+ +
+
+

An enumeration of the PICTURE types (see FLAC__StreamMetadataPicture and id3 v2.4 APIC tag).

+ + + + + + + + + + + + + + + + + + + + + + +
Enumerator
FLAC__STREAM_METADATA_PICTURE_TYPE_OTHER 

Other

+
FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON_STANDARD 

32x32 pixels 'file icon' (PNG only)

+
FLAC__STREAM_METADATA_PICTURE_TYPE_FILE_ICON 

Other file icon

+
FLAC__STREAM_METADATA_PICTURE_TYPE_FRONT_COVER 

Cover (front)

+
FLAC__STREAM_METADATA_PICTURE_TYPE_BACK_COVER 

Cover (back)

+
FLAC__STREAM_METADATA_PICTURE_TYPE_LEAFLET_PAGE 

Leaflet page

+
FLAC__STREAM_METADATA_PICTURE_TYPE_MEDIA 

Media (e.g. label side of CD)

+
FLAC__STREAM_METADATA_PICTURE_TYPE_LEAD_ARTIST 

Lead artist/lead performer/soloist

+
FLAC__STREAM_METADATA_PICTURE_TYPE_ARTIST 

Artist/performer

+
FLAC__STREAM_METADATA_PICTURE_TYPE_CONDUCTOR 

Conductor

+
FLAC__STREAM_METADATA_PICTURE_TYPE_BAND 

Band/Orchestra

+
FLAC__STREAM_METADATA_PICTURE_TYPE_COMPOSER 

Composer

+
FLAC__STREAM_METADATA_PICTURE_TYPE_LYRICIST 

Lyricist/text writer

+
FLAC__STREAM_METADATA_PICTURE_TYPE_RECORDING_LOCATION 

Recording Location

+
FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_RECORDING 

During recording

+
FLAC__STREAM_METADATA_PICTURE_TYPE_DURING_PERFORMANCE 

During performance

+
FLAC__STREAM_METADATA_PICTURE_TYPE_VIDEO_SCREEN_CAPTURE 

Movie/video screen capture

+
FLAC__STREAM_METADATA_PICTURE_TYPE_FISH 

A bright coloured fish

+
FLAC__STREAM_METADATA_PICTURE_TYPE_ILLUSTRATION 

Illustration

+
FLAC__STREAM_METADATA_PICTURE_TYPE_BAND_LOGOTYPE 

Band/artist logotype

+
FLAC__STREAM_METADATA_PICTURE_TYPE_PUBLISHER_LOGOTYPE 

Publisher/Studio logotype

+
+ +
+
+

Function Documentation

+ +

◆ FLAC__format_sample_rate_is_valid()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__format_sample_rate_is_valid (uint32_t sample_rate)
+
+

Tests that a sample rate is valid for FLAC.

+
Parameters
+ + +
sample_rateThe sample rate to test for compliance.
+
+
+
Return values
+ + +
FLAC__booltrue if the given sample rate conforms to the specification, else false.
+
+
+ +
+
+ +

◆ FLAC__format_blocksize_is_subset()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__format_blocksize_is_subset (uint32_t blocksize,
uint32_t sample_rate 
)
+
+

Tests that a blocksize at the given sample rate is valid for the FLAC subset.

+
Parameters
+ + + +
blocksizeThe blocksize to test for compliance.
sample_rateThe sample rate is needed, since the valid subset blocksize depends on the sample rate.
+
+
+
Return values
+ + +
FLAC__booltrue if the given blocksize conforms to the specification for the subset at the given sample rate, else false.
+
+
+ +
+
+ +

◆ FLAC__format_sample_rate_is_subset()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__format_sample_rate_is_subset (uint32_t sample_rate)
+
+

Tests that a sample rate is valid for the FLAC subset. The subset rules for valid sample rates are slightly more complex since the rate has to be expressible completely in the frame header.

+
Parameters
+ + +
sample_rateThe sample rate to test for compliance.
+
+
+
Return values
+ + +
FLAC__booltrue if the given sample rate conforms to the specification for the subset, else false.
+
+
+ +
+
+ +

◆ FLAC__format_vorbiscomment_entry_name_is_legal()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal (const char * name)
+
+

Check a Vorbis comment entry name to see if it conforms to the Vorbis comment specification.

+

Vorbis comment names must be composed only of characters from [0x20-0x3C,0x3E-0x7D].

+
Parameters
+ + +
nameA NUL-terminated string to be checked.
+
+
+
Assertions:
name != NULL
+
Return values
+ + +
FLAC__boolfalse if entry name is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__format_vorbiscomment_entry_value_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal (const FLAC__byte * value,
uint32_t length 
)
+
+

Check a Vorbis comment entry value to see if it conforms to the Vorbis comment specification.

+

Vorbis comment values must be valid UTF-8 sequences.

+
Parameters
+ + + +
valueA string to be checked.
lengthA the length of value in bytes. May be (uint32_t)(-1) to indicate that value is a plain UTF-8 NUL-terminated string.
+
+
+
Assertions:
value != NULL
+
Return values
+ + +
FLAC__boolfalse if entry name is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__format_vorbiscomment_entry_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__format_vorbiscomment_entry_is_legal (const FLAC__byte * entry,
uint32_t length 
)
+
+

Check a Vorbis comment entry to see if it conforms to the Vorbis comment specification.

+

Vorbis comment entries must be of the form 'name=value', and 'name' and 'value' must be legal according to FLAC__format_vorbiscomment_entry_name_is_legal() and FLAC__format_vorbiscomment_entry_value_is_legal() respectively.

+
Parameters
+ + + +
entryAn entry to be checked.
lengthThe length of entry in bytes.
+
+
+
Assertions:
value != NULL
+
Return values
+ + +
FLAC__boolfalse if entry name is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__format_seektable_is_legal()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__format_seektable_is_legal (const FLAC__StreamMetadata_SeekTableseek_table)
+
+

Check a seek table to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the seek table.

+
Parameters
+ + +
seek_tableA pointer to a seek table to be checked.
+
+
+
Assertions:
seek_table != NULL
+
Return values
+ + +
FLAC__boolfalse if seek table is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__format_seektable_sort()

+ +
+
+ + + + + + + + +
uint32_t FLAC__format_seektable_sort (FLAC__StreamMetadata_SeekTableseek_table)
+
+

Sort a seek table's seek points according to the format specification. This includes a "unique-ification" step to remove duplicates, i.e. seek points with identical sample_number values. Duplicate seek points are converted into placeholder points and sorted to the end of the table.

+
Parameters
+ + +
seek_tableA pointer to a seek table to be sorted.
+
+
+
Assertions:
seek_table != NULL
+
Return values
+ + +
uint32_tThe number of duplicate seek points converted into placeholders.
+
+
+ +
+
+ +

◆ FLAC__format_cuesheet_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__format_cuesheet_is_legal (const FLAC__StreamMetadata_CueSheetcue_sheet,
FLAC__bool check_cd_da_subset,
const char ** violation 
)
+
+

Check a cue sheet to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the cue sheet.

+
Parameters
+ + + + +
cue_sheetA pointer to an existing cue sheet to be checked.
check_cd_da_subsetIf true, check CUESHEET against more stringent requirements for a CD-DA (audio) disc.
violationAddress of a pointer to a string. If there is a violation, a pointer to a string explanation of the violation will be returned here. violation may be NULL if you don't need the returned string. Do not free the returned string; it will always point to static data.
+
+
+
Assertions:
cue_sheet != NULL
+
Return values
+ + +
FLAC__boolfalse if cue sheet is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__format_picture_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__format_picture_is_legal (const FLAC__StreamMetadata_Picturepicture,
const char ** violation 
)
+
+

Check picture data to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the PICTURE block.

+
Parameters
+ + + +
pictureA pointer to existing picture data to be checked.
violationAddress of a pointer to a string. If there is a violation, a pointer to a string explanation of the violation will be returned here. violation may be NULL if you don't need the returned string. Do not free the returned string; it will always point to static data.
+
+
+
Assertions:
picture != NULL
+
Return values
+ + +
FLAC__boolfalse if picture data is illegal, else true.
+
+
+ +
+
+

Variable Documentation

+ +

◆ FLAC__VERSION_STRING

+ +
+
+ + + + +
const char* FLAC__VERSION_STRING
+
+

The version string of the release, stamped onto the libraries and binaries.

+
Note
This does not correspond to the shared library version number, which is used to determine binary compatibility.
+ +
+
+ +

◆ FLAC__VENDOR_STRING

+ +
+
+ + + + +
const char* FLAC__VENDOR_STRING
+
+

The vendor string inserted by the encoder into the VORBIS_COMMENT block. This is a NUL-terminated ASCII string; when inserted into the VORBIS_COMMENT the trailing null is stripped.

+ +
+
+ +

◆ FLAC__STREAM_SYNC_STRING

+ +
+
+ + + + +
const FLAC__byte FLAC__STREAM_SYNC_STRING[4]
+
+

The byte string representation of the beginning of a FLAC stream.

+ +
+
+ +

◆ FLAC__STREAM_SYNC

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_SYNC
+
+

The 32-bit integer big-endian representation of the beginning of a FLAC stream.

+ +
+
+ +

◆ FLAC__STREAM_SYNC_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_SYNC_LEN
+
+

The length of the FLAC signature in bits.

+ +
+
+ +

◆ FLAC__EntropyCodingMethodTypeString

+ +
+
+ + + + +
const char* const FLAC__EntropyCodingMethodTypeString[]
+
+

Maps a FLAC__EntropyCodingMethodType to a C string.

+

Using a FLAC__EntropyCodingMethodType as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN
+
+

== 5 (bits)

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN
+
+

== 5 (bits)

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER
+
+

== (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_ESCAPE_PARAMETER
+
+

== (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE2_PARAMETER_LEN)-1

+ +
+
+ +

◆ FLAC__ENTROPY_CODING_METHOD_TYPE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__ENTROPY_CODING_METHOD_TYPE_LEN
+
+

== 2 (bits)

+ +
+
+ +

◆ FLAC__SubframeTypeString

+ +
+
+ + + + +
const char* const FLAC__SubframeTypeString[]
+
+

Maps a FLAC__SubframeType to a C string.

+

Using a FLAC__SubframeType as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN
+
+

== 5 (bits)

+ +
+
+ +

◆ FLAC__SUBFRAME_ZERO_PAD_LEN

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_ZERO_PAD_LEN
+
+

== 1 (bit)

+

This used to be a zero-padding bit (hence the name FLAC__SUBFRAME_ZERO_PAD_LEN) but is now a reserved bit. It still has a mandatory value of 0 but in the future may take on the value 0 or 1 to mean something else.

+ +
+
+ +

◆ FLAC__SUBFRAME_TYPE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_TYPE_LEN
+
+

== 6 (bits)

+ +
+
+ +

◆ FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK
+
+

= 0x00

+ +
+
+ +

◆ FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK
+
+

= 0x02

+ +
+
+ +

◆ FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK
+
+

= 0x10

+ +
+
+ +

◆ FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK

+ +
+
+ + + + +
const uint32_t FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK
+
+

= 0x40

+ +
+
+ +

◆ FLAC__ChannelAssignmentString

+ +
+
+ + + + +
const char* const FLAC__ChannelAssignmentString[]
+
+

Maps a FLAC__ChannelAssignment to a C string.

+

Using a FLAC__ChannelAssignment as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__FrameNumberTypeString

+ +
+
+ + + + +
const char* const FLAC__FrameNumberTypeString[]
+
+

Maps a FLAC__FrameNumberType to a C string.

+

Using a FLAC__FrameNumberType as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__FRAME_HEADER_SYNC

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_SYNC
+
+

== 0x3ffe; the frame header sync code

+ +
+
+ +

◆ FLAC__FRAME_HEADER_SYNC_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_SYNC_LEN
+
+

== 14 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_RESERVED_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_RESERVED_LEN
+
+

== 1 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN
+
+

== 1 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_BLOCK_SIZE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_BLOCK_SIZE_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_SAMPLE_RATE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_SAMPLE_RATE_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN
+
+

== 4 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN
+
+

== 3 (bits)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_ZERO_PAD_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_ZERO_PAD_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__FRAME_HEADER_CRC_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_HEADER_CRC_LEN
+
+

== 8 (bits)

+ +
+
+ +

◆ FLAC__FRAME_FOOTER_CRC_LEN

+ +
+
+ + + + +
const uint32_t FLAC__FRAME_FOOTER_CRC_LEN
+
+

== 16 (bits)

+ +
+
+ +

◆ FLAC__MetadataTypeString

+ +
+
+ + + + +
const char* const FLAC__MetadataTypeString[]
+
+

Maps a FLAC__MetadataType to a C string.

+

Using a FLAC__MetadataType as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN
+
+

== 16 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN
+
+

== 16 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN
+
+

== 24 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN
+
+

== 24 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN
+
+

== 20 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN
+
+

== 3 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN
+
+

== 5 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN
+
+

== 36 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN
+
+

== 128 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_APPLICATION_ID_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_APPLICATION_ID_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN
+
+

== 64 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN
+
+

== 64 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN
+
+

== 16 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER

+ +
+
+ + + + +
const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER
+
+

The value used in the sample_number field of FLAC__StreamMetadataSeekPoint used to indicate a placeholder point (== 0xffffffffffffffff).

+ +
+
+ +

◆ FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN
+
+

== 64 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN
+
+

== 8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN
+
+

== 3*8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN
+
+

== 64 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN
+
+

== 8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN
+
+

== 12*8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN
+
+

== 6+13*8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN
+
+

== 8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN
+
+

== 128*8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN
+
+

== 64 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN
+
+

== 7+258*8 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN
+
+

== 8 (bits)

+ +
+
+ +

◆ FLAC__StreamMetadata_Picture_TypeString

+ +
+
+ + + + +
const char* const FLAC__StreamMetadata_Picture_TypeString[]
+
+

Maps a FLAC__StreamMetadata_Picture_Type to a C string.

+

Using a FLAC__StreamMetadata_Picture_Type as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_TYPE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_TYPE_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_MIME_TYPE_LENGTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_DESCRIPTION_LENGTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_WIDTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_HEIGHT_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_DEPTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_COLORS_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_COLORS_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_PICTURE_DATA_LENGTH_LEN
+
+

== 32 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_IS_LAST_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_IS_LAST_LEN
+
+

== 1 (bit)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_TYPE_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_TYPE_LEN
+
+

== 7 (bits)

+ +
+
+ +

◆ FLAC__STREAM_METADATA_LENGTH_LEN

+ +
+
+ + + + +
const uint32_t FLAC__STREAM_METADATA_LENGTH_LEN
+
+

== 24 (bits)

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata.html new file mode 100644 index 000000000..54ee7f696 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata.html @@ -0,0 +1,97 @@ + + + + + + + +FLAC: FLAC/metadata.h: metadata interfaces + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/metadata.h: metadata interfaces
+
+
+ + + + + + + + + + +

+Modules

 
 
 
 
+

Detailed Description

+

This module provides functions for creating and manipulating FLAC metadata blocks in memory, and three progressively more powerful interfaces for traversing and editing metadata in native FLAC files. Note that currently only the Chain interface (level 2) supports Ogg FLAC files, and it is read-only i.e. no writing back changed metadata to file.

+

There are three metadata interfaces of increasing complexity:

+

Level 0: Read-only access to the STREAMINFO, VORBIS_COMMENT, CUESHEET, and PICTURE blocks.

+

Level 1: Read-write access to all metadata blocks. This level is write- efficient in most cases (more on this below), and uses less memory than level 2.

+

Level 2: Read-write access to all metadata blocks. This level is write- efficient in all cases, but uses more memory since all metadata for the whole file is read into memory and manipulated before writing out again.

+

What do we mean by efficient? Since FLAC metadata appears at the beginning of the file, when writing metadata back to a FLAC file it is possible to grow or shrink the metadata such that the entire file must be rewritten. However, if the size remains the same during changes or PADDING blocks are utilized, only the metadata needs to be overwritten, which is much faster.

+

Efficient means the whole file is rewritten at most one time, and only when necessary. Level 1 is not efficient only in the case that you cause more than one metadata block to grow or shrink beyond what can be accommodated by padding. In this case you should probably use level 2, which allows you to edit all the metadata for a file in memory and write it out all at once.

+

All levels know how to skip over and not disturb an ID3v2 tag at the front of the file.

+

All levels access files via their filenames. In addition, level 2 has additional alternative read and write functions that take an I/O handle and callbacks, for situations where access by filename is not possible.

+

In addition to the three interfaces, this module defines functions for creating and manipulating various metadata objects in memory. As we see from the Format module, FLAC metadata blocks in memory are very primitive structures for storing information in an efficient way. Reading information from the structures is easy but creating or modifying them directly is more complex. The metadata object routines here facilitate this by taking care of the consistency and memory management drudgery.

+

Unless you will be using the level 1 or 2 interfaces to modify existing metadata however, you will not probably not need these.

+

From a dependency standpoint, none of the encoders or decoders require the metadata module. This is so that embedded users can strip out the metadata module from libFLAC to reduce the size and complexity.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level0.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level0.html new file mode 100644 index 000000000..f05cc2efb --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level0.html @@ -0,0 +1,310 @@ + + + + + + + +FLAC: FLAC/metadata.h: metadata level 0 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/metadata.h: metadata level 0 interface
+
+
+ + + + + + + + + + +

+Functions

FLAC__bool FLAC__metadata_get_streaminfo (const char *filename, FLAC__StreamMetadata *streaminfo)
 
FLAC__bool FLAC__metadata_get_tags (const char *filename, FLAC__StreamMetadata **tags)
 
FLAC__bool FLAC__metadata_get_cuesheet (const char *filename, FLAC__StreamMetadata **cuesheet)
 
FLAC__bool FLAC__metadata_get_picture (const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
 
+

Detailed Description

+

The level 0 interface consists of individual routines to read the STREAMINFO, VORBIS_COMMENT, CUESHEET, and PICTURE blocks, requiring only a filename.

+

They try to skip any ID3v2 tag at the head of the file.

+

Function Documentation

+ +

◆ FLAC__metadata_get_streaminfo()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_get_streaminfo (const char * filename,
FLAC__StreamMetadatastreaminfo 
)
+
+

Read the STREAMINFO metadata block of the given FLAC file. This function will try to skip any ID3v2 tag at the head of the file.

+
Parameters
+ + + +
filenameThe path to the FLAC file to read.
streaminfoA pointer to space for the STREAMINFO block. Since FLAC__StreamMetadata is a simple structure with no memory allocation involved, you pass the address of an existing structure. It need not be initialized.
+
+
+
Assertions:
filename != NULL
streaminfo != NULL
+
Return values
+ + +
FLAC__booltrue if a valid STREAMINFO block was read from filename. Returns false if there was a memory allocation error, a file decoder error, or the file contained no STREAMINFO block. (A memory allocation error is possible because this function must set up a file decoder.)
+
+
+ +
+
+ +

◆ FLAC__metadata_get_tags()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_get_tags (const char * filename,
FLAC__StreamMetadata ** tags 
)
+
+

Read the VORBIS_COMMENT metadata block of the given FLAC file. This function will try to skip any ID3v2 tag at the head of the file.

+
Parameters
+ + + +
filenameThe path to the FLAC file to read.
tagsThe address where the returned pointer will be stored. The tags object must be deleted by the caller using FLAC__metadata_object_delete().
+
+
+
Assertions:
filename != NULL
tags != NULL
+
Return values
+ + +
FLAC__booltrue if a valid VORBIS_COMMENT block was read from filename, and *tags will be set to the address of the metadata structure. Returns false if there was a memory allocation error, a file decoder error, or the file contained no VORBIS_COMMENT block, and *tags will be set to NULL.
+
+
+ +
+
+ +

◆ FLAC__metadata_get_cuesheet()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_get_cuesheet (const char * filename,
FLAC__StreamMetadata ** cuesheet 
)
+
+

Read the CUESHEET metadata block of the given FLAC file. This function will try to skip any ID3v2 tag at the head of the file.

+
Parameters
+ + + +
filenameThe path to the FLAC file to read.
cuesheetThe address where the returned pointer will be stored. The cuesheet object must be deleted by the caller using FLAC__metadata_object_delete().
+
+
+
Assertions:
filename != NULL
cuesheet != NULL
+
Return values
+ + +
FLAC__booltrue if a valid CUESHEET block was read from filename, and *cuesheet will be set to the address of the metadata structure. Returns false if there was a memory allocation error, a file decoder error, or the file contained no CUESHEET block, and *cuesheet will be set to NULL.
+
+
+ +
+
+ +

◆ FLAC__metadata_get_picture()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_get_picture (const char * filename,
FLAC__StreamMetadata ** picture,
FLAC__StreamMetadata_Picture_Type type,
const char * mime_type,
const FLAC__byte * description,
uint32_t max_width,
uint32_t max_height,
uint32_t max_depth,
uint32_t max_colors 
)
+
+

Read a PICTURE metadata block of the given FLAC file. This function will try to skip any ID3v2 tag at the head of the file. Since there can be more than one PICTURE block in a file, this function takes a number of parameters that act as constraints to the search. The PICTURE block with the largest area matching all the constraints will be returned, or *picture will be set to NULL if there was no such block.

+
Parameters
+ + + + + + + + + + +
filenameThe path to the FLAC file to read.
pictureThe address where the returned pointer will be stored. The picture object must be deleted by the caller using FLAC__metadata_object_delete().
typeThe desired picture type. Use -1 to mean "any type".
mime_typeThe desired MIME type, e.g. "image/jpeg". The string will be matched exactly. Use NULL to mean "any MIME type".
descriptionThe desired description. The string will be matched exactly. Use NULL to mean "any + description".
max_widthThe maximum width in pixels desired. Use (uint32_t)(-1) to mean "any width".
max_heightThe maximum height in pixels desired. Use (uint32_t)(-1) to mean "any height".
max_depthThe maximum color depth in bits-per-pixel desired. Use (uint32_t)(-1) to mean "any depth".
max_colorsThe maximum number of colors desired. Use (uint32_t)(-1) to mean "any number of colors".
+
+
+
Assertions:
filename != NULL
picture != NULL
+
Return values
+ + +
FLAC__booltrue if a valid PICTURE block was read from filename, and *picture will be set to the address of the metadata structure. Returns false if there was a memory allocation error, a file decoder error, or the file contained no PICTURE block, and *picture will be set to NULL.
+
+
+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level1.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level1.html new file mode 100644 index 000000000..67b24b2a2 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level1.html @@ -0,0 +1,834 @@ + + + + + + + +FLAC: FLAC/metadata.h: metadata level 1 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/metadata.h: metadata level 1 interface
+
+
+ + + + +

+Typedefs

typedef struct FLAC__Metadata_SimpleIterator FLAC__Metadata_SimpleIterator
 
+ + + +

+Enumerations

enum  FLAC__Metadata_SimpleIteratorStatus {
+  FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK = 0, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE, +
+  FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR, +
+  FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR, +FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR, +
+  FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__Metadata_SimpleIteratorFLAC__metadata_simple_iterator_new (void)
 
void FLAC__metadata_simple_iterator_delete (FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__Metadata_SimpleIteratorStatus FLAC__metadata_simple_iterator_status (FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_init (FLAC__Metadata_SimpleIterator *iterator, const char *filename, FLAC__bool read_only, FLAC__bool preserve_file_stats)
 
FLAC__bool FLAC__metadata_simple_iterator_is_writable (const FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_next (FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_prev (FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_is_last (const FLAC__Metadata_SimpleIterator *iterator)
 
off_t FLAC__metadata_simple_iterator_get_block_offset (const FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type (const FLAC__Metadata_SimpleIterator *iterator)
 
uint32_t FLAC__metadata_simple_iterator_get_block_length (const FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_get_application_id (FLAC__Metadata_SimpleIterator *iterator, FLAC__byte *id)
 
FLAC__StreamMetadataFLAC__metadata_simple_iterator_get_block (FLAC__Metadata_SimpleIterator *iterator)
 
FLAC__bool FLAC__metadata_simple_iterator_set_block (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding)
 
FLAC__bool FLAC__metadata_simple_iterator_insert_block_after (FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, FLAC__bool use_padding)
 
FLAC__bool FLAC__metadata_simple_iterator_delete_block (FLAC__Metadata_SimpleIterator *iterator, FLAC__bool use_padding)
 
+ + + +

+Variables

const char *const FLAC__Metadata_SimpleIteratorStatusString []
 
+

Detailed Description

+

The level 1 interface provides read-write access to FLAC file metadata and operates directly on the FLAC file.

+

The general usage of this interface is:

+ +
Note
The FLAC file remains open the whole time between FLAC__metadata_simple_iterator_init() and FLAC__metadata_simple_iterator_delete(), so make sure you are not altering the file during this time.
+
+Do not modify the is_last, length, or type fields of returned FLAC__StreamMetadata objects. These are managed automatically.
+
+If any of the modification functions (FLAC__metadata_simple_iterator_set_block(), FLAC__metadata_simple_iterator_delete_block(), FLAC__metadata_simple_iterator_insert_block_after(), etc.) return false, you should delete the iterator as it may no longer be valid.
+

Typedef Documentation

+ +

◆ FLAC__Metadata_SimpleIterator

+ +
+
+

The opaque structure definition for the level 1 iterator type. See the metadata level 1 module for a detailed description.

+ +
+
+

Enumeration Type Documentation

+ +

◆ FLAC__Metadata_SimpleIteratorStatus

+ +
+
+

Status type for FLAC__Metadata_SimpleIterator.

+

The iterator's current status can be obtained by calling FLAC__metadata_simple_iterator_status().

+ + + + + + + + + + + + + + +
Enumerator
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK 

The iterator is in the normal OK state

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT 

The data passed into a function violated the function's usage criteria

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ERROR_OPENING_FILE 

The iterator could not open the target file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_A_FLAC_FILE 

The iterator could not find the FLAC signature at the start of the file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_NOT_WRITABLE 

The iterator tried to write to a file that was not writable

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_BAD_METADATA 

The iterator encountered input that does not conform to the FLAC metadata specification

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR 

The iterator encountered an error while reading the FLAC file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR 

The iterator encountered an error while seeking in the FLAC file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_WRITE_ERROR 

The iterator encountered an error while writing the FLAC file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_RENAME_ERROR 

The iterator encountered an error renaming the FLAC file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_UNLINK_ERROR 

The iterator encountered an error removing the temporary file

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_MEMORY_ALLOCATION_ERROR 

Memory allocation failed

+
FLAC__METADATA_SIMPLE_ITERATOR_STATUS_INTERNAL_ERROR 

The caller violated an assertion or an unexpected error occurred

+
+ +
+
+

Function Documentation

+ +

◆ FLAC__metadata_simple_iterator_new()

+ +
+
+ + + + + + + + +
FLAC__Metadata_SimpleIterator* FLAC__metadata_simple_iterator_new (void )
+
+

Create a new iterator instance.

+
Return values
+ + +
FLAC__Metadata_SimpleIterator*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_delete()

+ +
+
+ + + + + + + + +
void FLAC__metadata_simple_iterator_delete (FLAC__Metadata_SimpleIteratoriterator)
+
+

Free an iterator instance. Deletes the object pointed to by iterator.

+
Parameters
+ + +
iteratorA pointer to an existing iterator.
+
+
+
Assertions:
iterator != NULL
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_status()

+ +
+
+ + + + + + + + +
FLAC__Metadata_SimpleIteratorStatus FLAC__metadata_simple_iterator_status (FLAC__Metadata_SimpleIteratoriterator)
+
+

Get the current status of the iterator. Call this after a function returns false to get the reason for the error. Also resets the status to FLAC__METADATA_SIMPLE_ITERATOR_STATUS_OK.

+
Parameters
+ + +
iteratorA pointer to an existing iterator.
+
+
+
Assertions:
iterator != NULL
+
Return values
+ + +
FLAC__Metadata_SimpleIteratorStatusThe current status of the iterator.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_init()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_init (FLAC__Metadata_SimpleIteratoriterator,
const char * filename,
FLAC__bool read_only,
FLAC__bool preserve_file_stats 
)
+
+

Initialize the iterator to point to the first metadata block in the given FLAC file.

+
Parameters
+ + + + + +
iteratorA pointer to an existing iterator.
filenameThe path to the FLAC file.
read_onlyIf true, the FLAC file will be opened in read-only mode; if false, the FLAC file will be opened for edit even if no edits are performed.
preserve_file_statsIf true, the owner and modification time will be preserved even if the FLAC file is written to.
+
+
+
Assertions:
iterator != NULL
filename != NULL
+
Return values
+ + +
FLAC__boolfalse if a memory allocation error occurs, the file can't be opened, or another error occurs, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_is_writable()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_is_writable (const FLAC__Metadata_SimpleIteratoriterator)
+
+

Returns true if the FLAC file is writable. If false, calls to FLAC__metadata_simple_iterator_set_block() and FLAC__metadata_simple_iterator_insert_block_after() will fail.

+
Parameters
+ + +
iteratorA pointer to an existing iterator.
+
+
+
Assertions:
iterator != NULL
+
Return values
+ + +
FLAC__boolSee above.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_next()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_next (FLAC__Metadata_SimpleIteratoriterator)
+
+

Moves the iterator forward one metadata block, returning false if already at the end.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if already at the last metadata block of the chain, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_prev()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_prev (FLAC__Metadata_SimpleIteratoriterator)
+
+

Moves the iterator backward one metadata block, returning false if already at the beginning.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if already at the first metadata block of the chain, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_is_last()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_is_last (const FLAC__Metadata_SimpleIteratoriterator)
+
+

Returns a flag telling if the current metadata block is the last.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__booltrue if the current metadata block is the last in the file, else false.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_get_block_offset()

+ +
+
+ + + + + + + + +
off_t FLAC__metadata_simple_iterator_get_block_offset (const FLAC__Metadata_SimpleIteratoriterator)
+
+

Get the offset of the metadata block at the current position. This avoids reading the actual block data which can save time for large blocks.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
off_tThe offset of the metadata block at the current iterator position. This is the byte offset relative to the beginning of the file of the current metadata block's header.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_get_block_type()

+ +
+
+ + + + + + + + +
FLAC__MetadataType FLAC__metadata_simple_iterator_get_block_type (const FLAC__Metadata_SimpleIteratoriterator)
+
+

Get the type of the metadata block at the current position. This avoids reading the actual block data which can save time for large blocks.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__MetadataTypeThe type of the metadata block at the current iterator position.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_get_block_length()

+ +
+
+ + + + + + + + +
uint32_t FLAC__metadata_simple_iterator_get_block_length (const FLAC__Metadata_SimpleIteratoriterator)
+
+

Get the length of the metadata block at the current position. This avoids reading the actual block data which can save time for large blocks.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
uint32_tThe length of the metadata block at the current iterator position. The is same length as that in the metadata block header, i.e. the length of the metadata body that follows the header.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_get_application_id()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_get_application_id (FLAC__Metadata_SimpleIteratoriterator,
FLAC__byte * id 
)
+
+

Get the application ID of the APPLICATION block at the current position. This avoids reading the actual block data which can save time for large blocks.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
idA pointer to a buffer of at least 4 bytes where the ID will be stored.
+
+
+
Assertions:
iterator != NULL
id != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__booltrue if the ID was successfully read, else false, in which case you should check FLAC__metadata_simple_iterator_status() to find out why. If the status is FLAC__METADATA_SIMPLE_ITERATOR_STATUS_ILLEGAL_INPUT, then the current metadata block is not an APPLICATION block. Otherwise if the status is FLAC__METADATA_SIMPLE_ITERATOR_STATUS_READ_ERROR or FLAC__METADATA_SIMPLE_ITERATOR_STATUS_SEEK_ERROR, an I/O error occurred and the iterator can no longer be used.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_get_block()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata* FLAC__metadata_simple_iterator_get_block (FLAC__Metadata_SimpleIteratoriterator)
+
+

Get the metadata block at the current position. You can modify the block but must use FLAC__metadata_simple_iterator_set_block() to write it back to the FLAC file.

+

You must call FLAC__metadata_object_delete() on the returned object when you are finished with it.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__StreamMetadata*The current metadata block, or NULL if there was a memory allocation error.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_set_block()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_set_block (FLAC__Metadata_SimpleIteratoriterator,
FLAC__StreamMetadatablock,
FLAC__bool use_padding 
)
+
+

Write a block back to the FLAC file. This function tries to be as efficient as possible; how the block is actually written is shown by the following:

+

Existing block is a STREAMINFO block and the new block is a STREAMINFO block: the new block is written in place. Make sure you know what you're doing when changing the values of a STREAMINFO block.

+

Existing block is a STREAMINFO block and the new block is a not a STREAMINFO block: this is an error since the first block must be a STREAMINFO block. Returns false without altering the file.

+

Existing block is not a STREAMINFO block and the new block is a STREAMINFO block: this is an error since there may be only one STREAMINFO block. Returns false without altering the file.

+

Existing block and new block are the same length: the existing block will be replaced by the new block, written in place.

+

Existing block is longer than new block: if use_padding is true, the existing block will be overwritten in place with the new block followed by a PADDING block, if possible, to make the total size the same as the existing block. Remember that a padding block requires at least four bytes so if the difference in size between the new block and existing block is less than that, the entire file will have to be rewritten, using the new block's exact size. If use_padding is false, the entire file will be rewritten, replacing the existing block by the new block.

+

Existing block is shorter than new block: if use_padding is true, the function will try and expand the new block into the following PADDING block, if it exists and doing so won't shrink the PADDING block to less than 4 bytes. If there is no following PADDING block, or it will shrink to less than 4 bytes, or use_padding is false, the entire file is rewritten, replacing the existing block with the new block. Note that in this case any following PADDING block is preserved as is.

+

After writing the block, the iterator will remain in the same place, i.e. pointing to the new block.

+
Parameters
+ + + + +
iteratorA pointer to an existing initialized iterator.
blockThe block to set.
use_paddingSee above.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
block != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_insert_block_after()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_insert_block_after (FLAC__Metadata_SimpleIteratoriterator,
FLAC__StreamMetadatablock,
FLAC__bool use_padding 
)
+
+

This is similar to FLAC__metadata_simple_iterator_set_block() except that instead of writing over an existing block, it appends a block after the existing block. use_padding is again used to tell the function to try an expand into following padding in an attempt to avoid rewriting the entire file.

+

This function will fail and return false if given a STREAMINFO block.

+

After writing the block, the iterator will be pointing to the new block.

+
Parameters
+ + + + +
iteratorA pointer to an existing initialized iterator.
blockThe block to set.
use_paddingSee above.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
block != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false.
+
+
+ +
+
+ +

◆ FLAC__metadata_simple_iterator_delete_block()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_simple_iterator_delete_block (FLAC__Metadata_SimpleIteratoriterator,
FLAC__bool use_padding 
)
+
+

Deletes the block at the current position. This will cause the entire FLAC file to be rewritten, unless use_padding is true, in which case the block will be replaced by an equal-sized PADDING block. The iterator will be left pointing to the block before the one just deleted.

+

You may not delete the STREAMINFO block.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
use_paddingSee above.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_simple_iterator_init()
+
Return values
+ + +
FLAC__booltrue if successful, else false.
+
+
+ +
+
+

Variable Documentation

+ +

◆ FLAC__Metadata_SimpleIteratorStatusString

+ +
+
+ + + + +
const char* const FLAC__Metadata_SimpleIteratorStatusString[]
+
+

Maps a FLAC__Metadata_SimpleIteratorStatus to a C string.

+

Using a FLAC__Metadata_SimpleIteratorStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level2.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level2.html new file mode 100644 index 000000000..78b8b1285 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__level2.html @@ -0,0 +1,1236 @@ + + + + + + + +FLAC: FLAC/metadata.h: metadata level 2 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/metadata.h: metadata level 2 interface
+
+
+ + + + + + +

+Typedefs

typedef struct FLAC__Metadata_Chain FLAC__Metadata_Chain
 
typedef struct FLAC__Metadata_Iterator FLAC__Metadata_Iterator
 
+ + + +

+Enumerations

enum  FLAC__Metadata_ChainStatus {
+  FLAC__METADATA_CHAIN_STATUS_OK = 0, +FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT, +FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE, +FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE, +
+  FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE, +FLAC__METADATA_CHAIN_STATUS_BAD_METADATA, +FLAC__METADATA_CHAIN_STATUS_READ_ERROR, +FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR, +
+  FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR, +FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR, +FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR, +FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR, +
+  FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR, +FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS, +FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH, +FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL +
+ }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__Metadata_ChainFLAC__metadata_chain_new (void)
 
void FLAC__metadata_chain_delete (FLAC__Metadata_Chain *chain)
 
FLAC__Metadata_ChainStatus FLAC__metadata_chain_status (FLAC__Metadata_Chain *chain)
 
FLAC__bool FLAC__metadata_chain_read (FLAC__Metadata_Chain *chain, const char *filename)
 
FLAC__bool FLAC__metadata_chain_read_ogg (FLAC__Metadata_Chain *chain, const char *filename)
 
FLAC__bool FLAC__metadata_chain_read_with_callbacks (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks)
 
FLAC__bool FLAC__metadata_chain_read_ogg_with_callbacks (FLAC__Metadata_Chain *chain, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks)
 
FLAC__bool FLAC__metadata_chain_check_if_tempfile_needed (FLAC__Metadata_Chain *chain, FLAC__bool use_padding)
 
FLAC__bool FLAC__metadata_chain_write (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__bool preserve_file_stats)
 
FLAC__bool FLAC__metadata_chain_write_with_callbacks (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks)
 
FLAC__bool FLAC__metadata_chain_write_with_callbacks_and_tempfile (FLAC__Metadata_Chain *chain, FLAC__bool use_padding, FLAC__IOHandle handle, FLAC__IOCallbacks callbacks, FLAC__IOHandle temp_handle, FLAC__IOCallbacks temp_callbacks)
 
void FLAC__metadata_chain_merge_padding (FLAC__Metadata_Chain *chain)
 
void FLAC__metadata_chain_sort_padding (FLAC__Metadata_Chain *chain)
 
FLAC__Metadata_IteratorFLAC__metadata_iterator_new (void)
 
void FLAC__metadata_iterator_delete (FLAC__Metadata_Iterator *iterator)
 
void FLAC__metadata_iterator_init (FLAC__Metadata_Iterator *iterator, FLAC__Metadata_Chain *chain)
 
FLAC__bool FLAC__metadata_iterator_next (FLAC__Metadata_Iterator *iterator)
 
FLAC__bool FLAC__metadata_iterator_prev (FLAC__Metadata_Iterator *iterator)
 
FLAC__MetadataType FLAC__metadata_iterator_get_block_type (const FLAC__Metadata_Iterator *iterator)
 
FLAC__StreamMetadataFLAC__metadata_iterator_get_block (FLAC__Metadata_Iterator *iterator)
 
FLAC__bool FLAC__metadata_iterator_set_block (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block)
 
FLAC__bool FLAC__metadata_iterator_delete_block (FLAC__Metadata_Iterator *iterator, FLAC__bool replace_with_padding)
 
FLAC__bool FLAC__metadata_iterator_insert_block_before (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block)
 
FLAC__bool FLAC__metadata_iterator_insert_block_after (FLAC__Metadata_Iterator *iterator, FLAC__StreamMetadata *block)
 
+ + + +

+Variables

const char *const FLAC__Metadata_ChainStatusString []
 
+

Detailed Description

+

The level 2 interface provides read-write access to FLAC file metadata; all metadata is read into memory, operated on in memory, and then written to file, which is more efficient than level 1 when editing multiple blocks.

+

Currently Ogg FLAC is supported for read only, via FLAC__metadata_chain_read_ogg() but a subsequent FLAC__metadata_chain_write() will fail.

+

The general usage of this interface is:

+ +
Note
Even though the FLAC file is not open while the chain is being manipulated, you must not alter the file externally during this time. The chain assumes the FLAC file will not change between the time of FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg() and FLAC__metadata_chain_write().
+
+Do not modify the is_last, length, or type fields of returned FLAC__StreamMetadata objects. These are managed automatically.
+
+The metadata objects returned by FLAC__metadata_iterator_get_block() are owned by the chain; do not FLAC__metadata_object_delete() them. In the same way, blocks passed to FLAC__metadata_iterator_set_block() become owned by the chain and they will be deleted when the chain is deleted.
+

Typedef Documentation

+ +

◆ FLAC__Metadata_Chain

+ +
+
+ + + + +
typedef struct FLAC__Metadata_Chain FLAC__Metadata_Chain
+
+

The opaque structure definition for the level 2 chain type.

+ +
+
+ +

◆ FLAC__Metadata_Iterator

+ +
+
+

The opaque structure definition for the level 2 iterator type.

+ +
+
+

Enumeration Type Documentation

+ +

◆ FLAC__Metadata_ChainStatus

+ +
+
+ + + + +
enum FLAC__Metadata_ChainStatus
+
+ + + + + + + + + + + + + + + + + +
Enumerator
FLAC__METADATA_CHAIN_STATUS_OK 

The chain is in the normal OK state

+
FLAC__METADATA_CHAIN_STATUS_ILLEGAL_INPUT 

The data passed into a function violated the function's usage criteria

+
FLAC__METADATA_CHAIN_STATUS_ERROR_OPENING_FILE 

The chain could not open the target file

+
FLAC__METADATA_CHAIN_STATUS_NOT_A_FLAC_FILE 

The chain could not find the FLAC signature at the start of the file

+
FLAC__METADATA_CHAIN_STATUS_NOT_WRITABLE 

The chain tried to write to a file that was not writable

+
FLAC__METADATA_CHAIN_STATUS_BAD_METADATA 

The chain encountered input that does not conform to the FLAC metadata specification

+
FLAC__METADATA_CHAIN_STATUS_READ_ERROR 

The chain encountered an error while reading the FLAC file

+
FLAC__METADATA_CHAIN_STATUS_SEEK_ERROR 

The chain encountered an error while seeking in the FLAC file

+
FLAC__METADATA_CHAIN_STATUS_WRITE_ERROR 

The chain encountered an error while writing the FLAC file

+
FLAC__METADATA_CHAIN_STATUS_RENAME_ERROR 

The chain encountered an error renaming the FLAC file

+
FLAC__METADATA_CHAIN_STATUS_UNLINK_ERROR 

The chain encountered an error removing the temporary file

+
FLAC__METADATA_CHAIN_STATUS_MEMORY_ALLOCATION_ERROR 

Memory allocation failed

+
FLAC__METADATA_CHAIN_STATUS_INTERNAL_ERROR 

The caller violated an assertion or an unexpected error occurred

+
FLAC__METADATA_CHAIN_STATUS_INVALID_CALLBACKS 

One or more of the required callbacks was NULL

+
FLAC__METADATA_CHAIN_STATUS_READ_WRITE_MISMATCH 

FLAC__metadata_chain_write() was called on a chain read by FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(), or FLAC__metadata_chain_write_with_callbacks()/FLAC__metadata_chain_write_with_callbacks_and_tempfile() was called on a chain read by FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg(). Matching read/write methods must always be used.

+
FLAC__METADATA_CHAIN_STATUS_WRONG_WRITE_CALL 

FLAC__metadata_chain_write_with_callbacks() was called when the chain write requires a tempfile; use FLAC__metadata_chain_write_with_callbacks_and_tempfile() instead. Or, FLAC__metadata_chain_write_with_callbacks_and_tempfile() was called when the chain write does not require a tempfile; use FLAC__metadata_chain_write_with_callbacks() instead. Always check FLAC__metadata_chain_check_if_tempfile_needed() before writing via callbacks.

+
+ +
+
+

Function Documentation

+ +

◆ FLAC__metadata_chain_new()

+ +
+
+ + + + + + + + +
FLAC__Metadata_Chain* FLAC__metadata_chain_new (void )
+
+

Create a new chain instance.

+
Return values
+ + +
FLAC__Metadata_Chain*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_delete()

+ +
+
+ + + + + + + + +
void FLAC__metadata_chain_delete (FLAC__Metadata_Chainchain)
+
+

Free a chain instance. Deletes the object pointed to by chain.

+
Parameters
+ + +
chainA pointer to an existing chain.
+
+
+
Assertions:
chain != NULL
+ +
+
+ +

◆ FLAC__metadata_chain_status()

+ +
+
+ + + + + + + + +
FLAC__Metadata_ChainStatus FLAC__metadata_chain_status (FLAC__Metadata_Chainchain)
+
+

Get the current status of the chain. Call this after a function returns false to get the reason for the error. Also resets the status to FLAC__METADATA_CHAIN_STATUS_OK.

+
Parameters
+ + +
chainA pointer to an existing chain.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__Metadata_ChainStatusThe current status of the chain.
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_read()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_read (FLAC__Metadata_Chainchain,
const char * filename 
)
+
+

Read all metadata from a FLAC file into the chain.

+
Parameters
+ + + +
chainA pointer to an existing chain.
filenameThe path to the FLAC file to read.
+
+
+
Assertions:
chain != NULL
filename != NULL
+
Return values
+ + +
FLAC__booltrue if a valid list of metadata blocks was read from filename, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_read_ogg()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_read_ogg (FLAC__Metadata_Chainchain,
const char * filename 
)
+
+

Read all metadata from an Ogg FLAC file into the chain.

+
Note
Ogg FLAC metadata data writing is not supported yet and FLAC__metadata_chain_write() will fail.
+
Parameters
+ + + +
chainA pointer to an existing chain.
filenameThe path to the Ogg FLAC file to read.
+
+
+
Assertions:
chain != NULL
filename != NULL
+
Return values
+ + +
FLAC__booltrue if a valid list of metadata blocks was read from filename, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_read_with_callbacks()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_read_with_callbacks (FLAC__Metadata_Chainchain,
FLAC__IOHandle handle,
FLAC__IOCallbacks callbacks 
)
+
+

Read all metadata from a FLAC stream into the chain via I/O callbacks.

+

The handle need only be open for reading, but must be seekable. The equivalent minimum stdio fopen() file mode is "r" (or "rb" for Windows).

+
Parameters
+ + + + +
chainA pointer to an existing chain.
handleThe I/O handle of the FLAC stream to read. The handle will NOT be closed after the metadata is read; that is the duty of the caller.
callbacksA set of callbacks to use for I/O. The mandatory callbacks are read, seek, and tell.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if a valid list of metadata blocks was read from handle, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_read_ogg_with_callbacks()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_read_ogg_with_callbacks (FLAC__Metadata_Chainchain,
FLAC__IOHandle handle,
FLAC__IOCallbacks callbacks 
)
+
+

Read all metadata from an Ogg FLAC stream into the chain via I/O callbacks.

+

The handle need only be open for reading, but must be seekable. The equivalent minimum stdio fopen() file mode is "r" (or "rb" for Windows).

+
Note
Ogg FLAC metadata data writing is not supported yet and FLAC__metadata_chain_write() will fail.
+
Parameters
+ + + + +
chainA pointer to an existing chain.
handleThe I/O handle of the Ogg FLAC stream to read. The handle will NOT be closed after the metadata is read; that is the duty of the caller.
callbacksA set of callbacks to use for I/O. The mandatory callbacks are read, seek, and tell.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if a valid list of metadata blocks was read from handle, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_check_if_tempfile_needed()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_check_if_tempfile_needed (FLAC__Metadata_Chainchain,
FLAC__bool use_padding 
)
+
+

Checks if writing the given chain would require the use of a temporary file, or if it could be written in place.

+

Under certain conditions, padding can be utilized so that writing edited metadata back to the FLAC file does not require rewriting the entire file. If rewriting is required, then a temporary workfile is required. When writing metadata using callbacks, you must check this function to know whether to call FLAC__metadata_chain_write_with_callbacks() or FLAC__metadata_chain_write_with_callbacks_and_tempfile(). When writing with FLAC__metadata_chain_write(), the temporary file is handled internally.

+
Parameters
+ + + +
chainA pointer to an existing chain.
use_paddingWhether or not padding will be allowed to be used during the write. The value of use_padding given here must match the value later passed to FLAC__metadata_chain_write_with_callbacks() or FLAC__metadata_chain_write_with_callbacks_with_tempfile().
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if writing the current chain would require a tempfile, or false if metadata can be written in place.
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_write()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_write (FLAC__Metadata_Chainchain,
FLAC__bool use_padding,
FLAC__bool preserve_file_stats 
)
+
+

Write all metadata out to the FLAC file. This function tries to be as efficient as possible; how the metadata is actually written is shown by the following:

+

If the current chain is the same size as the existing metadata, the new data is written in place.

+

If the current chain is longer than the existing metadata, and use_padding is true, and the last block is a PADDING block of sufficient length, the function will truncate the final padding block so that the overall size of the metadata is the same as the existing metadata, and then just rewrite the metadata. Otherwise, if not all of the above conditions are met, the entire FLAC file must be rewritten. If you want to use padding this way it is a good idea to call FLAC__metadata_chain_sort_padding() first so that you have the maximum amount of padding to work with, unless you need to preserve ordering of the PADDING blocks for some reason.

+

If the current chain is shorter than the existing metadata, and use_padding is true, and the final block is a PADDING block, the padding is extended to make the overall size the same as the existing data. If use_padding is true and the last block is not a PADDING block, a new PADDING block is added to the end of the new data to make it the same size as the existing data (if possible, see the note to FLAC__metadata_simple_iterator_set_block() about the four byte limit) and the new data is written in place. If none of the above apply or use_padding is false, the entire FLAC file is rewritten.

+

If preserve_file_stats is true, the owner and modification time will be preserved even if the FLAC file is written.

+

For this write function to be used, the chain must have been read with FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg(), not FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks().

+
Parameters
+ + + + +
chainA pointer to an existing chain.
use_paddingSee above.
preserve_file_statsSee above.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if the write succeeded, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_write_with_callbacks()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_write_with_callbacks (FLAC__Metadata_Chainchain,
FLAC__bool use_padding,
FLAC__IOHandle handle,
FLAC__IOCallbacks callbacks 
)
+
+

Write all metadata out to a FLAC stream via callbacks.

+

(See FLAC__metadata_chain_write() for the details on how padding is used to write metadata in place if possible.)

+

The handle must be open for updating and be seekable. The equivalent minimum stdio fopen() file mode is "r+" (or "r+b" for Windows).

+

For this write function to be used, the chain must have been read with FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(), not FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg(). Also, FLAC__metadata_chain_check_if_tempfile_needed() must have returned false.

+
Parameters
+ + + + + +
chainA pointer to an existing chain.
use_paddingSee FLAC__metadata_chain_write()
handleThe I/O handle of the FLAC stream to write. The handle will NOT be closed after the metadata is written; that is the duty of the caller.
callbacksA set of callbacks to use for I/O. The mandatory callbacks are write and seek.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if the write succeeded, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_write_with_callbacks_and_tempfile()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_chain_write_with_callbacks_and_tempfile (FLAC__Metadata_Chainchain,
FLAC__bool use_padding,
FLAC__IOHandle handle,
FLAC__IOCallbacks callbacks,
FLAC__IOHandle temp_handle,
FLAC__IOCallbacks temp_callbacks 
)
+
+

Write all metadata out to a FLAC stream via callbacks.

+

(See FLAC__metadata_chain_write() for the details on how padding is used to write metadata in place if possible.)

+

This version of the write-with-callbacks function must be used when FLAC__metadata_chain_check_if_tempfile_needed() returns true. In this function, you must supply an I/O handle corresponding to the FLAC file to edit, and a temporary handle to which the new FLAC file will be written. It is the caller's job to move this temporary FLAC file on top of the original FLAC file to complete the metadata edit.

+

The handle must be open for reading and be seekable. The equivalent minimum stdio fopen() file mode is "r" (or "rb" for Windows).

+

The temp_handle must be open for writing. The equivalent minimum stdio fopen() file mode is "w" (or "wb" for Windows). It should be an empty stream, or at least positioned at the start-of-file (in which case it is the caller's duty to truncate it on return).

+

For this write function to be used, the chain must have been read with FLAC__metadata_chain_read_with_callbacks()/FLAC__metadata_chain_read_ogg_with_callbacks(), not FLAC__metadata_chain_read()/FLAC__metadata_chain_read_ogg(). Also, FLAC__metadata_chain_check_if_tempfile_needed() must have returned true.

+
Parameters
+ + + + + + + +
chainA pointer to an existing chain.
use_paddingSee FLAC__metadata_chain_write()
handleThe I/O handle of the original FLAC stream to read. The handle will NOT be closed after the metadata is written; that is the duty of the caller.
callbacksA set of callbacks to use for I/O on handle. The mandatory callbacks are read, seek, and eof.
temp_handleThe I/O handle of the FLAC stream to write. The handle will NOT be closed after the metadata is written; that is the duty of the caller.
temp_callbacksA set of callbacks to use for I/O on temp_handle. The only mandatory callback is write.
+
+
+
Assertions:
chain != NULL
+
Return values
+ + +
FLAC__booltrue if the write succeeded, else false. On failure, check the status with FLAC__metadata_chain_status().
+
+
+ +
+
+ +

◆ FLAC__metadata_chain_merge_padding()

+ +
+
+ + + + + + + + +
void FLAC__metadata_chain_merge_padding (FLAC__Metadata_Chainchain)
+
+

Merge adjacent PADDING blocks into a single block.

+
Note
This function does not write to the FLAC file, it only modifies the chain.
+
Warning
Any iterator on the current chain will become invalid after this call. You should delete the iterator and get a new one.
+
Parameters
+ + +
chainA pointer to an existing chain.
+
+
+
Assertions:
chain != NULL
+ +
+
+ +

◆ FLAC__metadata_chain_sort_padding()

+ +
+
+ + + + + + + + +
void FLAC__metadata_chain_sort_padding (FLAC__Metadata_Chainchain)
+
+

This function will move all PADDING blocks to the end on the metadata, then merge them into a single block.

+
Note
This function does not write to the FLAC file, it only modifies the chain.
+
Warning
Any iterator on the current chain will become invalid after this call. You should delete the iterator and get a new one.
+
Parameters
+ + +
chainA pointer to an existing chain.
+
+
+
Assertions:
chain != NULL
+ +
+
+ +

◆ FLAC__metadata_iterator_new()

+ +
+
+ + + + + + + + +
FLAC__Metadata_Iterator* FLAC__metadata_iterator_new (void )
+
+

Create a new iterator instance.

+
Return values
+ + +
FLAC__Metadata_Iterator*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_delete()

+ +
+
+ + + + + + + + +
void FLAC__metadata_iterator_delete (FLAC__Metadata_Iteratoriterator)
+
+

Free an iterator instance. Deletes the object pointed to by iterator.

+
Parameters
+ + +
iteratorA pointer to an existing iterator.
+
+
+
Assertions:
iterator != NULL
+ +
+
+ +

◆ FLAC__metadata_iterator_init()

+ +
+
+ + + + + + + + + + + + + + + + + + +
void FLAC__metadata_iterator_init (FLAC__Metadata_Iteratoriterator,
FLAC__Metadata_Chainchain 
)
+
+

Initialize the iterator to point to the first metadata block in the given chain.

+
Parameters
+ + + +
iteratorA pointer to an existing iterator.
chainA pointer to an existing and initialized (read) chain.
+
+
+
Assertions:
iterator != NULL
chain != NULL
+ +
+
+ +

◆ FLAC__metadata_iterator_next()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_iterator_next (FLAC__Metadata_Iteratoriterator)
+
+

Moves the iterator forward one metadata block, returning false if already at the end.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if already at the last metadata block of the chain, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_prev()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_iterator_prev (FLAC__Metadata_Iteratoriterator)
+
+

Moves the iterator backward one metadata block, returning false if already at the beginning.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if already at the first metadata block of the chain, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_get_block_type()

+ +
+
+ + + + + + + + +
FLAC__MetadataType FLAC__metadata_iterator_get_block_type (const FLAC__Metadata_Iteratoriterator)
+
+

Get the type of the metadata block at the current position.

+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__MetadataTypeThe type of the metadata block at the current iterator position.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_get_block()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata* FLAC__metadata_iterator_get_block (FLAC__Metadata_Iteratoriterator)
+
+

Get the metadata block at the current position. You can modify the block in place but must write the chain before the changes are reflected to the FLAC file. You do not need to call FLAC__metadata_iterator_set_block() to reflect the changes; the pointer returned by FLAC__metadata_iterator_get_block() points directly into the chain.

+
Warning
Do not call FLAC__metadata_object_delete() on the returned object; to delete a block use FLAC__metadata_iterator_delete_block().
+
Parameters
+ + +
iteratorA pointer to an existing initialized iterator.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__StreamMetadata*The current metadata block.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_set_block()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_iterator_set_block (FLAC__Metadata_Iteratoriterator,
FLAC__StreamMetadatablock 
)
+
+

Set the metadata block at the current position, replacing the existing block. The new block passed in becomes owned by the chain and it will be deleted when the chain is deleted.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
blockA pointer to a metadata block.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
block != NULL
+
Return values
+ + +
FLAC__boolfalse if the conditions in the above description are not met, or a memory allocation error occurs, otherwise true.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_delete_block()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_iterator_delete_block (FLAC__Metadata_Iteratoriterator,
FLAC__bool replace_with_padding 
)
+
+

Removes the current block from the chain. If replace_with_padding is true, the block will instead be replaced with a padding block of equal size. You can not delete the STREAMINFO block. The iterator will be left pointing to the block before the one just "deleted", even if replace_with_padding is true.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
replace_with_paddingSee above.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if the conditions in the above description are not met, otherwise true.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_insert_block_before()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_iterator_insert_block_before (FLAC__Metadata_Iteratoriterator,
FLAC__StreamMetadatablock 
)
+
+

Insert a new block before the current block. You cannot insert a block before the first STREAMINFO block. You cannot insert a STREAMINFO block as there can be only one, the one that already exists at the head when you read in a chain. The chain takes ownership of the new block and it will be deleted when the chain is deleted. The iterator will be left pointing to the new block.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
blockA pointer to a metadata block to insert.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if the conditions in the above description are not met, or a memory allocation error occurs, otherwise true.
+
+
+ +
+
+ +

◆ FLAC__metadata_iterator_insert_block_after()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_iterator_insert_block_after (FLAC__Metadata_Iteratoriterator,
FLAC__StreamMetadatablock 
)
+
+

Insert a new block after the current block. You cannot insert a STREAMINFO block as there can be only one, the one that already exists at the head when you read in a chain. The chain takes ownership of the new block and it will be deleted when the chain is deleted. The iterator will be left pointing to the new block.

+
Parameters
+ + + +
iteratorA pointer to an existing initialized iterator.
blockA pointer to a metadata block to insert.
+
+
+
Assertions:
iterator != NULL
iterator has been successfully initialized with FLAC__metadata_iterator_init()
+
Return values
+ + +
FLAC__boolfalse if the conditions in the above description are not met, or a memory allocation error occurs, otherwise true.
+
+
+ +
+
+

Variable Documentation

+ +

◆ FLAC__Metadata_ChainStatusString

+ +
+
+ + + + +
const char* const FLAC__Metadata_ChainStatusString[]
+
+

Maps a FLAC__Metadata_ChainStatus to a C string.

+

Using a FLAC__Metadata_ChainStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__object.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__object.html new file mode 100644 index 000000000..951b119c9 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__metadata__object.html @@ -0,0 +1,2367 @@ + + + + + + + +FLAC: FLAC/metadata.h: metadata object methods + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/metadata.h: metadata object methods
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__StreamMetadataFLAC__metadata_object_new (FLAC__MetadataType type)
 
FLAC__StreamMetadataFLAC__metadata_object_clone (const FLAC__StreamMetadata *object)
 
void FLAC__metadata_object_delete (FLAC__StreamMetadata *object)
 
FLAC__bool FLAC__metadata_object_is_equal (const FLAC__StreamMetadata *block1, const FLAC__StreamMetadata *block2)
 
FLAC__bool FLAC__metadata_object_application_set_data (FLAC__StreamMetadata *object, FLAC__byte *data, uint32_t length, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_seektable_resize_points (FLAC__StreamMetadata *object, uint32_t new_num_points)
 
void FLAC__metadata_object_seektable_set_point (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point)
 
FLAC__bool FLAC__metadata_object_seektable_insert_point (FLAC__StreamMetadata *object, uint32_t point_num, FLAC__StreamMetadata_SeekPoint point)
 
FLAC__bool FLAC__metadata_object_seektable_delete_point (FLAC__StreamMetadata *object, uint32_t point_num)
 
FLAC__bool FLAC__metadata_object_seektable_is_legal (const FLAC__StreamMetadata *object)
 
FLAC__bool FLAC__metadata_object_seektable_template_append_placeholders (FLAC__StreamMetadata *object, uint32_t num)
 
FLAC__bool FLAC__metadata_object_seektable_template_append_point (FLAC__StreamMetadata *object, FLAC__uint64 sample_number)
 
FLAC__bool FLAC__metadata_object_seektable_template_append_points (FLAC__StreamMetadata *object, FLAC__uint64 sample_numbers[], uint32_t num)
 
FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points (FLAC__StreamMetadata *object, uint32_t num, FLAC__uint64 total_samples)
 
FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points_by_samples (FLAC__StreamMetadata *object, uint32_t samples, FLAC__uint64 total_samples)
 
FLAC__bool FLAC__metadata_object_seektable_template_sort (FLAC__StreamMetadata *object, FLAC__bool compact)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_set_vendor_string (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_resize_comments (FLAC__StreamMetadata *object, uint32_t new_num_comments)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment (FLAC__StreamMetadata *object, uint32_t comment_num, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment (FLAC__StreamMetadata *object, FLAC__StreamMetadata_VorbisComment_Entry entry, FLAC__bool all, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment (FLAC__StreamMetadata *object, uint32_t comment_num)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair (FLAC__StreamMetadata_VorbisComment_Entry *entry, const char *field_name, const char *field_value)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair (const FLAC__StreamMetadata_VorbisComment_Entry entry, char **field_name, char **field_value)
 
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches (const FLAC__StreamMetadata_VorbisComment_Entry entry, const char *field_name, uint32_t field_name_length)
 
int FLAC__metadata_object_vorbiscomment_find_entry_from (const FLAC__StreamMetadata *object, uint32_t offset, const char *field_name)
 
int FLAC__metadata_object_vorbiscomment_remove_entry_matching (FLAC__StreamMetadata *object, const char *field_name)
 
int FLAC__metadata_object_vorbiscomment_remove_entries_matching (FLAC__StreamMetadata *object, const char *field_name)
 
FLAC__StreamMetadata_CueSheet_TrackFLAC__metadata_object_cuesheet_track_new (void)
 
FLAC__StreamMetadata_CueSheet_TrackFLAC__metadata_object_cuesheet_track_clone (const FLAC__StreamMetadata_CueSheet_Track *object)
 
void FLAC__metadata_object_cuesheet_track_delete (FLAC__StreamMetadata_CueSheet_Track *object)
 
FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t new_num_indices)
 
FLAC__bool FLAC__metadata_object_cuesheet_track_insert_index (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num, FLAC__StreamMetadata_CueSheet_Index index)
 
FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num)
 
FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index (FLAC__StreamMetadata *object, uint32_t track_num, uint32_t index_num)
 
FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks (FLAC__StreamMetadata *object, uint32_t new_num_tracks)
 
FLAC__bool FLAC__metadata_object_cuesheet_set_track (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_cuesheet_insert_track (FLAC__StreamMetadata *object, uint32_t track_num, FLAC__StreamMetadata_CueSheet_Track *track, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track (FLAC__StreamMetadata *object, uint32_t track_num)
 
FLAC__bool FLAC__metadata_object_cuesheet_delete_track (FLAC__StreamMetadata *object, uint32_t track_num)
 
FLAC__bool FLAC__metadata_object_cuesheet_is_legal (const FLAC__StreamMetadata *object, FLAC__bool check_cd_da_subset, const char **violation)
 
FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id (const FLAC__StreamMetadata *object)
 
FLAC__bool FLAC__metadata_object_picture_set_mime_type (FLAC__StreamMetadata *object, char *mime_type, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_picture_set_description (FLAC__StreamMetadata *object, FLAC__byte *description, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_picture_set_data (FLAC__StreamMetadata *object, FLAC__byte *data, FLAC__uint32 length, FLAC__bool copy)
 
FLAC__bool FLAC__metadata_object_picture_is_legal (const FLAC__StreamMetadata *object, const char **violation)
 
+

Detailed Description

+

This module contains methods for manipulating FLAC metadata objects.

+

Since many are variable length we have to be careful about the memory management. We decree that all pointers to data in the object are owned by the object and memory-managed by the object.

+

Use the FLAC__metadata_object_new() and FLAC__metadata_object_delete() functions to create all instances. When using the FLAC__metadata_object_set_*() functions to set pointers to data, set copy to true to have the function make it's own copy of the data, or to false to give the object ownership of your data. In the latter case your pointer must be freeable by free() and will be free()d when the object is FLAC__metadata_object_delete()d. It is legal to pass a null pointer as the data pointer to a FLAC__metadata_object_set_*() function as long as the length argument is 0 and the copy argument is false.

+

The FLAC__metadata_object_new() and FLAC__metadata_object_clone() function will return NULL in the case of a memory allocation error, otherwise a new object. The FLAC__metadata_object_set_*() functions return false in the case of a memory allocation error.

+

We don't have the convenience of C++ here, so note that the library relies on you to keep the types straight. In other words, if you pass, for example, a FLAC__StreamMetadata* that represents a STREAMINFO block to FLAC__metadata_object_application_set_data(), you will get an assertion failure.

+

For convenience the FLAC__metadata_object_vorbiscomment_*() functions maintain a trailing NUL on each Vorbis comment entry. This is not counted toward the length or stored in the stream, but it can make working with plain comments (those that don't contain embedded-NULs in the value) easier. Entries passed into these functions have trailing NULs added if missing, and returned entries are guaranteed to have a trailing NUL.

+

The FLAC__metadata_object_vorbiscomment_*() functions that take a Vorbis comment entry/name/value will first validate that it complies with the Vorbis comment specification and return false if it does not.

+

There is no need to recalculate the length field on metadata blocks you have modified. They will be calculated automatically before they are written back to a file.

+

Function Documentation

+ +

◆ FLAC__metadata_object_new()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata* FLAC__metadata_object_new (FLAC__MetadataType type)
+
+

Create a new metadata object instance of the given type.

+

The object will be "empty"; i.e. values and data pointers will be 0, with the exception of FLAC__METADATA_TYPE_VORBIS_COMMENT, which will have the vendor string set (but zero comments).

+

Do not pass in a value greater than or equal to FLAC__METADATA_TYPE_UNDEFINED unless you really know what you're doing.

+
Parameters
+ + +
typeType of object to create
+
+
+
Return values
+ + +
FLAC__StreamMetadata*NULL if there was an error allocating memory or the type code is greater than FLAC__MAX_METADATA_TYPE_CODE, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_clone()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata* FLAC__metadata_object_clone (const FLAC__StreamMetadataobject)
+
+

Create a copy of an existing metadata object.

+

The copy is a "deep" copy, i.e. dynamically allocated data within the object is also copied. The caller takes ownership of the new block and is responsible for freeing it with FLAC__metadata_object_delete().

+
Parameters
+ + +
objectPointer to object to copy.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__StreamMetadata*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_delete()

+ +
+
+ + + + + + + + +
void FLAC__metadata_object_delete (FLAC__StreamMetadataobject)
+
+

Free a metadata object. Deletes the object pointed to by object.

+

The delete is a "deep" delete, i.e. dynamically allocated data within the object is also deleted.

+
Parameters
+ + +
objectA pointer to an existing object.
+
+
+
Assertions:
object != NULL
+ +
+
+ +

◆ FLAC__metadata_object_is_equal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_is_equal (const FLAC__StreamMetadatablock1,
const FLAC__StreamMetadatablock2 
)
+
+

Compares two metadata objects.

+

The compare is "deep", i.e. dynamically allocated data within the object is also compared.

+
Parameters
+ + + +
block1A pointer to an existing object.
block2A pointer to an existing object.
+
+
+
Assertions:
block1 != NULL
block2 != NULL
+
Return values
+ + +
FLAC__booltrue if objects are identical, else false.
+
+
+ +

Referenced by FLAC::Metadata::Prototype::operator==().

+ +
+
+ +

◆ FLAC__metadata_object_application_set_data()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_application_set_data (FLAC__StreamMetadataobject,
FLAC__byte * data,
uint32_t length,
FLAC__bool copy 
)
+
+

Sets the application data of an APPLICATION block.

+

If copy is true, a copy of the data is stored; otherwise, the object takes ownership of the pointer. The existing data will be freed if this function is successful, otherwise the original data will remain if copy is true and malloc() fails.

+
Note
It is safe to pass a const pointer to data if copy is true.
+
Parameters
+ + + + + +
objectA pointer to an existing APPLICATION object.
dataA pointer to the data to set.
lengthThe length of data in bytes.
copySee above.
+
+
+
Assertions:
object != NULL
(data != NULL && length > 0) ||
(data == NULL && length == 0 && copy == false)
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_resize_points()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_resize_points (FLAC__StreamMetadataobject,
uint32_t new_num_points 
)
+
+

Resize the seekpoint array.

+

If the size shrinks, elements will truncated; if it grows, new placeholder points will be added to the end.

+
Parameters
+ + + +
objectA pointer to an existing SEEKTABLE object.
new_num_pointsThe desired length of the array; may be 0.
+
+
+
Assertions:
object != NULL
(object->data.seek_table.points == NULL && object->data.seek_table.num_points == 0) ||
(object->data.seek_table.points != NULL && object->data.seek_table.num_points > 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation error, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_set_point()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
void FLAC__metadata_object_seektable_set_point (FLAC__StreamMetadataobject,
uint32_t point_num,
FLAC__StreamMetadata_SeekPoint point 
)
+
+

Set a seekpoint in a seektable.

+
Parameters
+ + + + +
objectA pointer to an existing SEEKTABLE object.
point_numIndex into seekpoint array to set.
pointThe point to set.
+
+
+
Assertions:
object != NULL
object->data.seek_table.num_points > point_num
+ +
+
+ +

◆ FLAC__metadata_object_seektable_insert_point()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_insert_point (FLAC__StreamMetadataobject,
uint32_t point_num,
FLAC__StreamMetadata_SeekPoint point 
)
+
+

Insert a seekpoint into a seektable.

+
Parameters
+ + + + +
objectA pointer to an existing SEEKTABLE object.
point_numIndex into seekpoint array to set.
pointThe point to set.
+
+
+
Assertions:
object != NULL
object->data.seek_table.num_points >= point_num
+
Return values
+ + +
FLAC__boolfalse if memory allocation error, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_delete_point()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_delete_point (FLAC__StreamMetadataobject,
uint32_t point_num 
)
+
+

Delete a seekpoint from a seektable.

+
Parameters
+ + + +
objectA pointer to an existing SEEKTABLE object.
point_numIndex into seekpoint array to set.
+
+
+
Assertions:
object != NULL
object->data.seek_table.num_points > point_num
+
Return values
+ + +
FLAC__boolfalse if memory allocation error, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_is_legal()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_is_legal (const FLAC__StreamMetadataobject)
+
+

Check a seektable to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the seektable.

+
Parameters
+ + +
objectA pointer to an existing SEEKTABLE object.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if seek table is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_append_placeholders()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_append_placeholders (FLAC__StreamMetadataobject,
uint32_t num 
)
+
+

Append a number of placeholder points to the end of a seek table.

+
Note
As with the other ..._seektable_template_... functions, you should call FLAC__metadata_object_seektable_template_sort() when finished to make the seek table legal.
+
Parameters
+ + + +
objectA pointer to an existing SEEKTABLE object.
numThe number of placeholder points to append.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_append_point()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_append_point (FLAC__StreamMetadataobject,
FLAC__uint64 sample_number 
)
+
+

Append a specific seek point template to the end of a seek table.

+
Note
As with the other ..._seektable_template_... functions, you should call FLAC__metadata_object_seektable_template_sort() when finished to make the seek table legal.
+
Parameters
+ + + +
objectA pointer to an existing SEEKTABLE object.
sample_numberThe sample number of the seek point template.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_append_points()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_append_points (FLAC__StreamMetadataobject,
FLAC__uint64 sample_numbers[],
uint32_t num 
)
+
+

Append specific seek point templates to the end of a seek table.

+
Note
As with the other ..._seektable_template_... functions, you should call FLAC__metadata_object_seektable_template_sort() when finished to make the seek table legal.
+
Parameters
+ + + + +
objectA pointer to an existing SEEKTABLE object.
sample_numbersAn array of sample numbers for the seek points.
numThe number of seek point templates to append.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_append_spaced_points()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points (FLAC__StreamMetadataobject,
uint32_t num,
FLAC__uint64 total_samples 
)
+
+

Append a set of evenly-spaced seek point templates to the end of a seek table.

+
Note
As with the other ..._seektable_template_... functions, you should call FLAC__metadata_object_seektable_template_sort() when finished to make the seek table legal.
+
Parameters
+ + + + +
objectA pointer to an existing SEEKTABLE object.
numThe number of placeholder points to append.
total_samplesThe total number of samples to be encoded; the seekpoints will be spaced approximately total_samples / num samples apart.
+
+
+
Assertions:
object != NULL
total_samples > 0
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_append_spaced_points_by_samples()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_append_spaced_points_by_samples (FLAC__StreamMetadataobject,
uint32_t samples,
FLAC__uint64 total_samples 
)
+
+

Append a set of evenly-spaced seek point templates to the end of a seek table.

+
Note
As with the other ..._seektable_template_... functions, you should call FLAC__metadata_object_seektable_template_sort() when finished to make the seek table legal.
+
Parameters
+ + + + +
objectA pointer to an existing SEEKTABLE object.
samplesThe number of samples apart to space the placeholder points. The first point will be at sample 0, the second at sample samples, then 2*samples, and so on. As long as samples and total_samples are greater than 0, there will always be at least one seekpoint at sample 0.
total_samplesThe total number of samples to be encoded; the seekpoints will be spaced samples samples apart.
+
+
+
Assertions:
object != NULL
samples > 0
total_samples > 0
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_seektable_template_sort()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_seektable_template_sort (FLAC__StreamMetadataobject,
FLAC__bool compact 
)
+
+

Sort a seek table's seek points according to the format specification, removing duplicates.

+
Parameters
+ + + +
objectA pointer to a seek table to be sorted.
compactIf false, behaves like FLAC__format_seektable_sort(). If true, duplicates are deleted and the seek table is shrunk appropriately; the number of placeholder points present in the seek table will be the same after the call as before.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_set_vendor_string()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_set_vendor_string (FLAC__StreamMetadataobject,
FLAC__StreamMetadata_VorbisComment_Entry entry,
FLAC__bool copy 
)
+
+

Sets the vendor string in a VORBIS_COMMENT block.

+

For convenience, a trailing NUL is added to the entry if it doesn't have one already.

+

If copy is true, a copy of the entry is stored; otherwise, the object takes ownership of the entry.entry pointer.

+
Note
If this function returns false, the caller still owns the pointer.
+
Parameters
+ + + + +
objectA pointer to an existing VORBIS_COMMENT object.
entryThe entry to set the vendor string to.
copySee above.
+
+
+
Assertions:
object != NULL
(entry.entry != NULL && entry.length > 0) ||
(entry.entry == NULL && entry.length == 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_resize_comments()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_resize_comments (FLAC__StreamMetadataobject,
uint32_t new_num_comments 
)
+
+

Resize the comment array.

+

If the size shrinks, elements will truncated; if it grows, new empty fields will be added to the end.

+
Parameters
+ + + +
objectA pointer to an existing VORBIS_COMMENT object.
new_num_commentsThe desired length of the array; may be 0.
+
+
+
Assertions:
object != NULL
(object->data.vorbis_comment.comments == NULL && object->data.vorbis_comment.num_comments == 0) ||
(object->data.vorbis_comment.comments != NULL && object->data.vorbis_comment.num_comments > 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_set_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_set_comment (FLAC__StreamMetadataobject,
uint32_t comment_num,
FLAC__StreamMetadata_VorbisComment_Entry entry,
FLAC__bool copy 
)
+
+

Sets a comment in a VORBIS_COMMENT block.

+

For convenience, a trailing NUL is added to the entry if it doesn't have one already.

+

If copy is true, a copy of the entry is stored; otherwise, the object takes ownership of the entry.entry pointer.

+
Note
If this function returns false, the caller still owns the pointer.
+
Parameters
+ + + + + +
objectA pointer to an existing VORBIS_COMMENT object.
comment_numIndex into comment array to set.
entryThe entry to set the comment to.
copySee above.
+
+
+
Assertions:
object != NULL
comment_num < object->data.vorbis_comment.num_comments
(entry.entry != NULL && entry.length > 0) ||
(entry.entry == NULL && entry.length == 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_insert_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_insert_comment (FLAC__StreamMetadataobject,
uint32_t comment_num,
FLAC__StreamMetadata_VorbisComment_Entry entry,
FLAC__bool copy 
)
+
+

Insert a comment in a VORBIS_COMMENT block at the given index.

+

For convenience, a trailing NUL is added to the entry if it doesn't have one already.

+

If copy is true, a copy of the entry is stored; otherwise, the object takes ownership of the entry.entry pointer.

+
Note
If this function returns false, the caller still owns the pointer.
+
Parameters
+ + + + + +
objectA pointer to an existing VORBIS_COMMENT object.
comment_numThe index at which to insert the comment. The comments at and after comment_num move right one position. To append a comment to the end, set comment_num to object->data.vorbis_comment.num_comments .
entryThe comment to insert.
copySee above.
+
+
+
Assertions:
object != NULL
object->data.vorbis_comment.num_comments >= comment_num
(entry.entry != NULL && entry.length > 0) ||
(entry.entry == NULL && entry.length == 0 && copy == false)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_append_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_append_comment (FLAC__StreamMetadataobject,
FLAC__StreamMetadata_VorbisComment_Entry entry,
FLAC__bool copy 
)
+
+

Appends a comment to a VORBIS_COMMENT block.

+

For convenience, a trailing NUL is added to the entry if it doesn't have one already.

+

If copy is true, a copy of the entry is stored; otherwise, the object takes ownership of the entry.entry pointer.

+
Note
If this function returns false, the caller still owns the pointer.
+
Parameters
+ + + + +
objectA pointer to an existing VORBIS_COMMENT object.
entryThe comment to insert.
copySee above.
+
+
+
Assertions:
object != NULL
(entry.entry != NULL && entry.length > 0) ||
(entry.entry == NULL && entry.length == 0 && copy == false)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_replace_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_replace_comment (FLAC__StreamMetadataobject,
FLAC__StreamMetadata_VorbisComment_Entry entry,
FLAC__bool all,
FLAC__bool copy 
)
+
+

Replaces comments in a VORBIS_COMMENT block with a new one.

+

For convenience, a trailing NUL is added to the entry if it doesn't have one already.

+

Depending on the value of all, either all or just the first comment whose field name(s) match the given entry's name will be replaced by the given entry. If no comments match, entry will simply be appended.

+

If copy is true, a copy of the entry is stored; otherwise, the object takes ownership of the entry.entry pointer.

+
Note
If this function returns false, the caller still owns the pointer.
+
Parameters
+ + + + + +
objectA pointer to an existing VORBIS_COMMENT object.
entryThe comment to insert.
allIf true, all comments whose field name matches entry's field name will be removed, and entry will be inserted at the position of the first matching comment. If false, only the first comment whose field name matches entry's field name will be replaced with entry.
copySee above.
+
+
+
Assertions:
object != NULL
(entry.entry != NULL && entry.length > 0) ||
(entry.entry == NULL && entry.length == 0 && copy == false)
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_delete_comment()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_delete_comment (FLAC__StreamMetadataobject,
uint32_t comment_num 
)
+
+

Delete a comment in a VORBIS_COMMENT block at the given index.

+
Parameters
+ + + +
objectA pointer to an existing VORBIS_COMMENT object.
comment_numThe index of the comment to delete.
+
+
+
Assertions:
object != NULL
object->data.vorbis_comment.num_comments > comment_num
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_from_name_value_pair (FLAC__StreamMetadata_VorbisComment_Entryentry,
const char * field_name,
const char * field_value 
)
+
+

Creates a Vorbis comment entry from NUL-terminated name and value strings.

+

On return, the filled-in entry->entry pointer will point to malloc()ed memory and shall be owned by the caller. For convenience the entry will have a terminating NUL.

+
Parameters
+ + + + +
entryA pointer to a Vorbis comment entry. The entry's entry pointer should not point to allocated memory as it will be overwritten.
field_nameThe field name in ASCII, NUL terminated.
field_valueThe field value in UTF-8, NUL terminated.
+
+
+
Assertions:
entry != NULL
field_name != NULL
field_value != NULL
+
Return values
+ + +
FLAC__boolfalse if malloc() fails, or if field_name or field_value does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_to_name_value_pair (const FLAC__StreamMetadata_VorbisComment_Entry entry,
char ** field_name,
char ** field_value 
)
+
+

Splits a Vorbis comment entry into NUL-terminated name and value strings.

+

The returned pointers to name and value will be allocated by malloc() and shall be owned by the caller.

+
Parameters
+ + + + +
entryAn existing Vorbis comment entry.
field_nameThe address of where the returned pointer to the field name will be stored.
field_valueThe address of where the returned pointer to the field value will be stored.
+
+
+
Assertions:
(entry.entry != NULL && entry.length > 0)
memchr(entry.entry, '=', entry.length) != NULL
field_name != NULL
field_value != NULL
+
Return values
+ + +
FLAC__boolfalse if memory allocation fails or entry does not comply with the Vorbis comment specification, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_entry_matches()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_vorbiscomment_entry_matches (const FLAC__StreamMetadata_VorbisComment_Entry entry,
const char * field_name,
uint32_t field_name_length 
)
+
+

Check if the given Vorbis comment entry's field name matches the given field name.

+
Parameters
+ + + + +
entryAn existing Vorbis comment entry.
field_nameThe field name to check.
field_name_lengthThe length of field_name, not including the terminating NUL.
+
+
+
Assertions:
(entry.entry != NULL && entry.length > 0)
+
Return values
+ + +
FLAC__booltrue if the field names match, else false
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_find_entry_from()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
int FLAC__metadata_object_vorbiscomment_find_entry_from (const FLAC__StreamMetadataobject,
uint32_t offset,
const char * field_name 
)
+
+

Find a Vorbis comment with the given field name.

+

The search begins at entry number offset; use an offset of 0 to search from the beginning of the comment array.

+
Parameters
+ + + + +
objectA pointer to an existing VORBIS_COMMENT object.
offsetThe offset into the comment array from where to start the search.
field_nameThe field name of the comment to find.
+
+
+
Assertions:
object != NULL
field_name != NULL
+
Return values
+ + +
intThe offset in the comment array of the first comment whose field name matches field_name, or -1 if no match was found.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_remove_entry_matching()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int FLAC__metadata_object_vorbiscomment_remove_entry_matching (FLAC__StreamMetadataobject,
const char * field_name 
)
+
+

Remove first Vorbis comment matching the given field name.

+
Parameters
+ + + +
objectA pointer to an existing VORBIS_COMMENT object.
field_nameThe field name of comment to delete.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
int-1 for memory allocation error, 0 for no matching entries, 1 for one matching entry deleted.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_vorbiscomment_remove_entries_matching()

+ +
+
+ + + + + + + + + + + + + + + + + + +
int FLAC__metadata_object_vorbiscomment_remove_entries_matching (FLAC__StreamMetadataobject,
const char * field_name 
)
+
+

Remove all Vorbis comments matching the given field name.

+
Parameters
+ + + +
objectA pointer to an existing VORBIS_COMMENT object.
field_nameThe field name of comments to delete.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
int-1 for memory allocation error, 0 for no matching entries, else the number of matching entries deleted.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_new()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata_CueSheet_Track* FLAC__metadata_object_cuesheet_track_new (void )
+
+

Create a new CUESHEET track instance.

+

The object will be "empty"; i.e. values and data pointers will be 0.

+
Return values
+ + +
FLAC__StreamMetadata_CueSheet_Track*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_clone()

+ +
+
+ + + + + + + + +
FLAC__StreamMetadata_CueSheet_Track* FLAC__metadata_object_cuesheet_track_clone (const FLAC__StreamMetadata_CueSheet_Trackobject)
+
+

Create a copy of an existing CUESHEET track object.

+

The copy is a "deep" copy, i.e. dynamically allocated data within the object is also copied. The caller takes ownership of the new object and is responsible for freeing it with FLAC__metadata_object_cuesheet_track_delete().

+
Parameters
+ + +
objectPointer to object to copy.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__StreamMetadata_CueSheet_Track*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_delete()

+ +
+
+ + + + + + + + +
void FLAC__metadata_object_cuesheet_track_delete (FLAC__StreamMetadata_CueSheet_Trackobject)
+
+

Delete a CUESHEET track object

+
Parameters
+ + +
objectA pointer to an existing CUESHEET track object.
+
+
+
Assertions:
object != NULL
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_resize_indices()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_track_resize_indices (FLAC__StreamMetadataobject,
uint32_t track_num,
uint32_t new_num_indices 
)
+
+

Resize a track's index point array.

+

If the size shrinks, elements will truncated; if it grows, new blank indices will be added to the end.

+
Parameters
+ + + + +
objectA pointer to an existing CUESHEET object.
track_numThe index of the track to modify. NOTE: this is not necessarily the same as the track's number field.
new_num_indicesThe desired length of the array; may be 0.
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks > track_num
(object->data.cue_sheet.tracks[track_num].indices == NULL && object->data.cue_sheet.tracks[track_num].num_indices == 0) ||
(object->data.cue_sheet.tracks[track_num].indices != NULL && object->data.cue_sheet.tracks[track_num].num_indices > 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation error, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_insert_index()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_track_insert_index (FLAC__StreamMetadataobject,
uint32_t track_num,
uint32_t index_num,
FLAC__StreamMetadata_CueSheet_Index index 
)
+
+

Insert an index point in a CUESHEET track at the given index.

+
Parameters
+ + + + + +
objectA pointer to an existing CUESHEET object.
track_numThe index of the track to modify. NOTE: this is not necessarily the same as the track's number field.
index_numThe index into the track's index array at which to insert the index point. NOTE: this is not necessarily the same as the index point's number field. The indices at and after index_num move right one position. To append an index point to the end, set index_num to object->data.cue_sheet.tracks[track_num].num_indices .
indexThe index point to insert.
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks > track_num
object->data.cue_sheet.tracks[track_num].num_indices >= index_num
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_insert_blank_index()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_track_insert_blank_index (FLAC__StreamMetadataobject,
uint32_t track_num,
uint32_t index_num 
)
+
+

Insert a blank index point in a CUESHEET track at the given index.

+

A blank index point is one in which all field values are zero.

+
Parameters
+ + + + +
objectA pointer to an existing CUESHEET object.
track_numThe index of the track to modify. NOTE: this is not necessarily the same as the track's number field.
index_numThe index into the track's index array at which to insert the index point. NOTE: this is not necessarily the same as the index point's number field. The indices at and after index_num move right one position. To append an index point to the end, set index_num to object->data.cue_sheet.tracks[track_num].num_indices .
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks > track_num
object->data.cue_sheet.tracks[track_num].num_indices >= index_num
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_track_delete_index()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_track_delete_index (FLAC__StreamMetadataobject,
uint32_t track_num,
uint32_t index_num 
)
+
+

Delete an index point in a CUESHEET track at the given index.

+
Parameters
+ + + + +
objectA pointer to an existing CUESHEET object.
track_numThe index into the track array of the track to modify. NOTE: this is not necessarily the same as the track's number field.
index_numThe index into the track's index array of the index to delete. NOTE: this is not necessarily the same as the index's number field.
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks > track_num
object->data.cue_sheet.tracks[track_num].num_indices > index_num
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_resize_tracks()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_resize_tracks (FLAC__StreamMetadataobject,
uint32_t new_num_tracks 
)
+
+

Resize the track array.

+

If the size shrinks, elements will truncated; if it grows, new blank tracks will be added to the end.

+
Parameters
+ + + +
objectA pointer to an existing CUESHEET object.
new_num_tracksThe desired length of the array; may be 0.
+
+
+
Assertions:
object != NULL
(object->data.cue_sheet.tracks == NULL && object->data.cue_sheet.num_tracks == 0) ||
(object->data.cue_sheet.tracks != NULL && object->data.cue_sheet.num_tracks > 0)
+
Return values
+ + +
FLAC__boolfalse if memory allocation error, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_set_track()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_set_track (FLAC__StreamMetadataobject,
uint32_t track_num,
FLAC__StreamMetadata_CueSheet_Tracktrack,
FLAC__bool copy 
)
+
+

Sets a track in a CUESHEET block.

+

If copy is true, a copy of the track is stored; otherwise, the object takes ownership of the track pointer.

+
Parameters
+ + + + + +
objectA pointer to an existing CUESHEET object.
track_numIndex into track array to set. NOTE: this is not necessarily the same as the track's number field.
trackThe track to set the track to. You may safely pass in a const pointer if copy is true.
copySee above.
+
+
+
Assertions:
object != NULL
track_num < object->data.cue_sheet.num_tracks
(track->indices != NULL && track->num_indices > 0) ||
(track->indices == NULL && track->num_indices == 0)
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_insert_track()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_insert_track (FLAC__StreamMetadataobject,
uint32_t track_num,
FLAC__StreamMetadata_CueSheet_Tracktrack,
FLAC__bool copy 
)
+
+

Insert a track in a CUESHEET block at the given index.

+

If copy is true, a copy of the track is stored; otherwise, the object takes ownership of the track pointer.

+
Parameters
+ + + + + +
objectA pointer to an existing CUESHEET object.
track_numThe index at which to insert the track. NOTE: this is not necessarily the same as the track's number field. The tracks at and after track_num move right one position. To append a track to the end, set track_num to object->data.cue_sheet.num_tracks .
trackThe track to insert. You may safely pass in a const pointer if copy is true.
copySee above.
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks >= track_num
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_insert_blank_track()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_insert_blank_track (FLAC__StreamMetadataobject,
uint32_t track_num 
)
+
+

Insert a blank track in a CUESHEET block at the given index.

+

A blank track is one in which all field values are zero.

+
Parameters
+ + + +
objectA pointer to an existing CUESHEET object.
track_numThe index at which to insert the track. NOTE: this is not necessarily the same as the track's number field. The tracks at and after track_num move right one position. To append a track to the end, set track_num to object->data.cue_sheet.num_tracks .
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks >= track_num
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_delete_track()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_delete_track (FLAC__StreamMetadataobject,
uint32_t track_num 
)
+
+

Delete a track in a CUESHEET block at the given index.

+
Parameters
+ + + +
objectA pointer to an existing CUESHEET object.
track_numThe index into the track array of the track to delete. NOTE: this is not necessarily the same as the track's number field.
+
+
+
Assertions:
object != NULL
object->data.cue_sheet.num_tracks > track_num
+
Return values
+ + +
FLAC__boolfalse if realloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_cuesheet_is_legal (const FLAC__StreamMetadataobject,
FLAC__bool check_cd_da_subset,
const char ** violation 
)
+
+

Check a cue sheet to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the cue sheet.

+
Parameters
+ + + + +
objectA pointer to an existing CUESHEET object.
check_cd_da_subsetIf true, check CUESHEET against more stringent requirements for a CD-DA (audio) disc.
violationAddress of a pointer to a string. If there is a violation, a pointer to a string explanation of the violation will be returned here. violation may be NULL if you don't need the returned string. Do not free the returned string; it will always point to static data.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if cue sheet is illegal, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_cuesheet_calculate_cddb_id()

+ +
+
+ + + + + + + + +
FLAC__uint32 FLAC__metadata_object_cuesheet_calculate_cddb_id (const FLAC__StreamMetadataobject)
+
+

Calculate and return the CDDB/freedb ID for a cue sheet. The function assumes the cue sheet corresponds to a CD; the result is undefined if the cuesheet's is_cd bit is not set.

+
Parameters
+ + +
objectA pointer to an existing CUESHEET object.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__uint32The unsigned integer representation of the CDDB/freedb ID
+
+
+ +
+
+ +

◆ FLAC__metadata_object_picture_set_mime_type()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_picture_set_mime_type (FLAC__StreamMetadataobject,
char * mime_type,
FLAC__bool copy 
)
+
+

Sets the MIME type of a PICTURE block.

+

If copy is true, a copy of the string is stored; otherwise, the object takes ownership of the pointer. The existing string will be freed if this function is successful, otherwise the original string will remain if copy is true and malloc() fails.

+
Note
It is safe to pass a const pointer to mime_type if copy is true.
+
Parameters
+ + + + +
objectA pointer to an existing PICTURE object.
mime_typeA pointer to the MIME type string. The string must be ASCII characters 0x20-0x7e, NUL-terminated. No validation is done.
copySee above.
+
+
+
Assertions:
object != NULL
(mime_type != NULL)
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_picture_set_description()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_picture_set_description (FLAC__StreamMetadataobject,
FLAC__byte * description,
FLAC__bool copy 
)
+
+

Sets the description of a PICTURE block.

+

If copy is true, a copy of the string is stored; otherwise, the object takes ownership of the pointer. The existing string will be freed if this function is successful, otherwise the original string will remain if copy is true and malloc() fails.

+
Note
It is safe to pass a const pointer to description if copy is true.
+
Parameters
+ + + + +
objectA pointer to an existing PICTURE object.
descriptionA pointer to the description string. The string must be valid UTF-8, NUL-terminated. No validation is done.
copySee above.
+
+
+
Assertions:
object != NULL
(description != NULL)
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_picture_set_data()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_picture_set_data (FLAC__StreamMetadataobject,
FLAC__byte * data,
FLAC__uint32 length,
FLAC__bool copy 
)
+
+

Sets the picture data of a PICTURE block.

+

If copy is true, a copy of the data is stored; otherwise, the object takes ownership of the pointer. Also sets the data_length field of the metadata object to what is passed in as the length parameter. The existing data will be freed if this function is successful, otherwise the original data and data_length will remain if copy is true and malloc() fails.

+
Note
It is safe to pass a const pointer to data if copy is true.
+
Parameters
+ + + + + +
objectA pointer to an existing PICTURE object.
dataA pointer to the data to set.
lengthThe length of data in bytes.
copySee above.
+
+
+
Assertions:
object != NULL
(data != NULL && length > 0) ||
(data == NULL && length == 0 && copy == false)
+
Return values
+ + +
FLAC__boolfalse if copy is true and malloc() fails, else true.
+
+
+ +
+
+ +

◆ FLAC__metadata_object_picture_is_legal()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__metadata_object_picture_is_legal (const FLAC__StreamMetadataobject,
const char ** violation 
)
+
+

Check a PICTURE block to see if it conforms to the FLAC specification. See the format specification for limits on the contents of the PICTURE block.

+
Parameters
+ + + +
objectA pointer to existing PICTURE block to be checked.
violationAddress of a pointer to a string. If there is a violation, a pointer to a string explanation of the violation will be returned here. violation may be NULL if you don't need the returned string. Do not free the returned string; it will always point to static data.
+
+
+
Assertions:
object != NULL
+
Return values
+ + +
FLAC__boolfalse if PICTURE block is illegal, else true.
+
+
+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__decoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__decoder.html new file mode 100644 index 000000000..2abffd508 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__decoder.html @@ -0,0 +1,2351 @@ + + + + + + + +FLAC: FLAC/stream_decoder.h: stream decoder interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/stream_decoder.h: stream decoder interface
+
+
+ + + + +

+Classes

struct  FLAC__StreamDecoder
 
+ + + + + + + + + + + + + + + + + +

+Typedefs

typedef FLAC__StreamDecoderReadStatus(* FLAC__StreamDecoderReadCallback) (const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
typedef FLAC__StreamDecoderSeekStatus(* FLAC__StreamDecoderSeekCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
typedef FLAC__StreamDecoderTellStatus(* FLAC__StreamDecoderTellCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
typedef FLAC__StreamDecoderLengthStatus(* FLAC__StreamDecoderLengthCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
 
typedef FLAC__bool(* FLAC__StreamDecoderEofCallback) (const FLAC__StreamDecoder *decoder, void *client_data)
 
typedef FLAC__StreamDecoderWriteStatus(* FLAC__StreamDecoderWriteCallback) (const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
 
typedef void(* FLAC__StreamDecoderMetadataCallback) (const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
 
typedef void(* FLAC__StreamDecoderErrorCallback) (const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
 
+ + + + + + + + + + + + + + + + + +

+Enumerations

enum  FLAC__StreamDecoderState {
+  FLAC__STREAM_DECODER_SEARCH_FOR_METADATA = 0, +FLAC__STREAM_DECODER_READ_METADATA, +FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC, +FLAC__STREAM_DECODER_READ_FRAME, +
+  FLAC__STREAM_DECODER_END_OF_STREAM, +FLAC__STREAM_DECODER_OGG_ERROR, +FLAC__STREAM_DECODER_SEEK_ERROR, +FLAC__STREAM_DECODER_ABORTED, +
+  FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR, +FLAC__STREAM_DECODER_UNINITIALIZED +
+ }
 
enum  FLAC__StreamDecoderInitStatus {
+  FLAC__STREAM_DECODER_INIT_STATUS_OK = 0, +FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER, +FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS, +FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR, +
+  FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE, +FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED +
+ }
 
enum  FLAC__StreamDecoderReadStatus { FLAC__STREAM_DECODER_READ_STATUS_CONTINUE, +FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM, +FLAC__STREAM_DECODER_READ_STATUS_ABORT + }
 
enum  FLAC__StreamDecoderSeekStatus { FLAC__STREAM_DECODER_SEEK_STATUS_OK, +FLAC__STREAM_DECODER_SEEK_STATUS_ERROR, +FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED + }
 
enum  FLAC__StreamDecoderTellStatus { FLAC__STREAM_DECODER_TELL_STATUS_OK, +FLAC__STREAM_DECODER_TELL_STATUS_ERROR, +FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED + }
 
enum  FLAC__StreamDecoderLengthStatus { FLAC__STREAM_DECODER_LENGTH_STATUS_OK, +FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR, +FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED + }
 
enum  FLAC__StreamDecoderWriteStatus { FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE, +FLAC__STREAM_DECODER_WRITE_STATUS_ABORT + }
 
enum  FLAC__StreamDecoderErrorStatus { FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC, +FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER, +FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH, +FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM + }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__StreamDecoderFLAC__stream_decoder_new (void)
 
void FLAC__stream_decoder_delete (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_set_ogg_serial_number (FLAC__StreamDecoder *decoder, long serial_number)
 
FLAC__bool FLAC__stream_decoder_set_md5_checking (FLAC__StreamDecoder *decoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_decoder_set_metadata_respond (FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
 
FLAC__bool FLAC__stream_decoder_set_metadata_respond_application (FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
 
FLAC__bool FLAC__stream_decoder_set_metadata_respond_all (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_set_metadata_ignore (FLAC__StreamDecoder *decoder, FLAC__MetadataType type)
 
FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application (FLAC__StreamDecoder *decoder, const FLAC__byte id[4])
 
FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all (FLAC__StreamDecoder *decoder)
 
FLAC__StreamDecoderState FLAC__stream_decoder_get_state (const FLAC__StreamDecoder *decoder)
 
const char * FLAC__stream_decoder_get_resolved_state_string (const FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_get_md5_checking (const FLAC__StreamDecoder *decoder)
 
FLAC__uint64 FLAC__stream_decoder_get_total_samples (const FLAC__StreamDecoder *decoder)
 
uint32_t FLAC__stream_decoder_get_channels (const FLAC__StreamDecoder *decoder)
 
FLAC__ChannelAssignment FLAC__stream_decoder_get_channel_assignment (const FLAC__StreamDecoder *decoder)
 
uint32_t FLAC__stream_decoder_get_bits_per_sample (const FLAC__StreamDecoder *decoder)
 
uint32_t FLAC__stream_decoder_get_sample_rate (const FLAC__StreamDecoder *decoder)
 
uint32_t FLAC__stream_decoder_get_blocksize (const FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_get_decode_position (const FLAC__StreamDecoder *decoder, FLAC__uint64 *position)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_stream (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_stream (FLAC__StreamDecoder *decoder, FLAC__StreamDecoderReadCallback read_callback, FLAC__StreamDecoderSeekCallback seek_callback, FLAC__StreamDecoderTellCallback tell_callback, FLAC__StreamDecoderLengthCallback length_callback, FLAC__StreamDecoderEofCallback eof_callback, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_FILE (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_FILE (FLAC__StreamDecoder *decoder, FILE *file, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_file (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_file (FLAC__StreamDecoder *decoder, const char *filename, FLAC__StreamDecoderWriteCallback write_callback, FLAC__StreamDecoderMetadataCallback metadata_callback, FLAC__StreamDecoderErrorCallback error_callback, void *client_data)
 
FLAC__bool FLAC__stream_decoder_finish (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_flush (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_reset (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_process_single (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_process_until_end_of_stream (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_skip_single_frame (FLAC__StreamDecoder *decoder)
 
FLAC__bool FLAC__stream_decoder_seek_absolute (FLAC__StreamDecoder *decoder, FLAC__uint64 sample)
 
+ + + + + + + + + + + + + + + + + +

+Variables

const char *const FLAC__StreamDecoderStateString []
 
const char *const FLAC__StreamDecoderInitStatusString []
 
const char *const FLAC__StreamDecoderReadStatusString []
 
const char *const FLAC__StreamDecoderSeekStatusString []
 
const char *const FLAC__StreamDecoderTellStatusString []
 
const char *const FLAC__StreamDecoderLengthStatusString []
 
const char *const FLAC__StreamDecoderWriteStatusString []
 
const char *const FLAC__StreamDecoderErrorStatusString []
 
+

Detailed Description

+

This module contains the functions which implement the stream decoder.

+

The stream decoder can decode native FLAC, and optionally Ogg FLAC (check FLAC_API_SUPPORTS_OGG_FLAC) streams and files.

+

The basic usage of this decoder is as follows:

+

In more detail, the program will create a new instance by calling FLAC__stream_decoder_new(), then call FLAC__stream_decoder_set_*() functions to override the default decoder options, and call one of the FLAC__stream_decoder_init_*() functions.

+

There are three initialization functions for native FLAC, one for setting up the decoder to decode FLAC data from the client via callbacks, and two for decoding directly from a FLAC file.

+

For decoding via callbacks, use FLAC__stream_decoder_init_stream(). You must also supply several callbacks for handling I/O. Some (like seeking) are optional, depending on the capabilities of the input.

+

For decoding directly from a file, use FLAC__stream_decoder_init_FILE() or FLAC__stream_decoder_init_file(). Then you must only supply an open FILE* or filename and fewer callbacks; the decoder will handle the other callbacks internally.

+

There are three similarly-named init functions for decoding from Ogg FLAC streams. Check FLAC_API_SUPPORTS_OGG_FLAC to find out if the library has been built with Ogg support.

+

Once the decoder is initialized, your program will call one of several functions to start the decoding process:

+
    +
  • FLAC__stream_decoder_process_single() - Tells the decoder to process at most one metadata block or audio frame and return, calling either the metadata callback or write callback, respectively, once. If the decoder loses sync it will return with only the error callback being called.
  • +
  • FLAC__stream_decoder_process_until_end_of_metadata() - Tells the decoder to process the stream from the current location and stop upon reaching the first audio frame. The client will get one metadata, write, or error callback per metadata block, audio frame, or sync error, respectively.
  • +
  • FLAC__stream_decoder_process_until_end_of_stream() - Tells the decoder to process the stream from the current location until the read callback returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM or FLAC__STREAM_DECODER_READ_STATUS_ABORT. The client will get one metadata, write, or error callback per metadata block, audio frame, or sync error, respectively.
  • +
+

When the decoder has finished decoding (normally or through an abort), the instance is finished by calling FLAC__stream_decoder_finish(), which ensures the decoder is in the correct state and frees memory. Then the instance may be deleted with FLAC__stream_decoder_delete() or initialized again to decode another stream.

+

Seeking is exposed through the FLAC__stream_decoder_seek_absolute() method. At any point after the stream decoder has been initialized, the client can call this function to seek to an exact sample within the stream. Subsequently, the first time the write callback is called it will be passed a (possibly partial) block starting at that sample.

+

If the client cannot seek via the callback interface provided, but still has another way of seeking, it can flush the decoder using FLAC__stream_decoder_flush() and start feeding data from the new position through the read callback.

+

The stream decoder also provides MD5 signature checking. If this is turned on before initialization, FLAC__stream_decoder_finish() will report when the decoded MD5 signature does not match the one stored in the STREAMINFO block. MD5 checking is automatically turned off (until the next FLAC__stream_decoder_reset()) if there is no signature in the STREAMINFO block or when a seek is attempted.

+

The FLAC__stream_decoder_set_metadata_*() functions deserve special attention. By default, the decoder only calls the metadata_callback for the STREAMINFO block. These functions allow you to tell the decoder explicitly which blocks to parse and return via the metadata_callback and/or which to skip. Use a FLAC__stream_decoder_set_metadata_respond_all(), FLAC__stream_decoder_set_metadata_ignore() ... or FLAC__stream_decoder_set_metadata_ignore_all(), FLAC__stream_decoder_set_metadata_respond() ... sequence to exactly specify which blocks to return. Remember that metadata blocks can potentially be big (for example, cover art) so filtering out the ones you don't use can reduce the memory requirements of the decoder. Also note the special forms FLAC__stream_decoder_set_metadata_respond_application(id) and FLAC__stream_decoder_set_metadata_ignore_application(id) for filtering APPLICATION blocks based on the application ID.

+

STREAMINFO and SEEKTABLE blocks are always parsed and used internally, but they still can legally be filtered from the metadata_callback.

+
Note
The "set" functions may only be called when the decoder is in the state FLAC__STREAM_DECODER_UNINITIALIZED, i.e. after FLAC__stream_decoder_new() or FLAC__stream_decoder_finish(), but before FLAC__stream_decoder_init_*(). If this is the case they will return true, otherwise false.
+
+FLAC__stream_decoder_finish() resets all settings to the constructor defaults, including the callbacks.
+

Typedef Documentation

+ +

◆ FLAC__StreamDecoderReadCallback

+ +
+
+ + + + +
typedef FLAC__StreamDecoderReadStatus(* FLAC__StreamDecoderReadCallback) (const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
+
+

Signature for the read callback.

+

A function pointer matching this signature must be passed to FLAC__stream_decoder_init*_stream(). The supplied function will be called when the decoder needs more input data. The address of the buffer to be filled is supplied, along with the number of bytes the buffer can hold. The callback may choose to supply less data and modify the byte count but must be careful not to overflow the buffer. The callback then returns a status code chosen from FLAC__StreamDecoderReadStatus.

+

Here is an example of a read callback for stdio streams:

FLAC__StreamDecoderReadStatus read_cb(const FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
if(*bytes > 0) {
*bytes = fread(buffer, sizeof(FLAC__byte), *bytes, file);
if(ferror(file))
else if(*bytes == 0)
else
}
else
}
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + + +
decoderThe decoder instance calling the callback.
bufferA pointer to a location for the callee to store data to be decoded.
bytesA pointer to the size of the buffer. On entry to the callback, it contains the maximum number of bytes that may be stored in buffer. The callee must set it to the actual number of bytes stored (0 in case of error or end-of-stream) before returning.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamDecoderReadStatusThe callee's return status. Note that the callback should return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM if and only if zero bytes were read and there is no more data to be read.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderSeekCallback

+ +
+
+ + + + +
typedef FLAC__StreamDecoderSeekStatus(* FLAC__StreamDecoderSeekCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
+
+

Signature for the seek callback.

+

A function pointer matching this signature may be passed to FLAC__stream_decoder_init*_stream(). The supplied function will be called when the decoder needs to seek the input stream. The decoder will pass the absolute byte offset to seek to, 0 meaning the beginning of the stream.

+

Here is an example of a seek callback for stdio streams:

FLAC__StreamDecoderSeekStatus seek_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
if(file == stdin)
else if(fseeko(file, (off_t)absolute_byte_offset, SEEK_SET) < 0)
else
}
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + +
decoderThe decoder instance calling the callback.
absolute_byte_offsetThe offset from the beginning of the stream to seek to.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamDecoderSeekStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderTellCallback

+ +
+
+ + + + +
typedef FLAC__StreamDecoderTellStatus(* FLAC__StreamDecoderTellCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
+
+

Signature for the tell callback.

+

A function pointer matching this signature may be passed to FLAC__stream_decoder_init*_stream(). The supplied function will be called when the decoder wants to know the current position of the stream. The callback should return the byte offset from the beginning of the stream.

+

Here is an example of a tell callback for stdio streams:

FLAC__StreamDecoderTellStatus tell_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
off_t pos;
if(file == stdin)
else if((pos = ftello(file)) < 0)
else {
*absolute_byte_offset = (FLAC__uint64)pos;
}
}
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + +
decoderThe decoder instance calling the callback.
absolute_byte_offsetA pointer to storage for the current offset from the beginning of the stream.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamDecoderTellStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderLengthCallback

+ +
+
+ + + + +
typedef FLAC__StreamDecoderLengthStatus(* FLAC__StreamDecoderLengthCallback) (const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
+
+

Signature for the length callback.

+

A function pointer matching this signature may be passed to FLAC__stream_decoder_init*_stream(). The supplied function will be called when the decoder wants to know the total length of the stream in bytes.

+

Here is an example of a length callback for stdio streams:

FLAC__StreamDecoderLengthStatus length_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
struct stat filestats;
if(file == stdin)
else if(fstat(fileno(file), &filestats) != 0)
else {
*stream_length = (FLAC__uint64)filestats.st_size;
}
}
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + +
decoderThe decoder instance calling the callback.
stream_lengthA pointer to storage for the length of the stream in bytes.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamDecoderLengthStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderEofCallback

+ +
+
+ + + + +
typedef FLAC__bool(* FLAC__StreamDecoderEofCallback) (const FLAC__StreamDecoder *decoder, void *client_data)
+
+

Signature for the EOF callback.

+

A function pointer matching this signature may be passed to FLAC__stream_decoder_init*_stream(). The supplied function will be called when the decoder needs to know if the end of the stream has been reached.

+

Here is an example of a EOF callback for stdio streams: FLAC__bool eof_cb(const FLAC__StreamDecoder *decoder, void *client_data)

{
FILE *file = ((MyClientData*)client_data)->file;
return feof(file)? true : false;
}
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + +
decoderThe decoder instance calling the callback.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__booltrue if the currently at the end of the stream, else false.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderWriteCallback

+ +
+
+ + + + +
typedef FLAC__StreamDecoderWriteStatus(* FLAC__StreamDecoderWriteCallback) (const FLAC__StreamDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *const buffer[], void *client_data)
+
+

Signature for the write callback.

+

A function pointer matching this signature must be passed to one of the FLAC__stream_decoder_init_*() functions. The supplied function will be called when the decoder has decoded a single audio frame. The decoder will pass the frame metadata as well as an array of pointers (one for each channel) pointing to the decoded audio.

+
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + + +
decoderThe decoder instance calling the callback.
frameThe description of the decoded frame. See FLAC__Frame.
bufferAn array of pointers to decoded channels of data. Each pointer will point to an array of signed samples of length frame->header.blocksize. Channels will be ordered according to the FLAC specification; see the documentation for the frame header.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamDecoderWriteStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderMetadataCallback

+ +
+
+ + + + +
typedef void(* FLAC__StreamDecoderMetadataCallback) (const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data)
+
+

Signature for the metadata callback.

+

A function pointer matching this signature must be passed to one of the FLAC__stream_decoder_init_*() functions. The supplied function will be called when the decoder has decoded a metadata block. In a valid FLAC file there will always be one STREAMINFO block, followed by zero or more other metadata blocks. These will be supplied by the decoder in the same order as they appear in the stream and always before the first audio frame (i.e. write callback). The metadata block that is passed in must not be modified, and it doesn't live beyond the callback, so you should make a copy of it with FLAC__metadata_object_clone() if you will need it elsewhere. Since metadata blocks can potentially be large, by default the decoder only calls the metadata callback for the STREAMINFO block; you can instruct the decoder to pass or filter other blocks with FLAC__stream_decoder_set_metadata_*() calls.

+
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + +
decoderThe decoder instance calling the callback.
metadataThe decoded metadata block.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+ +
+
+ +

◆ FLAC__StreamDecoderErrorCallback

+ +
+
+ + + + +
typedef void(* FLAC__StreamDecoderErrorCallback) (const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data)
+
+

Signature for the error callback.

+

A function pointer matching this signature must be passed to one of the FLAC__stream_decoder_init_*() functions. The supplied function will be called whenever an error occurs during decoding.

+
Note
In general, FLAC__StreamDecoder functions which change the state should not be called on the decoder while in the callback.
+
Parameters
+ + + + +
decoderThe decoder instance calling the callback.
statusThe error encountered by the decoder.
client_dataThe callee's client data set through FLAC__stream_decoder_init_*().
+
+
+ +
+
+

Enumeration Type Documentation

+ +

◆ FLAC__StreamDecoderState

+ +
+
+ + + + +
enum FLAC__StreamDecoderState
+
+

State values for a FLAC__StreamDecoder

+

The decoder's state can be obtained by calling FLAC__stream_decoder_get_state().

+ + + + + + + + + + + +
Enumerator
FLAC__STREAM_DECODER_SEARCH_FOR_METADATA 

The decoder is ready to search for metadata.

+
FLAC__STREAM_DECODER_READ_METADATA 

The decoder is ready to or is in the process of reading metadata.

+
FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC 

The decoder is ready to or is in the process of searching for the frame sync code.

+
FLAC__STREAM_DECODER_READ_FRAME 

The decoder is ready to or is in the process of reading a frame.

+
FLAC__STREAM_DECODER_END_OF_STREAM 

The decoder has reached the end of the stream.

+
FLAC__STREAM_DECODER_OGG_ERROR 

An error occurred in the underlying Ogg layer.

+
FLAC__STREAM_DECODER_SEEK_ERROR 

An error occurred while seeking. The decoder must be flushed with FLAC__stream_decoder_flush() or reset with FLAC__stream_decoder_reset() before decoding can continue.

+
FLAC__STREAM_DECODER_ABORTED 

The decoder was aborted by the read or write callback.

+
FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR 

An error occurred allocating memory. The decoder is in an invalid state and can no longer be used.

+
FLAC__STREAM_DECODER_UNINITIALIZED 

The decoder is in the uninitialized state; one of the FLAC__stream_decoder_init_*() functions must be called before samples can be processed.

+
+ +
+
+ +

◆ FLAC__StreamDecoderInitStatus

+ +
+
+

Possible return values for the FLAC__stream_decoder_init_*() functions.

+ + + + + + + +
Enumerator
FLAC__STREAM_DECODER_INIT_STATUS_OK 

Initialization was successful.

+
FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER 

The library was not compiled with support for the given container format.

+
FLAC__STREAM_DECODER_INIT_STATUS_INVALID_CALLBACKS 

A required callback was not supplied.

+
FLAC__STREAM_DECODER_INIT_STATUS_MEMORY_ALLOCATION_ERROR 

An error occurred allocating memory.

+
FLAC__STREAM_DECODER_INIT_STATUS_ERROR_OPENING_FILE 

fopen() failed in FLAC__stream_decoder_init_file() or FLAC__stream_decoder_init_ogg_file().

+
FLAC__STREAM_DECODER_INIT_STATUS_ALREADY_INITIALIZED 

FLAC__stream_decoder_init_*() was called when the decoder was already initialized, usually because FLAC__stream_decoder_finish() was not called.

+
+ +
+
+ +

◆ FLAC__StreamDecoderReadStatus

+ +
+
+

Return values for the FLAC__StreamDecoder read callback.

+ + + + +
Enumerator
FLAC__STREAM_DECODER_READ_STATUS_CONTINUE 

The read was OK and decoding can continue.

+
FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM 

The read was attempted while at the end of the stream. Note that the client must only return this value when the read callback was called when already at the end of the stream. Otherwise, if the read itself moves to the end of the stream, the client should still return the data and FLAC__STREAM_DECODER_READ_STATUS_CONTINUE, and then on the next read callback it should return FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM with a byte count of 0.

+
FLAC__STREAM_DECODER_READ_STATUS_ABORT 

An unrecoverable error occurred. The decoder will return from the process call.

+
+ +
+
+ +

◆ FLAC__StreamDecoderSeekStatus

+ +
+
+

Return values for the FLAC__StreamDecoder seek callback.

+ + + + +
Enumerator
FLAC__STREAM_DECODER_SEEK_STATUS_OK 

The seek was OK and decoding can continue.

+
FLAC__STREAM_DECODER_SEEK_STATUS_ERROR 

An unrecoverable error occurred. The decoder will return from the process call.

+
FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED 

Client does not support seeking.

+
+ +
+
+ +

◆ FLAC__StreamDecoderTellStatus

+ +
+
+

Return values for the FLAC__StreamDecoder tell callback.

+ + + + +
Enumerator
FLAC__STREAM_DECODER_TELL_STATUS_OK 

The tell was OK and decoding can continue.

+
FLAC__STREAM_DECODER_TELL_STATUS_ERROR 

An unrecoverable error occurred. The decoder will return from the process call.

+
FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED 

Client does not support telling the position.

+
+ +
+
+ +

◆ FLAC__StreamDecoderLengthStatus

+ +
+
+

Return values for the FLAC__StreamDecoder length callback.

+ + + + +
Enumerator
FLAC__STREAM_DECODER_LENGTH_STATUS_OK 

The length call was OK and decoding can continue.

+
FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR 

An unrecoverable error occurred. The decoder will return from the process call.

+
FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED 

Client does not support reporting the length.

+
+ +
+
+ +

◆ FLAC__StreamDecoderWriteStatus

+ +
+
+

Return values for the FLAC__StreamDecoder write callback.

+ + + +
Enumerator
FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE 

The write was OK and decoding can continue.

+
FLAC__STREAM_DECODER_WRITE_STATUS_ABORT 

An unrecoverable error occurred. The decoder will return from the process call.

+
+ +
+
+ +

◆ FLAC__StreamDecoderErrorStatus

+ +
+
+

Possible values passed back to the FLAC__StreamDecoder error callback. FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC is the generic catch- all. The rest could be caused by bad sync (false synchronization on data that is not the start of a frame) or corrupted data. The error itself is the decoder's best guess at what happened assuming a correct sync. For example FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER could be caused by a correct sync on the start of a frame, but some data in the frame header was corrupted. Or it could be the result of syncing on a point the stream that looked like the starting of a frame but was not. FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM could be because the decoder encountered a valid frame made by a future version of the encoder which it cannot parse, or because of a false sync making it appear as though an encountered frame was generated by a future encoder.

+ + + + + +
Enumerator
FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC 

An error in the stream caused the decoder to lose synchronization.

+
FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER 

The decoder encountered a corrupted frame header.

+
FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH 

The frame's data did not match the CRC in the footer.

+
FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM 

The decoder encountered reserved fields in use in the stream.

+
+ +
+
+

Function Documentation

+ +

◆ FLAC__stream_decoder_new()

+ +
+
+ + + + + + + + +
FLAC__StreamDecoder* FLAC__stream_decoder_new (void )
+
+

Create a new stream decoder instance. The instance is created with default settings; see the individual FLAC__stream_decoder_set_*() functions for each setting's default.

+
Return values
+ + +
FLAC__StreamDecoder*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_delete()

+ +
+
+ + + + + + + + +
void FLAC__stream_decoder_delete (FLAC__StreamDecoderdecoder)
+
+

Free a decoder instance. Deletes the object pointed to by decoder.

+
Parameters
+ + +
decoderA pointer to an existing decoder.
+
+
+
Assertions:
decoder != NULL
+ +
+
+ +

◆ FLAC__stream_decoder_set_ogg_serial_number()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_ogg_serial_number (FLAC__StreamDecoderdecoder,
long serial_number 
)
+
+

Set the serial number for the FLAC stream within the Ogg container. The default behavior is to use the serial number of the first Ogg page. Setting a serial number here will explicitly specify which stream is to be decoded.

+
Note
This does not need to be set for native FLAC decoding.
+
Default Value:
use serial number of first page
+
Parameters
+ + + +
decoderA decoder instance to set.
serial_numberSee above.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_md5_checking()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_md5_checking (FLAC__StreamDecoderdecoder,
FLAC__bool value 
)
+
+

Set the "MD5 signature checking" flag. If true, the decoder will compute the MD5 signature of the unencoded audio data while decoding and compare it to the signature from the STREAMINFO block, if it exists, during FLAC__stream_decoder_finish().

+

MD5 signature checking will be turned off (until the next FLAC__stream_decoder_reset()) if there is no signature in the STREAMINFO block or when a seek is attempted.

+

Clients that do not use the MD5 check should leave this off to speed up decoding.

+
Default Value:
false
+
Parameters
+ + + +
decoderA decoder instance to set.
valueFlag value (see above).
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_respond()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_respond (FLAC__StreamDecoderdecoder,
FLAC__MetadataType type 
)
+
+

Direct the decoder to pass on all metadata blocks of type type.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + + +
decoderA decoder instance to set.
typeSee above.
+
+
+
Assertions:
decoder != NULL
type is valid
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_respond_application()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_respond_application (FLAC__StreamDecoderdecoder,
const FLAC__byte id[4] 
)
+
+

Direct the decoder to pass on all APPLICATION metadata blocks of the given id.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + + +
decoderA decoder instance to set.
idSee above.
+
+
+
Assertions:
decoder != NULL
id != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_respond_all()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_respond_all (FLAC__StreamDecoderdecoder)
+
+

Direct the decoder to pass on all metadata blocks of any type.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + +
decoderA decoder instance to set.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_ignore()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_ignore (FLAC__StreamDecoderdecoder,
FLAC__MetadataType type 
)
+
+

Direct the decoder to filter out all metadata blocks of type type.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + + +
decoderA decoder instance to set.
typeSee above.
+
+
+
Assertions:
decoder != NULL
type is valid
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_ignore_application()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_ignore_application (FLAC__StreamDecoderdecoder,
const FLAC__byte id[4] 
)
+
+

Direct the decoder to filter out all APPLICATION metadata blocks of the given id.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + + +
decoderA decoder instance to set.
idSee above.
+
+
+
Assertions:
decoder != NULL
id != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_set_metadata_ignore_all()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_set_metadata_ignore_all (FLAC__StreamDecoderdecoder)
+
+

Direct the decoder to filter out all metadata blocks of any type.

+
Default Value:
By default, only the STREAMINFO block is returned via the metadata callback.
+
Parameters
+ + +
decoderA decoder instance to set.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the decoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_state()

+ +
+
+ + + + + + + + +
FLAC__StreamDecoderState FLAC__stream_decoder_get_state (const FLAC__StreamDecoderdecoder)
+
+

Get the current decoder state.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderStateThe current decoder state.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_resolved_state_string()

+ +
+
+ + + + + + + + +
const char* FLAC__stream_decoder_get_resolved_state_string (const FLAC__StreamDecoderdecoder)
+
+

Get the current decoder state as a C string.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
constchar * The decoder state as a C string. Do not modify the contents.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_md5_checking()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_get_md5_checking (const FLAC__StreamDecoderdecoder)
+
+

Get the "MD5 signature checking" flag. This is the value of the setting, not whether or not the decoder is currently checking the MD5 (remember, it can be turned off automatically by a seek). When the decoder is reset the flag will be restored to the value returned by this function.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_total_samples()

+ +
+
+ + + + + + + + +
FLAC__uint64 FLAC__stream_decoder_get_total_samples (const FLAC__StreamDecoderdecoder)
+
+

Get the total number of samples in the stream being decoded. Will only be valid after decoding has started and will contain the value from the STREAMINFO block. A value of 0 means "unknown".

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
uint32_tSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_channels()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_decoder_get_channels (const FLAC__StreamDecoderdecoder)
+
+

Get the current number of channels in the stream being decoded. Will only be valid after decoding has started and will contain the value from the most recently decoded frame header.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
uint32_tSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_channel_assignment()

+ +
+
+ + + + + + + + +
FLAC__ChannelAssignment FLAC__stream_decoder_get_channel_assignment (const FLAC__StreamDecoderdecoder)
+
+

Get the current channel assignment in the stream being decoded. Will only be valid after decoding has started and will contain the value from the most recently decoded frame header.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__ChannelAssignmentSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_bits_per_sample()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_decoder_get_bits_per_sample (const FLAC__StreamDecoderdecoder)
+
+

Get the current sample resolution in the stream being decoded. Will only be valid after decoding has started and will contain the value from the most recently decoded frame header.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
uint32_tSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_sample_rate()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_decoder_get_sample_rate (const FLAC__StreamDecoderdecoder)
+
+

Get the current sample rate in Hz of the stream being decoded. Will only be valid after decoding has started and will contain the value from the most recently decoded frame header.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
uint32_tSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_blocksize()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_decoder_get_blocksize (const FLAC__StreamDecoderdecoder)
+
+

Get the current blocksize of the stream being decoded. Will only be valid after decoding has started and will contain the value from the most recently decoded frame header.

+
Parameters
+ + +
decoderA decoder instance to query.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
uint32_tSee above.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_get_decode_position()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_get_decode_position (const FLAC__StreamDecoderdecoder,
FLAC__uint64 * position 
)
+
+

Returns the decoder's current read position within the stream. The position is the byte offset from the start of the stream. Bytes before this position have been fully decoded. Note that there may still be undecoded bytes in the decoder's read FIFO. The returned position is correct even after a seek.

+
Warning
This function currently only works for native FLAC, not Ogg FLAC streams.
+
Parameters
+ + + +
decoderA decoder instance to query.
positionAddress at which to return the desired position.
+
+
+
Assertions:
decoder != NULL
position != NULL
+
Return values
+ + +
FLAC__booltrue if successful, false if the stream is not native FLAC, or there was an error from the 'tell' callback or it returned FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_stream()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_stream (FLAC__StreamDecoderdecoder,
FLAC__StreamDecoderReadCallback read_callback,
FLAC__StreamDecoderSeekCallback seek_callback,
FLAC__StreamDecoderTellCallback tell_callback,
FLAC__StreamDecoderLengthCallback length_callback,
FLAC__StreamDecoderEofCallback eof_callback,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode native FLAC streams.

+

This flavor of initialization sets up the decoder to decode from a native FLAC stream. I/O is performed via callbacks to the client. For decoding from a plain file via filename or open FILE*, FLAC__stream_decoder_init_file() and FLAC__stream_decoder_init_FILE() provide a simpler interface.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Parameters
+ + + + + + + + + + + +
decoderAn uninitialized decoder instance.
read_callbackSee FLAC__StreamDecoderReadCallback. This pointer must not be NULL.
seek_callbackSee FLAC__StreamDecoderSeekCallback. This pointer may be NULL if seeking is not supported. If seek_callback is not NULL then a tell_callback, length_callback, and eof_callback must also be supplied. Alternatively, a dummy seek callback that just returns FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
tell_callbackSee FLAC__StreamDecoderTellCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy tell callback that just returns FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
length_callbackSee FLAC__StreamDecoderLengthCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a length_callback must also be supplied. Alternatively, a dummy length callback that just returns FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
eof_callbackSee FLAC__StreamDecoderEofCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a eof_callback must also be supplied. Alternatively, a dummy length callback that just returns false may also be supplied, all though this is slightly less efficient for the decoder.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_ogg_stream()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_stream (FLAC__StreamDecoderdecoder,
FLAC__StreamDecoderReadCallback read_callback,
FLAC__StreamDecoderSeekCallback seek_callback,
FLAC__StreamDecoderTellCallback tell_callback,
FLAC__StreamDecoderLengthCallback length_callback,
FLAC__StreamDecoderEofCallback eof_callback,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode Ogg FLAC streams.

+

This flavor of initialization sets up the decoder to decode from a FLAC stream in an Ogg container. I/O is performed via callbacks to the client. For decoding from a plain file via filename or open FILE*, FLAC__stream_decoder_init_ogg_file() and FLAC__stream_decoder_init_ogg_FILE() provide a simpler interface.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Note
Support for Ogg FLAC in the library is optional. If this library has been built without support for Ogg FLAC, this function will return FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER.
+
Parameters
+ + + + + + + + + + + +
decoderAn uninitialized decoder instance.
read_callbackSee FLAC__StreamDecoderReadCallback. This pointer must not be NULL.
seek_callbackSee FLAC__StreamDecoderSeekCallback. This pointer may be NULL if seeking is not supported. If seek_callback is not NULL then a tell_callback, length_callback, and eof_callback must also be supplied. Alternatively, a dummy seek callback that just returns FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
tell_callbackSee FLAC__StreamDecoderTellCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy tell callback that just returns FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
length_callbackSee FLAC__StreamDecoderLengthCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a length_callback must also be supplied. Alternatively, a dummy length callback that just returns FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the decoder.
eof_callbackSee FLAC__StreamDecoderEofCallback. This pointer may be NULL if not supported by the client. If seek_callback is not NULL then a eof_callback must also be supplied. Alternatively, a dummy length callback that just returns false may also be supplied, all though this is slightly less efficient for the decoder.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_FILE()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_FILE (FLAC__StreamDecoderdecoder,
FILE * file,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode native FLAC files.

+

This flavor of initialization sets up the decoder to decode from a plain native FLAC file. For non-stdio streams, you must use FLAC__stream_decoder_init_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Parameters
+ + + + + + + +
decoderAn uninitialized decoder instance.
fileAn open FLAC file. The file should have been opened with mode "rb" and rewound. The file becomes owned by the decoder and should not be manipulated by the client while decoding. Unless file is stdin, it will be closed when FLAC__stream_decoder_finish() is called. Note however that seeking will not work when decoding from stdin since it is not seekable.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
file != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_ogg_FILE()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_FILE (FLAC__StreamDecoderdecoder,
FILE * file,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode Ogg FLAC files.

+

This flavor of initialization sets up the decoder to decode from a plain Ogg FLAC file. For non-stdio streams, you must use FLAC__stream_decoder_init_ogg_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Note
Support for Ogg FLAC in the library is optional. If this library has been built without support for Ogg FLAC, this function will return FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER.
+
Parameters
+ + + + + + + +
decoderAn uninitialized decoder instance.
fileAn open FLAC file. The file should have been opened with mode "rb" and rewound. The file becomes owned by the decoder and should not be manipulated by the client while decoding. Unless file is stdin, it will be closed when FLAC__stream_decoder_finish() is called. Note however that seeking will not work when decoding from stdin since it is not seekable.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
file != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_file()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_file (FLAC__StreamDecoderdecoder,
const char * filename,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode native FLAC files.

+

This flavor of initialization sets up the decoder to decode from a plain native FLAC file. If POSIX fopen() semantics are not sufficient, (for example, with Unicode filenames on Windows), you must use FLAC__stream_decoder_init_FILE(), or FLAC__stream_decoder_init_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Parameters
+ + + + + + + +
decoderAn uninitialized decoder instance.
filenameThe name of the file to decode from. The file will be opened with fopen(). Use NULL to decode from stdin. Note that stdin is not seekable.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_init_ogg_file()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamDecoderInitStatus FLAC__stream_decoder_init_ogg_file (FLAC__StreamDecoderdecoder,
const char * filename,
FLAC__StreamDecoderWriteCallback write_callback,
FLAC__StreamDecoderMetadataCallback metadata_callback,
FLAC__StreamDecoderErrorCallback error_callback,
void * client_data 
)
+
+

Initialize the decoder instance to decode Ogg FLAC files.

+

This flavor of initialization sets up the decoder to decode from a plain Ogg FLAC file. If POSIX fopen() semantics are not sufficient, (for example, with Unicode filenames on Windows), you must use FLAC__stream_decoder_init_ogg_FILE(), or FLAC__stream_decoder_init_ogg_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_decoder_new() and FLAC__stream_decoder_set_*() but before any of the FLAC__stream_decoder_process_*() functions. Will set and return the decoder state, which will be FLAC__STREAM_DECODER_SEARCH_FOR_METADATA if initialization succeeded.

+
Note
Support for Ogg FLAC in the library is optional. If this library has been built without support for Ogg FLAC, this function will return FLAC__STREAM_DECODER_INIT_STATUS_UNSUPPORTED_CONTAINER.
+
Parameters
+ + + + + + + +
decoderAn uninitialized decoder instance.
filenameThe name of the file to decode from. The file will be opened with fopen(). Use NULL to decode from stdin. Note that stdin is not seekable.
write_callbackSee FLAC__StreamDecoderWriteCallback. This pointer must not be NULL.
metadata_callbackSee FLAC__StreamDecoderMetadataCallback. This pointer may be NULL if the callback is not desired.
error_callbackSee FLAC__StreamDecoderErrorCallback. This pointer must not be NULL.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderInitStatusFLAC__STREAM_DECODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamDecoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_finish()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_finish (FLAC__StreamDecoderdecoder)
+
+

Finish the decoding process. Flushes the decoding buffer, releases resources, resets the decoder settings to their defaults, and returns the decoder state to FLAC__STREAM_DECODER_UNINITIALIZED.

+

In the event of a prematurely-terminated decode, it is not strictly necessary to call this immediately before FLAC__stream_decoder_delete() but it is good practice to match every FLAC__stream_decoder_init_*() with a FLAC__stream_decoder_finish().

+
Parameters
+ + +
decoderAn uninitialized decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if MD5 checking is on AND a STREAMINFO block was available AND the MD5 signature in the STREAMINFO block was non-zero AND the signature does not match the one computed by the decoder; else true.
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_flush()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_flush (FLAC__StreamDecoderdecoder)
+
+

Flush the stream input. The decoder's input buffer will be cleared and the state set to FLAC__STREAM_DECODER_SEARCH_FOR_FRAME_SYNC. This will also turn off MD5 checking.

+
Parameters
+ + +
decoderA decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false if a memory allocation error occurs (in which case the state will be set to FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR).
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_reset()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_reset (FLAC__StreamDecoderdecoder)
+
+

Reset the decoding process. The decoder's input buffer will be cleared and the state set to FLAC__STREAM_DECODER_SEARCH_FOR_METADATA. This is similar to FLAC__stream_decoder_finish() except that the settings are preserved; there is no need to call FLAC__stream_decoder_init_*() before decoding again. MD5 checking will be restored to its original setting.

+

If the decoder is seekable, or was initialized with FLAC__stream_decoder_init*_FILE() or FLAC__stream_decoder_init*_file(), the decoder will also attempt to seek to the beginning of the file. If this rewind fails, this function will return false. It follows that FLAC__stream_decoder_reset() cannot be used when decoding from stdin.

+

If the decoder was initialized with FLAC__stream_encoder_init*_stream() and is not seekable (i.e. no seek callback was provided or the seek callback returns FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED), it is the duty of the client to start feeding data from the beginning of the stream on the next FLAC__stream_decoder_process_*() call.

+
Parameters
+ + +
decoderA decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false if a memory allocation occurs (in which case the state will be set to FLAC__STREAM_DECODER_MEMORY_ALLOCATION_ERROR) or a seek error occurs (the state will be unchanged).
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_process_single()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_process_single (FLAC__StreamDecoderdecoder)
+
+

Decode one metadata block or audio frame. This version instructs the decoder to decode a either a single metadata block or a single frame and stop, unless the callbacks return a fatal error or the read callback returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM.

+

As the decoder needs more input it will call the read callback. Depending on what was decoded, the metadata or write callback will be called with the decoded metadata block or audio frame.

+

Unless there is a fatal read error or end of stream, this function will return once one whole frame is decoded. In other words, if the stream is not synchronized or points to a corrupt frame header, the decoder will continue to try and resync until it gets to a valid frame, then decode one frame, then return. If the decoder points to a frame whose frame CRC in the frame footer does not match the computed frame CRC, this function will issue a FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH error to the error callback, and return, having decoded one complete, although corrupt, frame. (Such corrupted frames are sent as silence of the correct length to the write callback.)

+
Parameters
+ + +
decoderAn initialized decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if any fatal read, write, or memory allocation error occurred (meaning decoding must stop), else true; for more information about the decoder, check the decoder state with FLAC__stream_decoder_get_state().
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_process_until_end_of_metadata()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_process_until_end_of_metadata (FLAC__StreamDecoderdecoder)
+
+

Decode until the end of the metadata. This version instructs the decoder to decode from the current position and continue until all the metadata has been read, or until the callbacks return a fatal error or the read callback returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM.

+

As the decoder needs more input it will call the read callback. As each metadata block is decoded, the metadata callback will be called with the decoded metadata.

+
Parameters
+ + +
decoderAn initialized decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if any fatal read, write, or memory allocation error occurred (meaning decoding must stop), else true; for more information about the decoder, check the decoder state with FLAC__stream_decoder_get_state().
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_process_until_end_of_stream()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_process_until_end_of_stream (FLAC__StreamDecoderdecoder)
+
+

Decode until the end of the stream. This version instructs the decoder to decode from the current position and continue until the end of stream (the read callback returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM), or until the callbacks return a fatal error.

+

As the decoder needs more input it will call the read callback. As each metadata block and frame is decoded, the metadata or write callback will be called with the decoded metadata or frame.

+
Parameters
+ + +
decoderAn initialized decoder instance.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if any fatal read, write, or memory allocation error occurred (meaning decoding must stop), else true; for more information about the decoder, check the decoder state with FLAC__stream_decoder_get_state().
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_skip_single_frame()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_decoder_skip_single_frame (FLAC__StreamDecoderdecoder)
+
+

Skip one audio frame. This version instructs the decoder to 'skip' a single frame and stop, unless the callbacks return a fatal error or the read callback returns FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM.

+

The decoding flow is the same as what occurs when FLAC__stream_decoder_process_single() is called to process an audio frame, except that this function does not decode the parsed data into PCM or call the write callback. The integrity of the frame is still checked the same way as in the other process functions.

+

This function will return once one whole frame is skipped, in the same way that FLAC__stream_decoder_process_single() will return once one whole frame is decoded.

+

This function can be used in more quickly determining FLAC frame boundaries when decoding of the actual data is not needed, for example when an application is separating a FLAC stream into frames for editing or storing in a container. To do this, the application can use FLAC__stream_decoder_skip_single_frame() to quickly advance to the next frame, then use FLAC__stream_decoder_get_decode_position() to find the new frame boundary.

+

This function should only be called when the stream has advanced past all the metadata, otherwise it will return false.

+
Parameters
+ + +
decoderAn initialized decoder instance not in a metadata state.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__boolfalse if any fatal read, write, or memory allocation error occurred (meaning decoding must stop), or if the decoder is in the FLAC__STREAM_DECODER_SEARCH_FOR_METADATA or FLAC__STREAM_DECODER_READ_METADATA state, else true; for more information about the decoder, check the decoder state with FLAC__stream_decoder_get_state().
+
+
+ +
+
+ +

◆ FLAC__stream_decoder_seek_absolute()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_decoder_seek_absolute (FLAC__StreamDecoderdecoder,
FLAC__uint64 sample 
)
+
+

Flush the input and seek to an absolute sample. Decoding will resume at the given sample. Note that because of this, the next write callback may contain a partial block. The client must support seeking the input or this function will fail and return false. Furthermore, if the decoder state is FLAC__STREAM_DECODER_SEEK_ERROR, then the decoder must be flushed with FLAC__stream_decoder_flush() or reset with FLAC__stream_decoder_reset() before decoding can continue.

+
Parameters
+ + + +
decoderA decoder instance.
sampleThe target sample number to seek to.
+
+
+
Assertions:
decoder != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false.
+
+
+ +
+
+

Variable Documentation

+ +

◆ FLAC__StreamDecoderStateString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderStateString[]
+
+

Maps a FLAC__StreamDecoderState to a C string.

+

Using a FLAC__StreamDecoderState as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderInitStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderInitStatusString[]
+
+

Maps a FLAC__StreamDecoderInitStatus to a C string.

+

Using a FLAC__StreamDecoderInitStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderReadStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderReadStatusString[]
+
+

Maps a FLAC__StreamDecoderReadStatus to a C string.

+

Using a FLAC__StreamDecoderReadStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderSeekStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderSeekStatusString[]
+
+

Maps a FLAC__StreamDecoderSeekStatus to a C string.

+

Using a FLAC__StreamDecoderSeekStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderTellStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderTellStatusString[]
+
+

Maps a FLAC__StreamDecoderTellStatus to a C string.

+

Using a FLAC__StreamDecoderTellStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderLengthStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderLengthStatusString[]
+
+

Maps a FLAC__StreamDecoderLengthStatus to a C string.

+

Using a FLAC__StreamDecoderLengthStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderWriteStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderWriteStatusString[]
+
+

Maps a FLAC__StreamDecoderWriteStatus to a C string.

+

Using a FLAC__StreamDecoderWriteStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamDecoderErrorStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamDecoderErrorStatusString[]
+
+

Maps a FLAC__StreamDecoderErrorStatus to a C string.

+

Using a FLAC__StreamDecoderErrorStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__encoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__encoder.html new file mode 100644 index 000000000..ed15dd7eb --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flac__stream__encoder.html @@ -0,0 +1,3089 @@ + + + + + + + +FLAC: FLAC/stream_encoder.h: stream encoder interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC/stream_encoder.h: stream encoder interface
+
+
+ + + + +

+Classes

struct  FLAC__StreamEncoder
 
+ + + + + + + + + + + + + +

+Typedefs

typedef FLAC__StreamEncoderReadStatus(* FLAC__StreamEncoderReadCallback) (const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
 
typedef FLAC__StreamEncoderWriteStatus(* FLAC__StreamEncoderWriteCallback) (const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data)
 
typedef FLAC__StreamEncoderSeekStatus(* FLAC__StreamEncoderSeekCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
 
typedef FLAC__StreamEncoderTellStatus(* FLAC__StreamEncoderTellCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
 
typedef void(* FLAC__StreamEncoderMetadataCallback) (const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
 
typedef void(* FLAC__StreamEncoderProgressCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data)
 
+ + + + + + + + + + + + + +

+Enumerations

enum  FLAC__StreamEncoderState {
+  FLAC__STREAM_ENCODER_OK = 0, +FLAC__STREAM_ENCODER_UNINITIALIZED, +FLAC__STREAM_ENCODER_OGG_ERROR, +FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR, +
+  FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA, +FLAC__STREAM_ENCODER_CLIENT_ERROR, +FLAC__STREAM_ENCODER_IO_ERROR, +FLAC__STREAM_ENCODER_FRAMING_ERROR, +
+  FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR +
+ }
 
enum  FLAC__StreamEncoderInitStatus {
+  FLAC__STREAM_ENCODER_INIT_STATUS_OK = 0, +FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR, +FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER, +FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS, +
+  FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS, +FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE, +FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE, +FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE, +
+  FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER, +FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION, +FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER, +FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE, +
+  FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA, +FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED +
+ }
 
enum  FLAC__StreamEncoderReadStatus { FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE, +FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM, +FLAC__STREAM_ENCODER_READ_STATUS_ABORT, +FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED + }
 
enum  FLAC__StreamEncoderWriteStatus { FLAC__STREAM_ENCODER_WRITE_STATUS_OK = 0, +FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR + }
 
enum  FLAC__StreamEncoderSeekStatus { FLAC__STREAM_ENCODER_SEEK_STATUS_OK, +FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR, +FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED + }
 
enum  FLAC__StreamEncoderTellStatus { FLAC__STREAM_ENCODER_TELL_STATUS_OK, +FLAC__STREAM_ENCODER_TELL_STATUS_ERROR, +FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED + }
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+Functions

FLAC__StreamEncoderFLAC__stream_encoder_new (void)
 
void FLAC__stream_encoder_delete (FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_set_ogg_serial_number (FLAC__StreamEncoder *encoder, long serial_number)
 
FLAC__bool FLAC__stream_encoder_set_verify (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_streamable_subset (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_channels (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_bits_per_sample (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_sample_rate (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_compression_level (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_blocksize (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_apodization (FLAC__StreamEncoder *encoder, const char *specification)
 
FLAC__bool FLAC__stream_encoder_set_max_lpc_order (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_do_escape_coding (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search (FLAC__StreamEncoder *encoder, FLAC__bool value)
 
FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist (FLAC__StreamEncoder *encoder, uint32_t value)
 
FLAC__bool FLAC__stream_encoder_set_total_samples_estimate (FLAC__StreamEncoder *encoder, FLAC__uint64 value)
 
FLAC__bool FLAC__stream_encoder_set_metadata (FLAC__StreamEncoder *encoder, FLAC__StreamMetadata **metadata, uint32_t num_blocks)
 
FLAC__StreamEncoderState FLAC__stream_encoder_get_state (const FLAC__StreamEncoder *encoder)
 
FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state (const FLAC__StreamEncoder *encoder)
 
const char * FLAC__stream_encoder_get_resolved_state_string (const FLAC__StreamEncoder *encoder)
 
void FLAC__stream_encoder_get_verify_decoder_error_stats (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)
 
FLAC__bool FLAC__stream_encoder_get_verify (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_streamable_subset (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_channels (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_bits_per_sample (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_sample_rate (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_blocksize (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_max_lpc_order (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_qlp_coeff_precision (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_do_escape_coding (const FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_min_residual_partition_order (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_max_residual_partition_order (const FLAC__StreamEncoder *encoder)
 
uint32_t FLAC__stream_encoder_get_rice_parameter_search_dist (const FLAC__StreamEncoder *encoder)
 
FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate (const FLAC__StreamEncoder *encoder)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_stream (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_stream (FLAC__StreamEncoder *encoder, FLAC__StreamEncoderReadCallback read_callback, FLAC__StreamEncoderWriteCallback write_callback, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderTellCallback tell_callback, FLAC__StreamEncoderMetadataCallback metadata_callback, void *client_data)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_FILE (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_FILE (FLAC__StreamEncoder *encoder, FILE *file, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_file (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
 
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_file (FLAC__StreamEncoder *encoder, const char *filename, FLAC__StreamEncoderProgressCallback progress_callback, void *client_data)
 
FLAC__bool FLAC__stream_encoder_finish (FLAC__StreamEncoder *encoder)
 
FLAC__bool FLAC__stream_encoder_process (FLAC__StreamEncoder *encoder, const FLAC__int32 *const buffer[], uint32_t samples)
 
FLAC__bool FLAC__stream_encoder_process_interleaved (FLAC__StreamEncoder *encoder, const FLAC__int32 buffer[], uint32_t samples)
 
+ + + + + + + + + + + + + +

+Variables

const char *const FLAC__StreamEncoderStateString []
 
const char *const FLAC__StreamEncoderInitStatusString []
 
const char *const FLAC__StreamEncoderReadStatusString []
 
const char *const FLAC__StreamEncoderWriteStatusString []
 
const char *const FLAC__StreamEncoderSeekStatusString []
 
const char *const FLAC__StreamEncoderTellStatusString []
 
+

Detailed Description

+

This module contains the functions which implement the stream encoder.

+

The stream encoder can encode to native FLAC, and optionally Ogg FLAC (check FLAC_API_SUPPORTS_OGG_FLAC) streams and files.

+

The basic usage of this encoder is as follows:

+

In more detail, the stream encoder functions similarly to the stream decoder , but has fewer callbacks and more options. Typically the client will create a new instance by calling FLAC__stream_encoder_new(), then set the necessary parameters with FLAC__stream_encoder_set_*(), and initialize it by calling one of the FLAC__stream_encoder_init_*() functions.

+

Unlike the decoders, the stream encoder has many options that can affect the speed and compression ratio. When setting these parameters you should have some basic knowledge of the format (see the user-level documentation or the formal description). The FLAC__stream_encoder_set_*() functions themselves do not validate the values as many are interdependent. The FLAC__stream_encoder_init_*() functions will do this, so make sure to pay attention to the state returned by FLAC__stream_encoder_init_*() to make sure that it is FLAC__STREAM_ENCODER_INIT_STATUS_OK. Any parameters that are not set before FLAC__stream_encoder_init_*() will take on the defaults from the constructor.

+

There are three initialization functions for native FLAC, one for setting up the encoder to encode FLAC data to the client via callbacks, and two for encoding directly to a file.

+

For encoding via callbacks, use FLAC__stream_encoder_init_stream(). You must also supply a write callback which will be called anytime there is raw encoded data to write. If the client can seek the output it is best to also supply seek and tell callbacks, as this allows the encoder to go back after encoding is finished to write back information that was collected while encoding, like seek point offsets, frame sizes, etc.

+

For encoding directly to a file, use FLAC__stream_encoder_init_FILE() or FLAC__stream_encoder_init_file(). Then you must only supply a filename or open FILE*; the encoder will handle all the callbacks internally. You may also supply a progress callback for periodic notification of the encoding progress.

+

There are three similarly-named init functions for encoding to Ogg FLAC streams. Check FLAC_API_SUPPORTS_OGG_FLAC to find out if the library has been built with Ogg support.

+

The call to FLAC__stream_encoder_init_*() currently will also immediately call the write callback several times, once with the fLaC signature, and once for each encoded metadata block. Note that for Ogg FLAC encoding you will usually get at least twice the number of callbacks than with native FLAC, one for the Ogg page header and one for the page body.

+

After initializing the instance, the client may feed audio data to the encoder in one of two ways:

+
    +
  • Channel separate, through FLAC__stream_encoder_process() - The client will pass an array of pointers to buffers, one for each channel, to the encoder, each of the same length. The samples need not be block-aligned, but each channel should have the same number of samples.
  • +
  • Channel interleaved, through FLAC__stream_encoder_process_interleaved() - The client will pass a single pointer to data that is channel-interleaved (i.e. channel0_sample0, channel1_sample0, ... , channelN_sample0, channel0_sample1, ...). Again, the samples need not be block-aligned but they must be sample-aligned, i.e. the first value should be channel0_sample0 and the last value channelN_sampleM.
  • +
+

Note that for either process call, each sample in the buffers should be a signed integer, right-justified to the resolution set by FLAC__stream_encoder_set_bits_per_sample(). For example, if the resolution is 16 bits per sample, the samples should all be in the range [-32768,32767].

+

When the client is finished encoding data, it calls FLAC__stream_encoder_finish(), which causes the encoder to encode any data still in its input pipe, and call the metadata callback with the final encoding statistics. Then the instance may be deleted with FLAC__stream_encoder_delete() or initialized again to encode another stream.

+

For programs that write their own metadata, but that do not know the actual metadata until after encoding, it is advantageous to instruct the encoder to write a PADDING block of the correct size, so that instead of rewriting the whole stream after encoding, the program can just overwrite the PADDING block. If only the maximum size of the metadata is known, the program can write a slightly larger padding block, then split it after encoding.

+

Make sure you understand how lengths are calculated. All FLAC metadata blocks have a 4 byte header which contains the type and length. This length does not include the 4 bytes of the header. See the format page for the specification of metadata blocks and their lengths.

+
Note
If you are writing the FLAC data to a file via callbacks, make sure it is open for update (e.g. mode "w+" for stdio streams). This is because after the first encoding pass, the encoder will try to seek back to the beginning of the stream, to the STREAMINFO block, to write some data there. (If using FLAC__stream_encoder_init*_file() or FLAC__stream_encoder_init*_FILE(), the file is managed internally.)
+
+The "set" functions may only be called when the encoder is in the state FLAC__STREAM_ENCODER_UNINITIALIZED, i.e. after FLAC__stream_encoder_new() or FLAC__stream_encoder_finish(), but before FLAC__stream_encoder_init_*(). If this is the case they will return true, otherwise false.
+
+FLAC__stream_encoder_finish() resets all settings to the constructor defaults.
+

Typedef Documentation

+ +

◆ FLAC__StreamEncoderReadCallback

+ +
+
+ + + + +
typedef FLAC__StreamEncoderReadStatus(* FLAC__StreamEncoderReadCallback) (const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
+
+

Signature for the read callback.

+

A function pointer matching this signature must be passed to FLAC__stream_encoder_init_ogg_stream() if seeking is supported. The supplied function will be called when the encoder needs to read back encoded data. This happens during the metadata callback, when the encoder has to read, modify, and rewrite the metadata (e.g. seekpoints) gathered while encoding. The address of the buffer to be filled is supplied, along with the number of bytes the buffer can hold. The callback may choose to supply less data and modify the byte count but must be careful not to overflow the buffer. The callback then returns a status code chosen from FLAC__StreamEncoderReadStatus.

+

Here is an example of a read callback for stdio streams:

FLAC__StreamEncoderReadStatus read_cb(const FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
if(*bytes > 0) {
*bytes = fread(buffer, sizeof(FLAC__byte), *bytes, file);
if(ferror(file))
else if(*bytes == 0)
else
}
else
}
Note
In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + + +
encoderThe encoder instance calling the callback.
bufferA pointer to a location for the callee to store data to be encoded.
bytesA pointer to the size of the buffer. On entry to the callback, it contains the maximum number of bytes that may be stored in buffer. The callee must set it to the actual number of bytes stored (0 in case of error or end-of-stream) before returning.
client_dataThe callee's client data set through FLAC__stream_encoder_set_client_data().
+
+
+
Return values
+ + +
FLAC__StreamEncoderReadStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamEncoderWriteCallback

+ +
+
+ + + + +
typedef FLAC__StreamEncoderWriteStatus(* FLAC__StreamEncoderWriteCallback) (const FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data)
+
+

Signature for the write callback.

+

A function pointer matching this signature must be passed to FLAC__stream_encoder_init*_stream(). The supplied function will be called by the encoder anytime there is raw encoded data ready to write. It may include metadata mixed with encoded audio frames and the data is not guaranteed to be aligned on frame or metadata block boundaries.

+

The only duty of the callback is to write out the bytes worth of data in buffer to the current position in the output stream. The arguments samples and current_frame are purely informational. If samples is greater than 0, then current_frame will hold the current frame number that is being written; otherwise it indicates that the write callback is being called to write metadata.

+
Note
Unlike when writing to native FLAC, when writing to Ogg FLAC the write callback will be called twice when writing each audio frame; once for the page header, and once for the page body. When writing the page header, the samples argument to the write callback will be 0.
+
+In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + + + + +
encoderThe encoder instance calling the callback.
bufferAn array of encoded data of length bytes.
bytesThe byte length of buffer.
samplesThe number of samples encoded by buffer. 0 has a special meaning; see above.
current_frameThe number of the current frame being encoded.
client_dataThe callee's client data set through FLAC__stream_encoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamEncoderWriteStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamEncoderSeekCallback

+ +
+
+ + + + +
typedef FLAC__StreamEncoderSeekStatus(* FLAC__StreamEncoderSeekCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
+
+

Signature for the seek callback.

+

A function pointer matching this signature may be passed to FLAC__stream_encoder_init*_stream(). The supplied function will be called when the encoder needs to seek the output stream. The encoder will pass the absolute byte offset to seek to, 0 meaning the beginning of the stream.

+

Here is an example of a seek callback for stdio streams:

FLAC__StreamEncoderSeekStatus seek_cb(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
if(file == stdin)
else if(fseeko(file, (off_t)absolute_byte_offset, SEEK_SET) < 0)
else
}
Note
In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + +
encoderThe encoder instance calling the callback.
absolute_byte_offsetThe offset from the beginning of the stream to seek to.
client_dataThe callee's client data set through FLAC__stream_encoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamEncoderSeekStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamEncoderTellCallback

+ +
+
+ + + + +
typedef FLAC__StreamEncoderTellStatus(* FLAC__StreamEncoderTellCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
+
+

Signature for the tell callback.

+

A function pointer matching this signature may be passed to FLAC__stream_encoder_init*_stream(). The supplied function will be called when the encoder needs to know the current position of the output stream.

+
Warning
The callback must return the true current byte offset of the output to which the encoder is writing. If you are buffering the output, make sure and take this into account. If you are writing directly to a FILE* from your write callback, ftell() is sufficient. If you are writing directly to a file descriptor from your write callback, you can use lseek(fd, SEEK_CUR, 0). The encoder may later seek back to these points to rewrite metadata after encoding.
+

Here is an example of a tell callback for stdio streams:

FLAC__StreamEncoderTellStatus tell_cb(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
{
FILE *file = ((MyClientData*)client_data)->file;
off_t pos;
if(file == stdin)
else if((pos = ftello(file)) < 0)
else {
*absolute_byte_offset = (FLAC__uint64)pos;
}
}
Note
In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + +
encoderThe encoder instance calling the callback.
absolute_byte_offsetThe address at which to store the current position of the output.
client_dataThe callee's client data set through FLAC__stream_encoder_init_*().
+
+
+
Return values
+ + +
FLAC__StreamEncoderTellStatusThe callee's return status.
+
+
+ +
+
+ +

◆ FLAC__StreamEncoderMetadataCallback

+ +
+
+ + + + +
typedef void(* FLAC__StreamEncoderMetadataCallback) (const FLAC__StreamEncoder *encoder, const FLAC__StreamMetadata *metadata, void *client_data)
+
+

Signature for the metadata callback.

+

A function pointer matching this signature may be passed to FLAC__stream_encoder_init*_stream(). The supplied function will be called once at the end of encoding with the populated STREAMINFO structure. This is so the client can seek back to the beginning of the file and write the STREAMINFO block with the correct statistics after encoding (like minimum/maximum frame size and total samples).

+
Note
In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + +
encoderThe encoder instance calling the callback.
metadataThe final populated STREAMINFO block.
client_dataThe callee's client data set through FLAC__stream_encoder_init_*().
+
+
+ +
+
+ +

◆ FLAC__StreamEncoderProgressCallback

+ +
+
+ + + + +
typedef void(* FLAC__StreamEncoderProgressCallback) (const FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data)
+
+

Signature for the progress callback.

+

A function pointer matching this signature may be passed to FLAC__stream_encoder_init*_file() or FLAC__stream_encoder_init*_FILE(). The supplied function will be called when the encoder has finished writing a frame. The total_frames_estimate argument to the callback will be based on the value from FLAC__stream_encoder_set_total_samples_estimate().

+
Note
In general, FLAC__StreamEncoder functions which change the state should not be called on the encoder while in the callback.
+
Parameters
+ + + + + + + +
encoderThe encoder instance calling the callback.
bytes_writtenBytes written so far.
samples_writtenSamples written so far.
frames_writtenFrames written so far.
total_frames_estimateThe estimate of the total number of frames to be written.
client_dataThe callee's client data set through FLAC__stream_encoder_init_*().
+
+
+ +
+
+

Enumeration Type Documentation

+ +

◆ FLAC__StreamEncoderState

+ +
+
+ + + + +
enum FLAC__StreamEncoderState
+
+

State values for a FLAC__StreamEncoder.

+

The encoder's state can be obtained by calling FLAC__stream_encoder_get_state().

+

If the encoder gets into any other state besides FLAC__STREAM_ENCODER_OK or FLAC__STREAM_ENCODER_UNINITIALIZED, it becomes invalid for encoding and must be deleted with FLAC__stream_encoder_delete().

+ + + + + + + + + + +
Enumerator
FLAC__STREAM_ENCODER_OK 

The encoder is in the normal OK state and samples can be processed.

+
FLAC__STREAM_ENCODER_UNINITIALIZED 

The encoder is in the uninitialized state; one of the FLAC__stream_encoder_init_*() functions must be called before samples can be processed.

+
FLAC__STREAM_ENCODER_OGG_ERROR 

An error occurred in the underlying Ogg layer.

+
FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR 

An error occurred in the underlying verify stream decoder; check FLAC__stream_encoder_get_verify_decoder_state().

+
FLAC__STREAM_ENCODER_VERIFY_MISMATCH_IN_AUDIO_DATA 

The verify decoder detected a mismatch between the original audio signal and the decoded audio signal.

+
FLAC__STREAM_ENCODER_CLIENT_ERROR 

One of the callbacks returned a fatal error.

+
FLAC__STREAM_ENCODER_IO_ERROR 

An I/O error occurred while opening/reading/writing a file. Check errno.

+
FLAC__STREAM_ENCODER_FRAMING_ERROR 

An error occurred while writing the stream; usually, the write_callback returned an error.

+
FLAC__STREAM_ENCODER_MEMORY_ALLOCATION_ERROR 

Memory allocation failed.

+
+ +
+
+ +

◆ FLAC__StreamEncoderInitStatus

+ +
+
+

Possible return values for the FLAC__stream_encoder_init_*() functions.

+ + + + + + + + + + + + + + + +
Enumerator
FLAC__STREAM_ENCODER_INIT_STATUS_OK 

Initialization was successful.

+
FLAC__STREAM_ENCODER_INIT_STATUS_ENCODER_ERROR 

General failure to set up encoder; call FLAC__stream_encoder_get_state() for cause.

+
FLAC__STREAM_ENCODER_INIT_STATUS_UNSUPPORTED_CONTAINER 

The library was not compiled with support for the given container format.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_CALLBACKS 

A required callback was not supplied.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_NUMBER_OF_CHANNELS 

The encoder has an invalid setting for number of channels.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BITS_PER_SAMPLE 

The encoder has an invalid setting for bits-per-sample. FLAC supports 4-32 bps but the reference encoder currently supports only up to 24 bps.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_SAMPLE_RATE 

The encoder has an invalid setting for the input sample rate.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_BLOCK_SIZE 

The encoder has an invalid setting for the block size.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_MAX_LPC_ORDER 

The encoder has an invalid setting for the maximum LPC order.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_QLP_COEFF_PRECISION 

The encoder has an invalid setting for the precision of the quantized linear predictor coefficients.

+
FLAC__STREAM_ENCODER_INIT_STATUS_BLOCK_SIZE_TOO_SMALL_FOR_LPC_ORDER 

The specified block size is less than the maximum LPC order.

+
FLAC__STREAM_ENCODER_INIT_STATUS_NOT_STREAMABLE 

The encoder is bound to the Subset but other settings violate it.

+
FLAC__STREAM_ENCODER_INIT_STATUS_INVALID_METADATA 

The metadata input to the encoder is invalid, in one of the following ways:

+
FLAC__STREAM_ENCODER_INIT_STATUS_ALREADY_INITIALIZED 

FLAC__stream_encoder_init_*() was called when the encoder was already initialized, usually because FLAC__stream_encoder_finish() was not called.

+
+ +
+
+ +

◆ FLAC__StreamEncoderReadStatus

+ +
+
+

Return values for the FLAC__StreamEncoder read callback.

+ + + + + +
Enumerator
FLAC__STREAM_ENCODER_READ_STATUS_CONTINUE 

The read was OK and decoding can continue.

+
FLAC__STREAM_ENCODER_READ_STATUS_END_OF_STREAM 

The read was attempted at the end of the stream.

+
FLAC__STREAM_ENCODER_READ_STATUS_ABORT 

An unrecoverable error occurred.

+
FLAC__STREAM_ENCODER_READ_STATUS_UNSUPPORTED 

Client does not support reading back from the output.

+
+ +
+
+ +

◆ FLAC__StreamEncoderWriteStatus

+ +
+
+

Return values for the FLAC__StreamEncoder write callback.

+ + + +
Enumerator
FLAC__STREAM_ENCODER_WRITE_STATUS_OK 

The write was OK and encoding can continue.

+
FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR 

An unrecoverable error occurred. The encoder will return from the process call.

+
+ +
+
+ +

◆ FLAC__StreamEncoderSeekStatus

+ +
+
+

Return values for the FLAC__StreamEncoder seek callback.

+ + + + +
Enumerator
FLAC__STREAM_ENCODER_SEEK_STATUS_OK 

The seek was OK and encoding can continue.

+
FLAC__STREAM_ENCODER_SEEK_STATUS_ERROR 

An unrecoverable error occurred.

+
FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED 

Client does not support seeking.

+
+ +
+
+ +

◆ FLAC__StreamEncoderTellStatus

+ +
+
+

Return values for the FLAC__StreamEncoder tell callback.

+ + + + +
Enumerator
FLAC__STREAM_ENCODER_TELL_STATUS_OK 

The tell was OK and encoding can continue.

+
FLAC__STREAM_ENCODER_TELL_STATUS_ERROR 

An unrecoverable error occurred.

+
FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED 

Client does not support seeking.

+
+ +
+
+

Function Documentation

+ +

◆ FLAC__stream_encoder_new()

+ +
+
+ + + + + + + + +
FLAC__StreamEncoder* FLAC__stream_encoder_new (void )
+
+

Create a new stream encoder instance. The instance is created with default settings; see the individual FLAC__stream_encoder_set_*() functions for each setting's default.

+
Return values
+ + +
FLAC__StreamEncoder*NULL if there was an error allocating memory, else the new instance.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_delete()

+ +
+
+ + + + + + + + +
void FLAC__stream_encoder_delete (FLAC__StreamEncoderencoder)
+
+

Free an encoder instance. Deletes the object pointed to by encoder.

+
Parameters
+ + +
encoderA pointer to an existing encoder.
+
+
+
Assertions:
encoder != NULL
+ +
+
+ +

◆ FLAC__stream_encoder_set_ogg_serial_number()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_ogg_serial_number (FLAC__StreamEncoderencoder,
long serial_number 
)
+
+

Set the serial number for the FLAC stream to use in the Ogg container.

+
Note
This does not need to be set for native FLAC encoding.
+
+It is recommended to set a serial number explicitly as the default of '0' may collide with other streams.
+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
serial_numberSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_verify()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_verify (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set the "verify" flag. If true, the encoder will verify it's own encoded output by feeding it through an internal decoder and comparing the original signal against the decoded signal. If a mismatch occurs, the process call will return false. Note that this will slow the encoding process by the extra time required for decoding and comparison.

+
Default Value:
false
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueFlag value (see above).
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_streamable_subset()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_streamable_subset (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set the Subset flag. If true, the encoder will comply with the Subset and will check the settings during FLAC__stream_encoder_init_*() to see if all settings comply. If false, the settings may take advantage of the full range that the format allows.

+

Make sure you know what it entails before setting this to false.

+
Default Value:
true
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueFlag value (see above).
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_channels()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_channels (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the number of channels to be encoded.

+
Default Value:
2
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_bits_per_sample()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_bits_per_sample (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the sample resolution of the input to be encoded.

+
Warning
Do not feed the encoder data that is wider than the value you set here or you will generate an invalid stream.
+
Default Value:
16
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_sample_rate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_sample_rate (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the sample rate (in Hz) of the input to be encoded.

+
Default Value:
44100
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_compression_level()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_compression_level (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the compression level

+

The compression level is roughly proportional to the amount of effort the encoder expends to compress the file. A higher level usually means more computation but higher compression. The default level is suitable for most applications.

+

Currently the levels range from 0 (fastest, least compression) to 8 (slowest, most compression). A value larger than 8 will be treated as 8.

+

This function automatically calls the following other set functions with appropriate values, so the client does not need to unless it specifically wants to override them:

+

The actual values set for each level are:

+ + + + + + + + + + + + + + + + + + + + +
level do mid-side stereo loose mid-side stereo apodization max lpc order qlp coeff precision qlp coeff prec search escape coding exhaustive model search min residual partition order max residual partition order rice parameter search dist
0 false false tukey(0.5)0 0 false false false 0 3 0
1 true true tukey(0.5)0 0 false false false 0 3 0
2 true false tukey(0.5)0 0 false false false 0 3 0
3 false false tukey(0.5)6 0 false false false 0 4 0
4 true true tukey(0.5)8 0 false false false 0 4 0
5 true false tukey(0.5)8 0 false false false 0 5 0
6 true false tukey(0.5);partial_tukey(2)8 0 false false false 0 6 0
7 true false tukey(0.5);partial_tukey(2)12 0 false false false 0 6 0
8 true false tukey(0.5);partial_tukey(2);punchout_tukey(3) 12 0 false false false 0 6 0
+
Default Value:
5
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_blocksize()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_blocksize (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the blocksize to use while encoding.

+

The number of samples to use per frame. Use 0 to let the encoder estimate a blocksize; this is usually best.

+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_do_mid_side_stereo()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_do_mid_side_stereo (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set to true to enable mid-side encoding on stereo input. The number of channels must be 2 for this to have any effect. Set to false to use only independent channel coding.

+
Default Value:
true
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueFlag value (see above).
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_loose_mid_side_stereo()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_loose_mid_side_stereo (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set to true to enable adaptive switching between mid-side and left-right encoding on stereo input. Set to false to use exhaustive searching. Setting this to true requires FLAC__stream_encoder_set_do_mid_side_stereo() to also be set to true in order to have any effect.

+
Default Value:
false
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueFlag value (see above).
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_apodization()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_apodization (FLAC__StreamEncoderencoder,
const char * specification 
)
+
+

Sets the apodization function(s) the encoder will use when windowing audio data for LPC analysis.

+

The specification is a plain ASCII string which specifies exactly which functions to use. There may be more than one (up to 32), separated by ';' characters. Some functions take one or more comma-separated arguments in parentheses.

+

The available functions are bartlett, bartlett_hann, blackman, blackman_harris_4term_92db, connes, flattop, gauss(STDDEV), hamming, hann, kaiser_bessel, nuttall, rectangle, triangle, tukey(P), partial_tukey(n[/ov[/P]]), punchout_tukey(n[/ov[/P]]), welch.

+

For gauss(STDDEV), STDDEV specifies the standard deviation (0<STDDEV<=0.5).

+

For tukey(P), P specifies the fraction of the window that is tapered (0<=P<=1). P=0 corresponds to rectangle and P=1 corresponds to hann.

+

Specifying partial_tukey or punchout_tukey works a little different. These do not specify a single apodization function, but a series of them with some overlap. partial_tukey specifies a series of small windows (all treated separately) while punchout_tukey specifies a series of windows that have a hole in them. In this way, the predictor is constructed with only a part of the block, which helps in case a block consists of dissimilar parts.

+

The three parameters that can be specified for the functions are n, ov and P. n is the number of functions to add, ov is the overlap of the windows in case of partial_tukey and the overlap in the gaps in case of punchout_tukey. P is the fraction of the window that is tapered, like with a regular tukey window. The function can be specified with only a number, a number and an overlap, or a number an overlap and a P, for example, partial_tukey(3), partial_tukey(3/0.3) and partial_tukey(3/0.3/0.5) are all valid. ov should be smaller than 1 and can be negative.

+

Example specifications are "blackman" or "hann;triangle;tukey(0.5);tukey(0.25);tukey(0.125)"

+

Any function that is specified erroneously is silently dropped. Up to 32 functions are kept, the rest are dropped. If the specification is empty the encoder defaults to "tukey(0.5)".

+

When more than one function is specified, then for every subframe the encoder will try each of them separately and choose the window that results in the smallest compressed subframe.

+

Note that each function specified causes the encoder to occupy a floating point array in which to store the window. Also note that the values of P, STDDEV and ov are locale-specific, so if the comma separator specified by the locale is a comma, a comma should be used.

+
Default Value:
"tukey(0.5)"
+
Parameters
+ + + +
encoderAn encoder instance to set.
specificationSee above.
+
+
+
Assertions:
encoder != NULL
specification != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_max_lpc_order()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_max_lpc_order (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the maximum LPC order, or 0 to use only the fixed predictors.

+
Default Value:
8
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_qlp_coeff_precision()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_qlp_coeff_precision (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the precision, in bits, of the quantized linear predictor coefficients, or 0 to let the encoder select it based on the blocksize.

+
Note
In the current implementation, qlp_coeff_precision + bits_per_sample must be less than 32.
+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_do_qlp_coeff_prec_search()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_do_qlp_coeff_prec_search (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set to false to use only the specified quantized linear predictor coefficient precision, or true to search neighboring precision values and use the best one.

+
Default Value:
false
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_do_escape_coding()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_do_escape_coding (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Deprecated. Setting this value has no effect.

+
Default Value:
false
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_do_exhaustive_model_search()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_do_exhaustive_model_search (FLAC__StreamEncoderencoder,
FLAC__bool value 
)
+
+

Set to false to let the encoder estimate the best model order based on the residual signal energy, or true to force the encoder to evaluate all order models and select the best.

+
Default Value:
false
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_min_residual_partition_order()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_min_residual_partition_order (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the minimum partition order to search when coding the residual. This is used in tandem with FLAC__stream_encoder_set_max_residual_partition_order().

+

The partition order determines the context size in the residual. The context size will be approximately blocksize / (2 ^ order).

+

Set both min and max values to 0 to force a single context, whose Rice parameter is based on the residual signal variance. Otherwise, set a min and max order, and the encoder will search all orders, using the mean of each context for its Rice parameter, and use the best.

+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_max_residual_partition_order()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_max_residual_partition_order (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Set the maximum partition order to search when coding the residual. This is used in tandem with FLAC__stream_encoder_set_min_residual_partition_order().

+

The partition order determines the context size in the residual. The context size will be approximately blocksize / (2 ^ order).

+

Set both min and max values to 0 to force a single context, whose Rice parameter is based on the residual signal variance. Otherwise, set a min and max order, and the encoder will search all orders, using the mean of each context for its Rice parameter, and use the best.

+
Default Value:
5
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_rice_parameter_search_dist()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_rice_parameter_search_dist (FLAC__StreamEncoderencoder,
uint32_t value 
)
+
+

Deprecated. Setting this value has no effect.

+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_total_samples_estimate()

+ +
+
+ + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_total_samples_estimate (FLAC__StreamEncoderencoder,
FLAC__uint64 value 
)
+
+

Set an estimate of the total samples that will be encoded. This is merely an estimate and may be set to 0 if unknown. This value will be written to the STREAMINFO block before encoding, and can remove the need for the caller to rewrite the value later if the value is known before encoding.

+
Default Value:
0
+
Parameters
+ + + +
encoderAn encoder instance to set.
valueSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_set_metadata()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_set_metadata (FLAC__StreamEncoderencoder,
FLAC__StreamMetadata ** metadata,
uint32_t num_blocks 
)
+
+

Set the metadata blocks to be emitted to the stream before encoding. A value of NULL, 0 implies no metadata; otherwise, supply an array of pointers to metadata blocks. The array is non-const since the encoder may need to change the is_last flag inside them, and in some cases update seek point offsets. Otherwise, the encoder will not modify or free the blocks. It is up to the caller to free the metadata blocks after encoding finishes.

+
Note
The encoder stores only copies of the pointers in the metadata array; the metadata blocks themselves must survive at least until after FLAC__stream_encoder_finish() returns. Do not free the blocks until then.
+
+The STREAMINFO block is always written and no STREAMINFO block may occur in the supplied array.
+
+By default the encoder does not create a SEEKTABLE. If one is supplied in the metadata array, but the client has specified that it does not support seeking, then the SEEKTABLE will be written verbatim. However by itself this is not very useful as the client will not know the stream offsets for the seekpoints ahead of time. In order to get a proper seektable the client must support seeking. See next note.
+
+SEEKTABLE blocks are handled specially. Since you will not know the values for the seek point stream offsets, you should pass in a SEEKTABLE 'template', that is, a SEEKTABLE object with the required sample numbers (or placeholder points), with 0 for the frame_samples and stream_offset fields for each point. If the client has specified that it supports seeking by providing a seek callback to FLAC__stream_encoder_init_stream() or both seek AND read callback to FLAC__stream_encoder_init_ogg_stream() (or by using FLAC__stream_encoder_init*_file() or FLAC__stream_encoder_init*_FILE()), then while it is encoding the encoder will fill the stream offsets in for you and when encoding is finished, it will seek back and write the real values into the SEEKTABLE block in the stream. There are helper routines for manipulating seektable template blocks; see metadata.h: FLAC__metadata_object_seektable_template_*(). If the client does not support seeking, the SEEKTABLE will have inaccurate offsets which will slow down or remove the ability to seek in the FLAC stream.
+
+The encoder instance will modify the first SEEKTABLE block as it transforms the template to a valid seektable while encoding, but it is still up to the caller to free all metadata blocks after encoding.
+
+A VORBIS_COMMENT block may be supplied. The vendor string in it will be ignored. libFLAC will use it's own vendor string. libFLAC will not modify the passed-in VORBIS_COMMENT's vendor string, it will simply write it's own into the stream. If no VORBIS_COMMENT block is present in the metadata array, libFLAC will write an empty one, containing only the vendor string.
+
+The Ogg FLAC mapping requires that the VORBIS_COMMENT block be the second metadata block of the stream. The encoder already supplies the STREAMINFO block automatically. If metadata does not contain a VORBIS_COMMENT block, the encoder will supply that too. Otherwise, if metadata does contain a VORBIS_COMMENT block and it is not the first, the init function will reorder metadata by moving the VORBIS_COMMENT block to the front; the relative ordering of the other blocks will remain as they were.
+
+The Ogg FLAC mapping limits the number of metadata blocks per stream to 65535. If num_blocks exceeds this the function will return false.
+
Default Value:
NULL, 0
+
Parameters
+ + + + +
encoderAn encoder instance to set.
metadataSee above.
num_blocksSee above.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if the encoder is already initialized, else true. false if the encoder is already initialized, or if num_blocks > 65535 if encoding to Ogg FLAC, else true.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_state()

+ +
+
+ + + + + + + + +
FLAC__StreamEncoderState FLAC__stream_encoder_get_state (const FLAC__StreamEncoderencoder)
+
+

Get the current encoder state.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamEncoderStateThe current encoder state.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_verify_decoder_state()

+ +
+
+ + + + + + + + +
FLAC__StreamDecoderState FLAC__stream_encoder_get_verify_decoder_state (const FLAC__StreamEncoderencoder)
+
+

Get the state of the verify stream decoder. Useful when the stream encoder state is FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamDecoderStateThe verify stream decoder state.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_resolved_state_string()

+ +
+
+ + + + + + + + +
const char* FLAC__stream_encoder_get_resolved_state_string (const FLAC__StreamEncoderencoder)
+
+

Get the current encoder state as a C string. This version automatically resolves FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR by getting the verify decoder's state.

+
Parameters
+ + +
encoderA encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
constchar * The encoder state as a C string. Do not modify the contents.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_verify_decoder_error_stats()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
void FLAC__stream_encoder_get_verify_decoder_error_stats (const FLAC__StreamEncoderencoder,
FLAC__uint64 * absolute_sample,
uint32_t * frame_number,
uint32_t * channel,
uint32_t * sample,
FLAC__int32 * expected,
FLAC__int32 * got 
)
+
+

Get relevant values about the nature of a verify decoder error. Useful when the stream encoder state is FLAC__STREAM_ENCODER_VERIFY_DECODER_ERROR. The arguments should be addresses in which the stats will be returned, or NULL if value is not desired.

+
Parameters
+ + + + + + + + +
encoderAn encoder instance to query.
absolute_sampleThe absolute sample number of the mismatch.
frame_numberThe number of the frame in which the mismatch occurred.
channelThe channel in which the mismatch occurred.
sampleThe number of the sample (relative to the frame) in which the mismatch occurred.
expectedThe expected value for the sample in question.
gotThe actual value returned by the decoder.
+
+
+
Assertions:
encoder != NULL
+ +
+
+ +

◆ FLAC__stream_encoder_get_verify()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_verify (const FLAC__StreamEncoderencoder)
+
+

Get the "verify" flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_verify().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_streamable_subset()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_streamable_subset (const FLAC__StreamEncoderencoder)
+
+

Get the <A HREF="../format.html::subset>Subset flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_streamable_subset().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_channels()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_channels (const FLAC__StreamEncoderencoder)
+
+

Get the number of input channels being processed.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_channels().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_bits_per_sample()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_bits_per_sample (const FLAC__StreamEncoderencoder)
+
+

Get the input sample resolution setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_bits_per_sample().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_sample_rate()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_sample_rate (const FLAC__StreamEncoderencoder)
+
+

Get the input sample rate setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_sample_rate().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_blocksize()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_blocksize (const FLAC__StreamEncoderencoder)
+
+

Get the blocksize setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_blocksize().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_do_mid_side_stereo()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_do_mid_side_stereo (const FLAC__StreamEncoderencoder)
+
+

Get the "mid/side stereo coding" flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_get_do_mid_side_stereo().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_loose_mid_side_stereo()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_loose_mid_side_stereo (const FLAC__StreamEncoderencoder)
+
+

Get the "adaptive mid/side switching" flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_loose_mid_side_stereo().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_max_lpc_order()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_max_lpc_order (const FLAC__StreamEncoderencoder)
+
+

Get the maximum LPC order setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_max_lpc_order().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_qlp_coeff_precision()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_qlp_coeff_precision (const FLAC__StreamEncoderencoder)
+
+

Get the quantized linear predictor coefficient precision setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_qlp_coeff_precision().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_do_qlp_coeff_prec_search()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_do_qlp_coeff_prec_search (const FLAC__StreamEncoderencoder)
+
+

Get the qlp coefficient precision search flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_do_qlp_coeff_prec_search().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_do_escape_coding()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_do_escape_coding (const FLAC__StreamEncoderencoder)
+
+

Get the "escape coding" flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_do_escape_coding().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_do_exhaustive_model_search()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_get_do_exhaustive_model_search (const FLAC__StreamEncoderencoder)
+
+

Get the exhaustive model search flag.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolSee FLAC__stream_encoder_set_do_exhaustive_model_search().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_min_residual_partition_order()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_min_residual_partition_order (const FLAC__StreamEncoderencoder)
+
+

Get the minimum residual partition order setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_min_residual_partition_order().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_max_residual_partition_order()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_max_residual_partition_order (const FLAC__StreamEncoderencoder)
+
+

Get maximum residual partition order setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_max_residual_partition_order().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_rice_parameter_search_dist()

+ +
+
+ + + + + + + + +
uint32_t FLAC__stream_encoder_get_rice_parameter_search_dist (const FLAC__StreamEncoderencoder)
+
+

Get the Rice parameter search distance setting.

+
Parameters
+ + +
encoderAn encoder instance to query.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
uint32_tSee FLAC__stream_encoder_set_rice_parameter_search_dist().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_get_total_samples_estimate()

+ +
+
+ + + + + + + + +
FLAC__uint64 FLAC__stream_encoder_get_total_samples_estimate (const FLAC__StreamEncoderencoder)
+
+

Get the previously set estimate of the total samples to be encoded. The encoder merely mimics back the value given to FLAC__stream_encoder_set_total_samples_estimate() since it has no other way of knowing how many samples the client will encode.

+
Parameters
+ + +
encoderAn encoder instance to set.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__uint64See FLAC__stream_encoder_get_total_samples_estimate().
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_stream()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_stream (FLAC__StreamEncoderencoder,
FLAC__StreamEncoderWriteCallback write_callback,
FLAC__StreamEncoderSeekCallback seek_callback,
FLAC__StreamEncoderTellCallback tell_callback,
FLAC__StreamEncoderMetadataCallback metadata_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode native FLAC streams.

+

This flavor of initialization sets up the encoder to encode to a native FLAC stream. I/O is performed via callbacks to the client. For encoding to a plain file via filename or open FILE*, FLAC__stream_encoder_init_file() and FLAC__stream_encoder_init_FILE() provide a simpler interface.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+

The call to FLAC__stream_encoder_init_stream() currently will also immediately call the write callback several times, once with the fLaC signature, and once for each encoded metadata block.

+
Parameters
+ + + + + + + +
encoderAn uninitialized encoder instance.
write_callbackSee FLAC__StreamEncoderWriteCallback. This pointer must not be NULL.
seek_callbackSee FLAC__StreamEncoderSeekCallback. This pointer may be NULL if seeking is not supported. The encoder uses seeking to go back and write some some stream statistics to the STREAMINFO block; this is recommended but not necessary to create a valid FLAC stream. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy seek callback that just returns FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the encoder.
tell_callbackSee FLAC__StreamEncoderTellCallback. This pointer may be NULL if seeking is not supported. If seek_callback is NULL then this argument will be ignored. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy tell callback that just returns FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the encoder.
metadata_callbackSee FLAC__StreamEncoderMetadataCallback. This pointer may be NULL if the callback is not desired. If the client provides a seek callback, this function is not necessary as the encoder will automatically seek back and update the STREAMINFO block. It may also be NULL if the client does not support seeking, since it will have no way of going back to update the STREAMINFO. However the client can still supply a callback if it would like to know the details from the STREAMINFO.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_ogg_stream()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_stream (FLAC__StreamEncoderencoder,
FLAC__StreamEncoderReadCallback read_callback,
FLAC__StreamEncoderWriteCallback write_callback,
FLAC__StreamEncoderSeekCallback seek_callback,
FLAC__StreamEncoderTellCallback tell_callback,
FLAC__StreamEncoderMetadataCallback metadata_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode Ogg FLAC streams.

+

This flavor of initialization sets up the encoder to encode to a FLAC stream in an Ogg container. I/O is performed via callbacks to the client. For encoding to a plain file via filename or open FILE*, FLAC__stream_encoder_init_ogg_file() and FLAC__stream_encoder_init_ogg_FILE() provide a simpler interface.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+

The call to FLAC__stream_encoder_init_ogg_stream() currently will also immediately call the write callback several times to write the metadata packets.

+
Parameters
+ + + + + + + + +
encoderAn uninitialized encoder instance.
read_callbackSee FLAC__StreamEncoderReadCallback. This pointer must not be NULL if seek_callback is non-NULL since they are both needed to be able to write data back to the Ogg FLAC stream in the post-encode phase.
write_callbackSee FLAC__StreamEncoderWriteCallback. This pointer must not be NULL.
seek_callbackSee FLAC__StreamEncoderSeekCallback. This pointer may be NULL if seeking is not supported. The encoder uses seeking to go back and write some some stream statistics to the STREAMINFO block; this is recommended but not necessary to create a valid FLAC stream. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy seek callback that just returns FLAC__STREAM_ENCODER_SEEK_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the encoder.
tell_callbackSee FLAC__StreamEncoderTellCallback. This pointer may be NULL if seeking is not supported. If seek_callback is NULL then this argument will be ignored. If seek_callback is not NULL then a tell_callback must also be supplied. Alternatively, a dummy tell callback that just returns FLAC__STREAM_ENCODER_TELL_STATUS_UNSUPPORTED may also be supplied, all though this is slightly less efficient for the encoder.
metadata_callbackSee FLAC__StreamEncoderMetadataCallback. This pointer may be NULL if the callback is not desired. If the client provides a seek callback, this function is not necessary as the encoder will automatically seek back and update the STREAMINFO block. It may also be NULL if the client does not support seeking, since it will have no way of going back to update the STREAMINFO. However the client can still supply a callback if it would like to know the details from the STREAMINFO.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_FILE()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_FILE (FLAC__StreamEncoderencoder,
FILE * file,
FLAC__StreamEncoderProgressCallback progress_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode native FLAC files.

+

This flavor of initialization sets up the encoder to encode to a plain native FLAC file. For non-stdio streams, you must use FLAC__stream_encoder_init_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+
Parameters
+ + + + + +
encoderAn uninitialized encoder instance.
fileAn open file. The file should have been opened with mode "w+b" and rewound. The file becomes owned by the encoder and should not be manipulated by the client while encoding. Unless file is stdout, it will be closed when FLAC__stream_encoder_finish() is called. Note however that a proper SEEKTABLE cannot be created when encoding to stdout since it is not seekable.
progress_callbackSee FLAC__StreamEncoderProgressCallback. This pointer may be NULL if the callback is not desired.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
file != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_ogg_FILE()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_FILE (FLAC__StreamEncoderencoder,
FILE * file,
FLAC__StreamEncoderProgressCallback progress_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode Ogg FLAC files.

+

This flavor of initialization sets up the encoder to encode to a plain Ogg FLAC file. For non-stdio streams, you must use FLAC__stream_encoder_init_ogg_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+
Parameters
+ + + + + +
encoderAn uninitialized encoder instance.
fileAn open file. The file should have been opened with mode "w+b" and rewound. The file becomes owned by the encoder and should not be manipulated by the client while encoding. Unless file is stdout, it will be closed when FLAC__stream_encoder_finish() is called. Note however that a proper SEEKTABLE cannot be created when encoding to stdout since it is not seekable.
progress_callbackSee FLAC__StreamEncoderProgressCallback. This pointer may be NULL if the callback is not desired.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
file != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_file()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_file (FLAC__StreamEncoderencoder,
const char * filename,
FLAC__StreamEncoderProgressCallback progress_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode native FLAC files.

+

This flavor of initialization sets up the encoder to encode to a plain FLAC file. If POSIX fopen() semantics are not sufficient (for example, with Unicode filenames on Windows), you must use FLAC__stream_encoder_init_FILE(), or FLAC__stream_encoder_init_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+
Parameters
+ + + + + +
encoderAn uninitialized encoder instance.
filenameThe name of the file to encode to. The file will be opened with fopen(). Use NULL to encode to stdout. Note however that a proper SEEKTABLE cannot be created when encoding to stdout since it is not seekable.
progress_callbackSee FLAC__StreamEncoderProgressCallback. This pointer may be NULL if the callback is not desired.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_init_ogg_file()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__StreamEncoderInitStatus FLAC__stream_encoder_init_ogg_file (FLAC__StreamEncoderencoder,
const char * filename,
FLAC__StreamEncoderProgressCallback progress_callback,
void * client_data 
)
+
+

Initialize the encoder instance to encode Ogg FLAC files.

+

This flavor of initialization sets up the encoder to encode to a plain Ogg FLAC file. If POSIX fopen() semantics are not sufficient (for example, with Unicode filenames on Windows), you must use FLAC__stream_encoder_init_ogg_FILE(), or FLAC__stream_encoder_init_ogg_stream() and provide callbacks for the I/O.

+

This function should be called after FLAC__stream_encoder_new() and FLAC__stream_encoder_set_*() but before FLAC__stream_encoder_process() or FLAC__stream_encoder_process_interleaved(). initialization succeeded.

+
Parameters
+ + + + + +
encoderAn uninitialized encoder instance.
filenameThe name of the file to encode to. The file will be opened with fopen(). Use NULL to encode to stdout. Note however that a proper SEEKTABLE cannot be created when encoding to stdout since it is not seekable.
progress_callbackSee FLAC__StreamEncoderProgressCallback. This pointer may be NULL if the callback is not desired.
client_dataThis value will be supplied to callbacks in their client_data argument.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__StreamEncoderInitStatusFLAC__STREAM_ENCODER_INIT_STATUS_OK if initialization was successful; see FLAC__StreamEncoderInitStatus for the meanings of other return values.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_finish()

+ +
+
+ + + + + + + + +
FLAC__bool FLAC__stream_encoder_finish (FLAC__StreamEncoderencoder)
+
+

Finish the encoding process. Flushes the encoding buffer, releases resources, resets the encoder settings to their defaults, and returns the encoder state to FLAC__STREAM_ENCODER_UNINITIALIZED. Note that this can generate one or more write callbacks before returning, and will generate a metadata callback.

+

Note that in the course of processing the last frame, errors can occur, so the caller should be sure to check the return value to ensure the file was encoded properly.

+

In the event of a prematurely-terminated encode, it is not strictly necessary to call this immediately before FLAC__stream_encoder_delete() but it is good practice to match every FLAC__stream_encoder_init_*() with a FLAC__stream_encoder_finish().

+
Parameters
+ + +
encoderAn uninitialized encoder instance.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__boolfalse if an error occurred processing the last frame; or if verify mode is set (see FLAC__stream_encoder_set_verify()), there was a verify mismatch; else true. If false, caller should check the state with FLAC__stream_encoder_get_state() for more information about the error.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_process()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_process (FLAC__StreamEncoderencoder,
const FLAC__int32 *const buffer[],
uint32_t samples 
)
+
+

Submit data for encoding. This version allows you to supply the input data via an array of pointers, each pointer pointing to an array of samples samples representing one channel. The samples need not be block-aligned, but each channel should have the same number of samples. Each sample should be a signed integer, right-justified to the resolution set by FLAC__stream_encoder_set_bits_per_sample(). For example, if the resolution is 16 bits per sample, the samples should all be in the range [-32768,32767].

+

For applications where channel order is important, channels must follow the order as described in the frame header.

+
Parameters
+ + + + +
encoderAn initialized encoder instance in the OK state.
bufferAn array of pointers to each channel's signal.
samplesThe number of samples in one channel.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false; in this case, check the encoder state with FLAC__stream_encoder_get_state() to see what went wrong.
+
+
+ +
+
+ +

◆ FLAC__stream_encoder_process_interleaved()

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + +
FLAC__bool FLAC__stream_encoder_process_interleaved (FLAC__StreamEncoderencoder,
const FLAC__int32 buffer[],
uint32_t samples 
)
+
+

Submit data for encoding. This version allows you to supply the input data where the channels are interleaved into a single array (i.e. channel0_sample0, channel1_sample0, ... , channelN_sample0, channel0_sample1, ...). The samples need not be block-aligned but they must be sample-aligned, i.e. the first value should be channel0_sample0 and the last value channelN_sampleM. Each sample should be a signed integer, right-justified to the resolution set by FLAC__stream_encoder_set_bits_per_sample(). For example, if the resolution is 16 bits per sample, the samples should all be in the range [-32768,32767].

+

For applications where channel order is important, channels must follow the order as described in the frame header.

+
Parameters
+ + + + +
encoderAn initialized encoder instance in the OK state.
bufferAn array of channel-interleaved data (see above).
samplesThe number of samples in one channel, the same as for FLAC__stream_encoder_process(). For example, if encoding two channels, 1000 samples corresponds to a buffer of 2000 values.
+
+
+
Assertions:
encoder != NULL
+
Return values
+ + +
FLAC__booltrue if successful, else false; in this case, check the encoder state with FLAC__stream_encoder_get_state() to see what went wrong.
+
+
+ +
+
+

Variable Documentation

+ +

◆ FLAC__StreamEncoderStateString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderStateString[]
+
+

Maps a FLAC__StreamEncoderState to a C string.

+

Using a FLAC__StreamEncoderState as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamEncoderInitStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderInitStatusString[]
+
+

Maps a FLAC__StreamEncoderInitStatus to a C string.

+

Using a FLAC__StreamEncoderInitStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamEncoderReadStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderReadStatusString[]
+
+

Maps a FLAC__StreamEncoderReadStatus to a C string.

+

Using a FLAC__StreamEncoderReadStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamEncoderWriteStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderWriteStatusString[]
+
+

Maps a FLAC__StreamEncoderWriteStatus to a C string.

+

Using a FLAC__StreamEncoderWriteStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamEncoderSeekStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderSeekStatusString[]
+
+

Maps a FLAC__StreamEncoderSeekStatus to a C string.

+

Using a FLAC__StreamEncoderSeekStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+ +

◆ FLAC__StreamEncoderTellStatusString

+ +
+
+ + + + +
const char* const FLAC__StreamEncoderTellStatusString[]
+
+

Maps a FLAC__StreamEncoderTellStatus to a C string.

+

Using a FLAC__StreamEncoderTellStatus as the index to this array will give the string equivalent. The contents should not be modified.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp.html new file mode 100644 index 000000000..0acf34050 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp.html @@ -0,0 +1,86 @@ + + + + + + + +FLAC: FLAC C++ API + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC C++ API
+
+
+ + + + + + + + + + +

+Modules

 FLAC++/decoder.h: decoder classes
 
 FLAC++/encoder.h: encoder classes
 
 FLAC++/export.h: export symbols
 
 
+

Detailed Description

+

The FLAC C++ API is the interface to libFLAC++, a set of classes that encapsulate the encoders, decoders, and metadata interfaces in libFLAC.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__decoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__decoder.html new file mode 100644 index 000000000..10caabe84 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__decoder.html @@ -0,0 +1,85 @@ + + + + + + + +FLAC: FLAC++/decoder.h: decoder classes + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/decoder.h: decoder classes
+
+
+ + + + + + +

+Classes

class  FLAC::Decoder::Stream
 
class  FLAC::Decoder::File
 
+

Detailed Description

+

This module describes the decoder layers provided by libFLAC++.

+

The libFLAC++ decoder classes are object wrappers around their counterparts in libFLAC. All decoding layers available in libFLAC are also provided here. The interface is very similar; make sure to read the libFLAC decoder module .

+

There are only two significant differences here. First, instead of passing in C function pointers for callbacks, you inherit from the decoder class and provide implementations for the callbacks in your derived class; because of this there is no need for a 'client_data' property.

+

Second, there are two stream decoder classes. FLAC::Decoder::Stream is used for the same cases that FLAC__stream_decoder_init_stream() / FLAC__stream_decoder_init_ogg_stream() are used, and FLAC::Decoder::File is used for the same cases that FLAC__stream_decoder_init_FILE() and FLAC__stream_decoder_init_file() / FLAC__stream_decoder_init_ogg_FILE() and FLAC__stream_decoder_init_ogg_file() are used.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__encoder.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__encoder.html new file mode 100644 index 000000000..37a457d7f --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__encoder.html @@ -0,0 +1,85 @@ + + + + + + + +FLAC: FLAC++/encoder.h: encoder classes + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/encoder.h: encoder classes
+
+
+ + + + + + +

+Classes

class  FLAC::Encoder::Stream
 
class  FLAC::Encoder::File
 
+

Detailed Description

+

This module describes the encoder layers provided by libFLAC++.

+

The libFLAC++ encoder classes are object wrappers around their counterparts in libFLAC. All encoding layers available in libFLAC are also provided here. The interface is very similar; make sure to read the libFLAC encoder module .

+

There are only two significant differences here. First, instead of passing in C function pointers for callbacks, you inherit from the encoder class and provide implementations for the callbacks in your derived class; because of this there is no need for a 'client_data' property.

+

Second, there are two stream encoder classes. FLAC::Encoder::Stream is used for the same cases that FLAC__stream_encoder_init_stream() / FLAC__stream_encoder_init_ogg_stream() are used, and FLAC::Encoder::File is used for the same cases that FLAC__stream_encoder_init_FILE() and FLAC__stream_encoder_init_file() / FLAC__stream_encoder_init_ogg_FILE() and FLAC__stream_encoder_init_ogg_file() are used.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__export.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__export.html new file mode 100644 index 000000000..6e379a67b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__export.html @@ -0,0 +1,91 @@ + + + + + + + +FLAC: FLAC++/export.h: export symbols + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/export.h: export symbols
+
+
+ + + + + + + + + + +

+Macros

+#define FLACPP_API
 
+#define FLACPP_API_VERSION_CURRENT   9
 
+#define FLACPP_API_VERSION_REVISION   0
 
+#define FLACPP_API_VERSION_AGE   3
 
+

Detailed Description

+

This module contains #defines and symbols for exporting function calls, and providing version information and compiled-in features.

+

If you are compiling with MSVC and will link to the static library (libFLAC++.lib) you should define FLAC__NO_DLL in your project to make sure the symbols are exported properly.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata.html new file mode 100644 index 000000000..d53716f5e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata.html @@ -0,0 +1,87 @@ + + + + + + + +FLAC: FLAC++/metadata.h: metadata interfaces + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/metadata.h: metadata interfaces
+
+
+ + + + + + + + + + +

+Modules

 
 
 
 
+

Detailed Description

+

This module provides classes for creating and manipulating FLAC metadata blocks in memory, and three progressively more powerful interfaces for traversing and editing metadata in FLAC files.

+

The behavior closely mimics the C layer interface; be sure to read the detailed description of the C metadata module . Note that like the C layer, currently only the Chain interface (level 2) supports Ogg FLAC files, and it is read-only i.e. no writing back changed metadata to file.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level0.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level0.html new file mode 100644 index 000000000..535cd4528 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level0.html @@ -0,0 +1,388 @@ + + + + + + + +FLAC: FLAC++/metadata.h: metadata level 0 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/metadata.h: metadata level 0 interface
+
+
+ + + + + + + + + + + + + + + + +

+Functions

bool FLAC::Metadata::get_streaminfo (const char *filename, StreamInfo &streaminfo)
 
bool FLAC::Metadata::get_tags (const char *filename, VorbisComment *&tags)
 
bool FLAC::Metadata::get_tags (const char *filename, VorbisComment &tags)
 
bool FLAC::Metadata::get_cuesheet (const char *filename, CueSheet *&cuesheet)
 
bool FLAC::Metadata::get_cuesheet (const char *filename, CueSheet &cuesheet)
 
bool FLAC::Metadata::get_picture (const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
 
bool FLAC::Metadata::get_picture (const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, uint32_t max_width, uint32_t max_height, uint32_t max_depth, uint32_t max_colors)
 
+

Detailed Description

+

Level 0 metadata iterators.

+

See the C layer equivalent for more.

+

Function Documentation

+ +

◆ get_streaminfo()

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_streaminfo (const char * filename,
StreamInfostreaminfo 
)
+
+
+ +

◆ get_tags() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_tags (const char * filename,
VorbisComment *& tags 
)
+
+
+ +

◆ get_tags() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_tags (const char * filename,
VorbisCommenttags 
)
+
+
+ +

◆ get_cuesheet() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_cuesheet (const char * filename,
CueSheet *& cuesheet 
)
+
+
+ +

◆ get_cuesheet() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_cuesheet (const char * filename,
CueSheetcuesheet 
)
+
+
+ +

◆ get_picture() [1/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_picture (const char * filename,
Picture *& picture,
::FLAC__StreamMetadata_Picture_Type type,
const char * mime_type,
const FLAC__byte * description,
uint32_t max_width,
uint32_t max_height,
uint32_t max_depth,
uint32_t max_colors 
)
+
+
+ +

◆ get_picture() [2/2]

+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
bool FLAC::Metadata::get_picture (const char * filename,
Picturepicture,
::FLAC__StreamMetadata_Picture_Type type,
const char * mime_type,
const FLAC__byte * description,
uint32_t max_width,
uint32_t max_height,
uint32_t max_depth,
uint32_t max_colors 
)
+
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level1.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level1.html new file mode 100644 index 000000000..d9b92ebd5 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level1.html @@ -0,0 +1,91 @@ + + + + + + + +FLAC: FLAC++/metadata.h: metadata level 1 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/metadata.h: metadata level 1 interface
+
+
+ + + + +

+Classes

class  FLAC::Metadata::SimpleIterator
 
+

Detailed Description

+

Level 1 metadata iterator.

+

The flow through the iterator in the C++ layer is similar to the C layer:

+

The ownership of pointers in the C++ layer follows that in the C layer, i.e.

    +
  • The objects returned by get_block() are yours to modify, but changes are not reflected in the FLAC file until you call set_block(). The objects are also yours to delete; they are not automatically deleted when passed to set_block() or insert_block_after().
  • +
+

See the C layer equivalent for more.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level2.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level2.html new file mode 100644 index 000000000..b701db261 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__level2.html @@ -0,0 +1,135 @@ + + + + + + + +FLAC: FLAC++/metadata.h: metadata level 2 interface + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/metadata.h: metadata level 2 interface
+
+
+ + + + + + +

+Classes

class  FLAC::Metadata::Chain
 
class  FLAC::Metadata::Iterator
 
+ + + + + + + +

+Functions

 FLAC::Metadata::Prototype::Prototype (const Prototype &)
 
FLAC::Metadata::Prototype::Prototype (const ::FLAC__StreamMetadata &)
 
FLAC::Metadata::Prototype::Prototype (const ::FLAC__StreamMetadata *)
 
+

Detailed Description

+

Level 2 metadata iterator.

+

The flow through the iterator in the C++ layer is similar to the C layer:

+

The ownership of pointers in the C++ layer is slightly different than in the C layer, i.e.

+

See the C layer equivalent for more.

+

Function Documentation

+ +

◆ Prototype()

+ +
+
+ + + + + +
+ + + + + + + + +
FLAC::Metadata::Prototype::Prototype (const Prototype)
+
+protected
+
+

Constructs a copy of the given object. This form always performs a deep copy.

+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__object.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__object.html new file mode 100644 index 000000000..45653aa7b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__flacpp__metadata__object.html @@ -0,0 +1,366 @@ + + + + + + + +FLAC: FLAC++/metadata.h: metadata object classes + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
FLAC++/metadata.h: metadata object classes
+
+
+ + + + + + + + + + + + + + + + + + + + +

+Classes

class  FLAC::Metadata::Prototype
 
class  FLAC::Metadata::StreamInfo
 
class  FLAC::Metadata::Padding
 
class  FLAC::Metadata::Application
 
class  FLAC::Metadata::SeekTable
 
class  FLAC::Metadata::VorbisComment
 
class  FLAC::Metadata::CueSheet
 
class  FLAC::Metadata::Picture
 
class  FLAC::Metadata::Unknown
 
+ + + + + + + + + + + + + + + + + + + +

+Functions

PrototypeFLAC::Metadata::clone (const Prototype *)
 
bool FLAC::Metadata::Prototype::is_valid () const
 
 FLAC::Metadata::Prototype::operator const ::FLAC__StreamMetadata * () const
 
bool FLAC::Metadata::Prototype::operator== (const Prototype &) const
 
bool FLAC::Metadata::Prototype::operator== (const ::FLAC__StreamMetadata &) const
 
bool FLAC::Metadata::Prototype::operator== (const ::FLAC__StreamMetadata *) const
 
bool FLAC::Metadata::Prototype::operator!= (const Prototype &) const
 
bool FLAC::Metadata::Prototype::operator!= (const ::FLAC__StreamMetadata &) const
 
bool FLAC::Metadata::Prototype::operator!= (const ::FLAC__StreamMetadata *) const
 
+

Detailed Description

+

This module contains classes representing FLAC metadata blocks in memory.

+

The behavior closely mimics the C layer interface; be sure to read the detailed description of the C metadata object module .

+

Any time a metadata object is constructed or assigned, you should check is_valid() to make sure the underlying FLAC__StreamMetadata object was able to be created.

+
Warning
When the get_*() methods of any metadata object method return you a const pointer, DO NOT disobey and write into it. Always use the set_*() methods.
+

Function Documentation

+ +

◆ clone()

+ +
+
+ + + + + + + + +
Prototype* FLAC::Metadata::clone (const Prototype)
+
+

Create a deep copy of an object and return it.

+ +
+
+ +

◆ operator==() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator== (const Prototypeobject) const
+
+inline
+
+
+ +

◆ operator==() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC__metadata_object_is_equal().

+ +
+
+ +

◆ operator==() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator== (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for equality, performing a deep compare by following pointers.

+ +

References FLAC__metadata_object_is_equal().

+ +
+
+ +

◆ operator!=() [1/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator!= (const Prototypeobject) const
+
+inline
+
+
+ +

◆ operator!=() [2/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +
+
+ +

◆ operator!=() [3/3]

+ +
+
+ + + + + +
+ + + + + + + + +
bool FLAC::Metadata::Prototype::operator!= (const ::FLAC__StreamMetadataobject) const
+
+inline
+
+

Check for inequality, performing a deep compare by following pointers.

+ +
+
+ +

◆ is_valid()

+ +
+
+ + + + + +
+ + + + + + + +
bool FLAC::Metadata::Prototype::is_valid () const
+
+inline
+
+

Returns true if the object was correctly constructed (i.e. the underlying FLAC__StreamMetadata object was properly allocated), else false.

+ +
+
+ +

◆ operator const ::FLAC__StreamMetadata *()

+ +
+
+ + + + + +
+ + + + + + + +
FLAC::Metadata::Prototype::operator const ::FLAC__StreamMetadata * () const
+
+inline
+
+

Returns a pointer to the underlying FLAC__StreamMetadata object. This can be useful for plugging any holes between the C++ and C interfaces.

+
Assertions:
+ +
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting.html new file mode 100644 index 000000000..1599a5f20 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting.html @@ -0,0 +1,87 @@ + + + + + + + +FLAC: Porting Guide for New Versions + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+ +
+
Porting Guide for New Versions
+
+
+ + + + + + + + +

+Modules

 Porting from FLAC 1.1.2 to 1.1.3
 
 Porting from FLAC 1.1.3 to 1.1.4
 
 Porting from FLAC 1.1.4 to 1.2.0
 
+

Detailed Description

+

This module describes differences in the library interfaces from version to version. It assists in the porting of code that uses the libraries to newer versions of FLAC.

+

One simple facility for making porting easier that has been added in FLAC 1.1.3 is a set of #defines in export.h of each library's includes (e.g. include/FLAC/export.h). The #defines mirror the libraries' libtool version numbers, e.g. in libFLAC there are FLAC_API_VERSION_CURRENT, FLAC_API_VERSION_REVISION, and FLAC_API_VERSION_AGE. These can be used to support multiple versions of an API during the transition phase, e.g.

+
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
legacy code
#else
new code
#endif

The source will work for multiple versions and the legacy code can easily be removed when the transition is complete.

+

Another available symbol is FLAC_API_SUPPORTS_OGG_FLAC (defined in include/FLAC/export.h), which can be used to determine whether or not the library has been compiled with support for Ogg FLAC. This is simpler than trying to call an Ogg init function and catching the error.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__2__to__1__1__3.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__2__to__1__1__3.html new file mode 100644 index 000000000..4c03554c4 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__2__to__1__1__3.html @@ -0,0 +1,81 @@ + + + + + + + +FLAC: Porting from FLAC 1.1.2 to 1.1.3 + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Porting from FLAC 1.1.2 to 1.1.3
+
+
+

This module describes porting from FLAC 1.1.2 to FLAC 1.1.3.

+

The main change between the APIs in 1.1.2 and 1.1.3 is that they have been simplified. First, libOggFLAC has been merged into libFLAC and libOggFLAC++ has been merged into libFLAC++. Second, both the three decoding layers and three encoding layers have been merged into a single stream decoder and stream encoder. That is, the functionality of FLAC__SeekableStreamDecoder and FLAC__FileDecoder has been merged into FLAC__StreamDecoder, and FLAC__SeekableStreamEncoder and FLAC__FileEncoder into FLAC__StreamEncoder. Only the FLAC__StreamDecoder and FLAC__StreamEncoder remain. What this means is there is now a single API that can be used to encode or decode streams to/from native FLAC or Ogg FLAC and the single API can work on both seekable and non-seekable streams.

+

Instead of creating an encoder or decoder of a certain layer, now the client will always create a FLAC__StreamEncoder or FLAC__StreamDecoder. The old layers are now differentiated by the initialization function. For example, for the decoder, FLAC__stream_decoder_init() has been replaced by FLAC__stream_decoder_init_stream(). This init function takes callbacks for the I/O, and the seeking callbacks are optional. This allows the client to use the same object for seekable and non-seekable streams. For decoding a FLAC file directly, the client can use FLAC__stream_decoder_init_file() and pass just a filename and fewer callbacks; most of the other callbacks are supplied internally. For situations where fopen()ing by filename is not possible (e.g. Unicode filenames on Windows) the client can instead open the file itself and supply the FILE* to FLAC__stream_decoder_init_FILE(). The init functions now returns a FLAC__StreamDecoderInitStatus instead of FLAC__StreamDecoderState. Since the callbacks and client data are now passed to the init function, the FLAC__stream_decoder_set_*_callback() functions and FLAC__stream_decoder_set_client_data() are no longer needed. The rest of the calls to the decoder are the same as before.

+

There are counterpart init functions for Ogg FLAC, e.g. FLAC__stream_decoder_init_ogg_stream(). All the rest of the calls and callbacks are the same as for native FLAC.

+

As an example, in FLAC 1.1.2 a seekable stream decoder would have been set up like so:

+
FLAC__SeekableStreamDecoder *decoder = FLAC__seekable_stream_decoder_new();
if(decoder == NULL) do_something;
FLAC__seekable_stream_decoder_set_md5_checking(decoder, true);
[... other settings ...]
FLAC__seekable_stream_decoder_set_read_callback(decoder, my_read_callback);
FLAC__seekable_stream_decoder_set_seek_callback(decoder, my_seek_callback);
FLAC__seekable_stream_decoder_set_tell_callback(decoder, my_tell_callback);
FLAC__seekable_stream_decoder_set_length_callback(decoder, my_length_callback);
FLAC__seekable_stream_decoder_set_eof_callback(decoder, my_eof_callback);
FLAC__seekable_stream_decoder_set_write_callback(decoder, my_write_callback);
FLAC__seekable_stream_decoder_set_metadata_callback(decoder, my_metadata_callback);
FLAC__seekable_stream_decoder_set_error_callback(decoder, my_error_callback);
FLAC__seekable_stream_decoder_set_client_data(decoder, my_client_data);
if(FLAC__seekable_stream_decoder_init(decoder) != FLAC__SEEKABLE_STREAM_DECODER_OK) do_something;

In FLAC 1.1.3 it is like this:

+
if(decoder == NULL) do_something;
[... other settings ...]
decoder,
my_read_callback,
my_seek_callback, // or NULL
my_tell_callback, // or NULL
my_length_callback, // or NULL
my_eof_callback, // or NULL
my_write_callback,
my_metadata_callback, // or NULL
my_error_callback,
my_client_data

or you could do;

+
[...]
FILE *file = fopen("somefile.flac","rb");
if(file == NULL) do_somthing;
decoder,
file,
my_write_callback,
my_metadata_callback, // or NULL
my_error_callback,
my_client_data

or just:

+
[...]
decoder,
"somefile.flac",
my_write_callback,
my_metadata_callback, // or NULL
my_error_callback,
my_client_data

Another small change to the decoder is in how it handles unparseable streams. Before, when the decoder found an unparseable stream (reserved for when the decoder encounters a stream from a future encoder that it can't parse), it changed the state to FLAC__STREAM_DECODER_UNPARSEABLE_STREAM. Now the decoder instead drops sync and calls the error callback with a new error code FLAC__STREAM_DECODER_ERROR_STATUS_UNPARSEABLE_STREAM. This is more robust. If your error callback does not discriminate on the the error state, your code does not need to be changed.

+

The encoder now has a new setting: FLAC__stream_encoder_set_apodization(). This is for setting the method used to window the data before LPC analysis. You only need to add a call to this function if the default is not suitable. There are also two new convenience functions that may be useful: FLAC__metadata_object_cuesheet_calculate_cddb_id() and FLAC__metadata_get_cuesheet().

+

The bytes parameter to FLAC__StreamDecoderReadCallback, FLAC__StreamEncoderReadCallback, and FLAC__StreamEncoderWriteCallback is now size_t instead of uint32_t.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__3__to__1__1__4.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__3__to__1__1__4.html new file mode 100644 index 000000000..aa83fc0bf --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__3__to__1__1__4.html @@ -0,0 +1,72 @@ + + + + + + + +FLAC: Porting from FLAC 1.1.3 to 1.1.4 + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Porting from FLAC 1.1.3 to 1.1.4
+
+
+

This module describes porting from FLAC 1.1.3 to FLAC 1.1.4.

+

There were no changes to any of the interfaces from 1.1.3 to 1.1.4. There was a slight change in the implementation of FLAC__stream_encoder_set_metadata(); the function now makes a copy of the metadata array of pointers so the client no longer needs to maintain it after the call. The objects themselves that are pointed to by the array are still not copied though and must be maintained until the call to FLAC__stream_encoder_finish().

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__4__to__1__2__0.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__4__to__1__2__0.html new file mode 100644 index 000000000..0fdec2f9e --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/group__porting__1__1__4__to__1__2__0.html @@ -0,0 +1,73 @@ + + + + + + + +FLAC: Porting from FLAC 1.1.4 to 1.2.0 + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Porting from FLAC 1.1.4 to 1.2.0
+
+
+

This module describes porting from FLAC 1.1.4 to FLAC 1.2.0.

+

There were only very minor changes to the interfaces from 1.1.4 to 1.2.0. In libFLAC, FLAC__format_sample_rate_is_subset() was added. In libFLAC++, FLAC::Decoder::Stream::get_decode_position() was added.

+

Finally, value of the constant FLAC__FRAME_HEADER_RESERVED_LEN has changed to reflect the conversion of one of the reserved bits into active use. It used to be 2 and now is 1. However the FLAC frame header length has not changed, so to skip the proper number of bits, use FLAC__FRAME_HEADER_RESERVED_LEN + FLAC__FRAME_HEADER_BLOCKING_STRATEGY_LEN

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/hierarchy.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/hierarchy.html new file mode 100644 index 000000000..5fb776c4b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/hierarchy.html @@ -0,0 +1,123 @@ + + + + + + + +FLAC: Class Hierarchy + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
Class Hierarchy
+
+
+
This inheritance list is sorted roughly, but not completely, alphabetically:
+
[detail level 12]
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 CFLAC::Decoder::StreamThis class wraps the FLAC__StreamDecoder. If you are decoding from a file, FLAC::Decoder::File may be more convenient
 CFLAC::Decoder::FileThis class wraps the FLAC__StreamDecoder. If you are not decoding from a file, you may need to use FLAC::Decoder::Stream
 CFLAC::Decoder::Stream::State
 CFLAC::Encoder::StreamThis class wraps the FLAC__StreamEncoder. If you are encoding to a file, FLAC::Encoder::File may be more convenient
 CFLAC::Encoder::FileThis class wraps the FLAC__StreamEncoder. If you are not encoding to a file, you may need to use FLAC::Encoder::Stream
 CFLAC::Encoder::Stream::State
 CFLAC::Metadata::Chain
 CFLAC::Metadata::Chain::Status
 CFLAC::Metadata::CueSheet::Track
 CFLAC::Metadata::Iterator
 CFLAC::Metadata::Prototype
 CFLAC::Metadata::Application
 CFLAC::Metadata::CueSheet
 CFLAC::Metadata::Padding
 CFLAC::Metadata::Picture
 CFLAC::Metadata::SeekTable
 CFLAC::Metadata::StreamInfo
 CFLAC::Metadata::Unknown
 CFLAC::Metadata::VorbisComment
 CFLAC::Metadata::SimpleIterator
 CFLAC::Metadata::SimpleIterator::Status
 CFLAC::Metadata::VorbisComment::Entry
 CFLAC__EntropyCodingMethod
 CFLAC__EntropyCodingMethod_PartitionedRice
 CFLAC__EntropyCodingMethod_PartitionedRiceContents
 CFLAC__Frame
 CFLAC__FrameFooter
 CFLAC__FrameHeader
 CFLAC__IOCallbacks
 CFLAC__StreamDecoder
 CFLAC__StreamEncoder
 CFLAC__StreamMetadata
 CFLAC__StreamMetadata_Application
 CFLAC__StreamMetadata_CueSheet
 CFLAC__StreamMetadata_CueSheet_Index
 CFLAC__StreamMetadata_CueSheet_Track
 CFLAC__StreamMetadata_Padding
 CFLAC__StreamMetadata_Picture
 CFLAC__StreamMetadata_SeekPoint
 CFLAC__StreamMetadata_SeekTable
 CFLAC__StreamMetadata_StreamInfo
 CFLAC__StreamMetadata_Unknown
 CFLAC__StreamMetadata_VorbisComment
 CFLAC__StreamMetadata_VorbisComment_Entry
 CFLAC__Subframe
 CFLAC__Subframe_Constant
 CFLAC__Subframe_Fixed
 CFLAC__Subframe_LPC
 CFLAC__Subframe_Verbatim
+
+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/index.html b/Frameworks/FLAC/flac-1.3.3/doc/html/api/index.html new file mode 100644 index 000000000..43debd40b --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/index.html @@ -0,0 +1,105 @@ + + + + + + + +FLAC: Main Page + + + + + + +
+
+ + + + + + +
+
FLAC +  1.3.3 +
+
+
+ + + + + + +
+
+
+
FLAC Documentation
+
+
+

+Introduction

+

This is the documentation for the FLAC C and C++ APIs. It is highly interconnected; this introduction should give you a top level idea of the structure and how to find the information you need. As a prerequisite you should have at least a basic knowledge of the FLAC format, documented here.

+

+FLAC C API

+

The FLAC C API is the interface to libFLAC, a set of structures describing the components of FLAC streams, and functions for encoding and decoding streams, as well as manipulating FLAC metadata in files. The public include files will be installed in your include area (for example /usr/include/FLAC/...).

+

By writing a little code and linking against libFLAC, it is relatively easy to add FLAC support to another program. The library is licensed under Xiph's BSD license. Complete source code of libFLAC as well as the command-line encoder and plugins is available and is a useful source of examples.

+

Aside from encoders and decoders, libFLAC provides a powerful metadata interface for manipulating metadata in FLAC files. It allows the user to add, delete, and modify FLAC metadata blocks and it can automatically take advantage of PADDING blocks to avoid rewriting the entire FLAC file when changing the size of the metadata.

+

libFLAC usually only requires the standard C library and C math library. In particular, threading is not used so there is no dependency on a thread library. However, libFLAC does not use global variables and should be thread-safe.

+

libFLAC also supports encoding to and decoding from Ogg FLAC. However the metadata editing interfaces currently have limited read-only support for Ogg FLAC files.

+

+FLAC C++ API

+

The FLAC C++ API is a set of classes that encapsulate the structures and functions in libFLAC. They provide slightly more functionality with respect to metadata but are otherwise equivalent. For the most part, they share the same usage as their counterparts in libFLAC, and the FLAC C API documentation can be used as a supplement. The public include files for the C++ API will be installed in your include area (for example /usr/include/FLAC++/...).

+

libFLAC++ is also licensed under Xiph's BSD license.

+

+Getting Started

+

A good starting point for learning the API is to browse through the modules. Modules are logical groupings of related functions or classes, which correspond roughly to header files or sections of header files. Each module includes a detailed description of the general usage of its functions or classes.

+

From there you can go on to look at the documentation of individual functions. You can see different views of the individual functions through the links in top bar across this page.

+

If you prefer a more hands-on approach, you can jump right to some example code.

+

+Porting Guide

+

Starting with FLAC 1.1.3 a Porting Guide has been introduced which gives detailed instructions on how to port your code to newer versions of FLAC.

+

+Embedded Developers

+

libFLAC has grown larger over time as more functionality has been included, but much of it may be unnecessary for a particular embedded implementation. Unused parts may be pruned by some simple editing of src/libFLAC/Makefile.am. In general, the decoders, encoders, and metadata interface are all independent from each other.

+

It is easiest to just describe the dependencies:

+
    +
  • All modules depend on the Format module.
  • +
  • The decoders and encoders depend on the bitbuffer.
  • +
  • The decoder is independent of the encoder. The encoder uses the decoder because of the verify feature, but this can be removed if not needed.
  • +
  • Parts of the metadata interface require the stream decoder (but not the encoder).
  • +
  • Ogg support is selectable through the compile time macro FLAC__HAS_OGG.
  • +
+

For example, if your application only requires the stream decoder, no encoder, and no metadata interface, you can remove the stream encoder and the metadata interface, which will greatly reduce the size of the library.

+

Also, there are several places in the libFLAC code with comments marked with "OPT:" where a #define can be changed to enable code that might be faster on a specific platform. Experimenting with these can yield faster binaries.

+
+ +
+ + + + + + + + + + diff --git a/Frameworks/FLAC/flac-1.3.3/doc/html/api/jquery.js b/Frameworks/FLAC/flac-1.3.3/doc/html/api/jquery.js new file mode 100644 index 000000000..f5343eda9 --- /dev/null +++ b/Frameworks/FLAC/flac-1.3.3/doc/html/api/jquery.js @@ -0,0 +1,87 @@ +/*! + * jQuery JavaScript Library v1.7.1 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Mon Nov 21 21:11:03 2011 -0500 + */ +(function(bb,L){var av=bb.document,bu=bb.navigator,bl=bb.location;var b=(function(){var bF=function(b0,b1){return new bF.fn.init(b0,b1,bD)},bU=bb.jQuery,bH=bb.$,bD,bY=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,bM=/\S/,bI=/^\s+/,bE=/\s+$/,bA=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,bN=/^[\],:{}\s]*$/,bW=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,bP=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,bJ=/(?:^|:|,)(?:\s*\[)+/g,by=/(webkit)[ \/]([\w.]+)/,bR=/(opera)(?:.*version)?[ \/]([\w.]+)/,bQ=/(msie) ([\w.]+)/,bS=/(mozilla)(?:.*? rv:([\w.]+))?/,bB=/-([a-z]|[0-9])/ig,bZ=/^-ms-/,bT=function(b0,b1){return(b1+"").toUpperCase()},bX=bu.userAgent,bV,bC,e,bL=Object.prototype.toString,bG=Object.prototype.hasOwnProperty,bz=Array.prototype.push,bK=Array.prototype.slice,bO=String.prototype.trim,bv=Array.prototype.indexOf,bx={};bF.fn=bF.prototype={constructor:bF,init:function(b0,b4,b3){var b2,b5,b1,b6;if(!b0){return this}if(b0.nodeType){this.context=this[0]=b0;this.length=1;return this}if(b0==="body"&&!b4&&av.body){this.context=av;this[0]=av.body;this.selector=b0;this.length=1;return this}if(typeof b0==="string"){if(b0.charAt(0)==="<"&&b0.charAt(b0.length-1)===">"&&b0.length>=3){b2=[null,b0,null]}else{b2=bY.exec(b0)}if(b2&&(b2[1]||!b4)){if(b2[1]){b4=b4 instanceof bF?b4[0]:b4;b6=(b4?b4.ownerDocument||b4:av);b1=bA.exec(b0);if(b1){if(bF.isPlainObject(b4)){b0=[av.createElement(b1[1])];bF.fn.attr.call(b0,b4,true)}else{b0=[b6.createElement(b1[1])]}}else{b1=bF.buildFragment([b2[1]],[b6]);b0=(b1.cacheable?bF.clone(b1.fragment):b1.fragment).childNodes}return bF.merge(this,b0)}else{b5=av.getElementById(b2[2]);if(b5&&b5.parentNode){if(b5.id!==b2[2]){return b3.find(b0)}this.length=1;this[0]=b5}this.context=av;this.selector=b0;return this}}else{if(!b4||b4.jquery){return(b4||b3).find(b0)}else{return this.constructor(b4).find(b0)}}}else{if(bF.isFunction(b0)){return b3.ready(b0)}}if(b0.selector!==L){this.selector=b0.selector;this.context=b0.context}return bF.makeArray(b0,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return bK.call(this,0)},get:function(b0){return b0==null?this.toArray():(b0<0?this[this.length+b0]:this[b0])},pushStack:function(b1,b3,b0){var b2=this.constructor();if(bF.isArray(b1)){bz.apply(b2,b1)}else{bF.merge(b2,b1)}b2.prevObject=this;b2.context=this.context;if(b3==="find"){b2.selector=this.selector+(this.selector?" ":"")+b0}else{if(b3){b2.selector=this.selector+"."+b3+"("+b0+")"}}return b2},each:function(b1,b0){return bF.each(this,b1,b0)},ready:function(b0){bF.bindReady();bC.add(b0);return this},eq:function(b0){b0=+b0;return b0===-1?this.slice(b0):this.slice(b0,b0+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(bK.apply(this,arguments),"slice",bK.call(arguments).join(","))},map:function(b0){return this.pushStack(bF.map(this,function(b2,b1){return b0.call(b2,b1,b2)}))},end:function(){return this.prevObject||this.constructor(null)},push:bz,sort:[].sort,splice:[].splice};bF.fn.init.prototype=bF.fn;bF.extend=bF.fn.extend=function(){var b9,b2,b0,b1,b6,b7,b5=arguments[0]||{},b4=1,b3=arguments.length,b8=false;if(typeof b5==="boolean"){b8=b5;b5=arguments[1]||{};b4=2}if(typeof b5!=="object"&&!bF.isFunction(b5)){b5={}}if(b3===b4){b5=this;--b4}for(;b40){return}bC.fireWith(av,[bF]);if(bF.fn.trigger){bF(av).trigger("ready").off("ready")}}},bindReady:function(){if(bC){return}bC=bF.Callbacks("once memory");if(av.readyState==="complete"){return setTimeout(bF.ready,1)}if(av.addEventListener){av.addEventListener("DOMContentLoaded",e,false);bb.addEventListener("load",bF.ready,false)}else{if(av.attachEvent){av.attachEvent("onreadystatechange",e);bb.attachEvent("onload",bF.ready);var b0=false;try{b0=bb.frameElement==null}catch(b1){}if(av.documentElement.doScroll&&b0){bw()}}}},isFunction:function(b0){return bF.type(b0)==="function"},isArray:Array.isArray||function(b0){return bF.type(b0)==="array"},isWindow:function(b0){return b0&&typeof b0==="object"&&"setInterval" in b0},isNumeric:function(b0){return !isNaN(parseFloat(b0))&&isFinite(b0)},type:function(b0){return b0==null?String(b0):bx[bL.call(b0)]||"object"},isPlainObject:function(b2){if(!b2||bF.type(b2)!=="object"||b2.nodeType||bF.isWindow(b2)){return false}try{if(b2.constructor&&!bG.call(b2,"constructor")&&!bG.call(b2.constructor.prototype,"isPrototypeOf")){return false}}catch(b1){return false}var b0;for(b0 in b2){}return b0===L||bG.call(b2,b0)},isEmptyObject:function(b1){for(var b0 in b1){return false}return true},error:function(b0){throw new Error(b0)},parseJSON:function(b0){if(typeof b0!=="string"||!b0){return null}b0=bF.trim(b0);if(bb.JSON&&bb.JSON.parse){return bb.JSON.parse(b0)}if(bN.test(b0.replace(bW,"@").replace(bP,"]").replace(bJ,""))){return(new Function("return "+b0))()}bF.error("Invalid JSON: "+b0)},parseXML:function(b2){var b0,b1;try{if(bb.DOMParser){b1=new DOMParser();b0=b1.parseFromString(b2,"text/xml")}else{b0=new ActiveXObject("Microsoft.XMLDOM");b0.async="false";b0.loadXML(b2)}}catch(b3){b0=L}if(!b0||!b0.documentElement||b0.getElementsByTagName("parsererror").length){bF.error("Invalid XML: "+b2)}return b0},noop:function(){},globalEval:function(b0){if(b0&&bM.test(b0)){(bb.execScript||function(b1){bb["eval"].call(bb,b1)})(b0)}},camelCase:function(b0){return b0.replace(bZ,"ms-").replace(bB,bT)},nodeName:function(b1,b0){return b1.nodeName&&b1.nodeName.toUpperCase()===b0.toUpperCase()},each:function(b3,b6,b2){var b1,b4=0,b5=b3.length,b0=b5===L||bF.isFunction(b3);if(b2){if(b0){for(b1 in b3){if(b6.apply(b3[b1],b2)===false){break}}}else{for(;b40&&b0[0]&&b0[b1-1])||b1===0||bF.isArray(b0));if(b3){for(;b21?aJ.call(arguments,0):bG;if(!(--bw)){bC.resolveWith(bC,bx)}}}function bz(bF){return function(bG){bB[bF]=arguments.length>1?aJ.call(arguments,0):bG;bC.notifyWith(bE,bB)}}if(e>1){for(;bv
a";bI=bv.getElementsByTagName("*");bF=bv.getElementsByTagName("a")[0];if(!bI||!bI.length||!bF){return{}}bG=av.createElement("select");bx=bG.appendChild(av.createElement("option"));bE=bv.getElementsByTagName("input")[0];bJ={leadingWhitespace:(bv.firstChild.nodeType===3),tbody:!bv.getElementsByTagName("tbody").length,htmlSerialize:!!bv.getElementsByTagName("link").length,style:/top/.test(bF.getAttribute("style")),hrefNormalized:(bF.getAttribute("href")==="/a"),opacity:/^0.55/.test(bF.style.opacity),cssFloat:!!bF.style.cssFloat,checkOn:(bE.value==="on"),optSelected:bx.selected,getSetAttribute:bv.className!=="t",enctype:!!av.createElement("form").enctype,html5Clone:av.createElement("nav").cloneNode(true).outerHTML!=="<:nav>",submitBubbles:true,changeBubbles:true,focusinBubbles:false,deleteExpando:true,noCloneEvent:true,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableMarginRight:true};bE.checked=true;bJ.noCloneChecked=bE.cloneNode(true).checked;bG.disabled=true;bJ.optDisabled=!bx.disabled;try{delete bv.test}catch(bC){bJ.deleteExpando=false}if(!bv.addEventListener&&bv.attachEvent&&bv.fireEvent){bv.attachEvent("onclick",function(){bJ.noCloneEvent=false});bv.cloneNode(true).fireEvent("onclick")}bE=av.createElement("input");bE.value="t";bE.setAttribute("type","radio");bJ.radioValue=bE.value==="t";bE.setAttribute("checked","checked");bv.appendChild(bE);bD=av.createDocumentFragment();bD.appendChild(bv.lastChild);bJ.checkClone=bD.cloneNode(true).cloneNode(true).lastChild.checked;bJ.appendChecked=bE.checked;bD.removeChild(bE);bD.appendChild(bv);bv.innerHTML="";if(bb.getComputedStyle){bA=av.createElement("div");bA.style.width="0";bA.style.marginRight="0";bv.style.width="2px";bv.appendChild(bA);bJ.reliableMarginRight=(parseInt((bb.getComputedStyle(bA,null)||{marginRight:0}).marginRight,10)||0)===0}if(bv.attachEvent){for(by in {submit:1,change:1,focusin:1}){bB="on"+by;bw=(bB in bv);if(!bw){bv.setAttribute(bB,"return;");bw=(typeof bv[bB]==="function")}bJ[by+"Bubbles"]=bw}}bD.removeChild(bv);bD=bG=bx=bA=bv=bE=null;b(function(){var bM,bU,bV,bT,bN,bO,bL,bS,bR,e,bP,bQ=av.getElementsByTagName("body")[0];if(!bQ){return}bL=1;bS="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;";bR="visibility:hidden;border:0;";e="style='"+bS+"border:5px solid #000;padding:0;'";bP="
";bM=av.createElement("div");bM.style.cssText=bR+"width:0;height:0;position:static;top:0;margin-top:"+bL+"px";bQ.insertBefore(bM,bQ.firstChild);bv=av.createElement("div");bM.appendChild(bv);bv.innerHTML="
t
";bz=bv.getElementsByTagName("td");bw=(bz[0].offsetHeight===0);bz[0].style.display="";bz[1].style.display="none";bJ.reliableHiddenOffsets=bw&&(bz[0].offsetHeight===0);bv.innerHTML="";bv.style.width=bv.style.paddingLeft="1px";b.boxModel=bJ.boxModel=bv.offsetWidth===2;if(typeof bv.style.zoom!=="undefined"){bv.style.display="inline";bv.style.zoom=1;bJ.inlineBlockNeedsLayout=(bv.offsetWidth===2);bv.style.display="";bv.innerHTML="
";bJ.shrinkWrapBlocks=(bv.offsetWidth!==2)}bv.style.cssText=bS+bR;bv.innerHTML=bP;bU=bv.firstChild;bV=bU.firstChild;bN=bU.nextSibling.firstChild.firstChild;bO={doesNotAddBorder:(bV.offsetTop!==5),doesAddBorderForTableAndCells:(bN.offsetTop===5)};bV.style.position="fixed";bV.style.top="20px";bO.fixedPosition=(bV.offsetTop===20||bV.offsetTop===15);bV.style.position=bV.style.top="";bU.style.overflow="hidden";bU.style.position="relative";bO.subtractsBorderForOverflowNotVisible=(bV.offsetTop===-5);bO.doesNotIncludeMarginInBodyOffset=(bQ.offsetTop!==bL);bQ.removeChild(bM);bv=bM=null;b.extend(bJ,bO)});return bJ})();var aS=/^(?:\{.*\}|\[.*\])$/,aA=/([A-Z])/g;b.extend({cache:{},uuid:0,expando:"jQuery"+(b.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},hasData:function(e){e=e.nodeType?b.cache[e[b.expando]]:e[b.expando];return !!e&&!S(e)},data:function(bx,bv,bz,by){if(!b.acceptData(bx)){return}var bG,bA,bD,bE=b.expando,bC=typeof bv==="string",bF=bx.nodeType,e=bF?b.cache:bx,bw=bF?bx[bE]:bx[bE]&&bE,bB=bv==="events";if((!bw||!e[bw]||(!bB&&!by&&!e[bw].data))&&bC&&bz===L){return}if(!bw){if(bF){bx[bE]=bw=++b.uuid}else{bw=bE}}if(!e[bw]){e[bw]={};if(!bF){e[bw].toJSON=b.noop}}if(typeof bv==="object"||typeof bv==="function"){if(by){e[bw]=b.extend(e[bw],bv)}else{e[bw].data=b.extend(e[bw].data,bv)}}bG=bA=e[bw];if(!by){if(!bA.data){bA.data={}}bA=bA.data}if(bz!==L){bA[b.camelCase(bv)]=bz}if(bB&&!bA[bv]){return bG.events}if(bC){bD=bA[bv];if(bD==null){bD=bA[b.camelCase(bv)]}}else{bD=bA}return bD},removeData:function(bx,bv,by){if(!b.acceptData(bx)){return}var bB,bA,bz,bC=b.expando,bD=bx.nodeType,e=bD?b.cache:bx,bw=bD?bx[bC]:bC;if(!e[bw]){return}if(bv){bB=by?e[bw]:e[bw].data;if(bB){if(!b.isArray(bv)){if(bv in bB){bv=[bv]}else{bv=b.camelCase(bv);if(bv in bB){bv=[bv]}else{bv=bv.split(" ")}}}for(bA=0,bz=bv.length;bA-1){return true}}return false},val:function(bx){var e,bv,by,bw=this[0];if(!arguments.length){if(bw){e=b.valHooks[bw.nodeName.toLowerCase()]||b.valHooks[bw.type];if(e&&"get" in e&&(bv=e.get(bw,"value"))!==L){return bv}bv=bw.value;return typeof bv==="string"?bv.replace(aU,""):bv==null?"":bv}return}by=b.isFunction(bx);return this.each(function(bA){var bz=b(this),bB;if(this.nodeType!==1){return}if(by){bB=bx.call(this,bA,bz.val())}else{bB=bx}if(bB==null){bB=""}else{if(typeof bB==="number"){bB+=""}else{if(b.isArray(bB)){bB=b.map(bB,function(bC){return bC==null?"":bC+""})}}}e=b.valHooks[this.nodeName.toLowerCase()]||b.valHooks[this.type];if(!e||!("set" in e)||e.set(this,bB,"value")===L){this.value=bB}})}});b.extend({valHooks:{option:{get:function(e){var bv=e.attributes.value;return !bv||bv.specified?e.value:e.text}},select:{get:function(e){var bA,bv,bz,bx,by=e.selectedIndex,bB=[],bC=e.options,bw=e.type==="select-one";if(by<0){return null}bv=bw?by:0;bz=bw?by+1:bC.length;for(;bv=0});if(!e.length){bv.selectedIndex=-1}return e}}},attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(bA,bx,bB,bz){var bw,e,by,bv=bA.nodeType;if(!bA||bv===3||bv===8||bv===2){return}if(bz&&bx in b.attrFn){return b(bA)[bx](bB)}if(typeof bA.getAttribute==="undefined"){return b.prop(bA,bx,bB)}by=bv!==1||!b.isXMLDoc(bA);if(by){bx=bx.toLowerCase();e=b.attrHooks[bx]||(ao.test(bx)?aY:be)}if(bB!==L){if(bB===null){b.removeAttr(bA,bx);return}else{if(e&&"set" in e&&by&&(bw=e.set(bA,bB,bx))!==L){return bw}else{bA.setAttribute(bx,""+bB);return bB}}}else{if(e&&"get" in e&&by&&(bw=e.get(bA,bx))!==null){return bw}else{bw=bA.getAttribute(bx);return bw===null?L:bw}}},removeAttr:function(bx,bz){var by,bA,bv,e,bw=0;if(bz&&bx.nodeType===1){bA=bz.toLowerCase().split(af);e=bA.length;for(;bw=0)}}})});var bd=/^(?:textarea|input|select)$/i,n=/^([^\.]*)?(?:\.(.+))?$/,J=/\bhover(\.\S+)?\b/,aO=/^key/,bf=/^(?:mouse|contextmenu)|click/,T=/^(?:focusinfocus|focusoutblur)$/,U=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,Y=function(e){var bv=U.exec(e);if(bv){bv[1]=(bv[1]||"").toLowerCase();bv[3]=bv[3]&&new RegExp("(?:^|\\s)"+bv[3]+"(?:\\s|$)")}return bv},j=function(bw,e){var bv=bw.attributes||{};return((!e[1]||bw.nodeName.toLowerCase()===e[1])&&(!e[2]||(bv.id||{}).value===e[2])&&(!e[3]||e[3].test((bv["class"]||{}).value)))},bt=function(e){return b.event.special.hover?e:e.replace(J,"mouseenter$1 mouseleave$1")};b.event={add:function(bx,bC,bJ,bA,by){var bD,bB,bK,bI,bH,bF,e,bG,bv,bz,bw,bE;if(bx.nodeType===3||bx.nodeType===8||!bC||!bJ||!(bD=b._data(bx))){return}if(bJ.handler){bv=bJ;bJ=bv.handler}if(!bJ.guid){bJ.guid=b.guid++}bK=bD.events;if(!bK){bD.events=bK={}}bB=bD.handle;if(!bB){bD.handle=bB=function(bL){return typeof b!=="undefined"&&(!bL||b.event.triggered!==bL.type)?b.event.dispatch.apply(bB.elem,arguments):L};bB.elem=bx}bC=b.trim(bt(bC)).split(" ");for(bI=0;bI=0){bG=bG.slice(0,-1);bw=true}if(bG.indexOf(".")>=0){bx=bG.split(".");bG=bx.shift();bx.sort()}if((!bA||b.event.customEvent[bG])&&!b.event.global[bG]){return}bv=typeof bv==="object"?bv[b.expando]?bv:new b.Event(bG,bv):new b.Event(bG);bv.type=bG;bv.isTrigger=true;bv.exclusive=bw;bv.namespace=bx.join(".");bv.namespace_re=bv.namespace?new RegExp("(^|\\.)"+bx.join("\\.(?:.*\\.)?")+"(\\.|$)"):null;by=bG.indexOf(":")<0?"on"+bG:"";if(!bA){e=b.cache;for(bC in e){if(e[bC].events&&e[bC].events[bG]){b.event.trigger(bv,bD,e[bC].handle.elem,true)}}return}bv.result=L;if(!bv.target){bv.target=bA}bD=bD!=null?b.makeArray(bD):[];bD.unshift(bv);bF=b.event.special[bG]||{};if(bF.trigger&&bF.trigger.apply(bA,bD)===false){return}bB=[[bA,bF.bindType||bG]];if(!bJ&&!bF.noBubble&&!b.isWindow(bA)){bI=bF.delegateType||bG;bH=T.test(bI+bG)?bA:bA.parentNode;bz=null;for(;bH;bH=bH.parentNode){bB.push([bH,bI]);bz=bH}if(bz&&bz===bA.ownerDocument){bB.push([bz.defaultView||bz.parentWindow||bb,bI])}}for(bC=0;bCbA){bH.push({elem:this,matches:bz.slice(bA)})}for(bC=0;bC0?this.on(e,null,bx,bw):this.trigger(e)};if(b.attrFn){b.attrFn[e]=true}if(aO.test(e)){b.event.fixHooks[e]=b.event.keyHooks}if(bf.test(e)){b.event.fixHooks[e]=b.event.mouseHooks}}); +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){var bH=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,bC="sizcache"+(Math.random()+"").replace(".",""),bI=0,bL=Object.prototype.toString,bB=false,bA=true,bK=/\\/g,bO=/\r\n/g,bQ=/\W/;[0,0].sort(function(){bA=false;return 0});var by=function(bV,e,bY,bZ){bY=bY||[];e=e||av;var b1=e;if(e.nodeType!==1&&e.nodeType!==9){return[]}if(!bV||typeof bV!=="string"){return bY}var bS,b3,b6,bR,b2,b5,b4,bX,bU=true,bT=by.isXML(e),bW=[],b0=bV;do{bH.exec("");bS=bH.exec(b0);if(bS){b0=bS[3];bW.push(bS[1]);if(bS[2]){bR=bS[3];break}}}while(bS);if(bW.length>1&&bD.exec(bV)){if(bW.length===2&&bE.relative[bW[0]]){b3=bM(bW[0]+bW[1],e,bZ)}else{b3=bE.relative[bW[0]]?[e]:by(bW.shift(),e);while(bW.length){bV=bW.shift();if(bE.relative[bV]){bV+=bW.shift()}b3=bM(bV,b3,bZ)}}}else{if(!bZ&&bW.length>1&&e.nodeType===9&&!bT&&bE.match.ID.test(bW[0])&&!bE.match.ID.test(bW[bW.length-1])){b2=by.find(bW.shift(),e,bT);e=b2.expr?by.filter(b2.expr,b2.set)[0]:b2.set[0]}if(e){b2=bZ?{expr:bW.pop(),set:bF(bZ)}:by.find(bW.pop(),bW.length===1&&(bW[0]==="~"||bW[0]==="+")&&e.parentNode?e.parentNode:e,bT);b3=b2.expr?by.filter(b2.expr,b2.set):b2.set;if(bW.length>0){b6=bF(b3)}else{bU=false}while(bW.length){b5=bW.pop();b4=b5;if(!bE.relative[b5]){b5=""}else{b4=bW.pop()}if(b4==null){b4=e}bE.relative[b5](b6,b4,bT)}}else{b6=bW=[]}}if(!b6){b6=b3}if(!b6){by.error(b5||bV)}if(bL.call(b6)==="[object Array]"){if(!bU){bY.push.apply(bY,b6)}else{if(e&&e.nodeType===1){for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&(b6[bX]===true||b6[bX].nodeType===1&&by.contains(e,b6[bX]))){bY.push(b3[bX])}}}else{for(bX=0;b6[bX]!=null;bX++){if(b6[bX]&&b6[bX].nodeType===1){bY.push(b3[bX])}}}}}else{bF(b6,bY)}if(bR){by(bR,b1,bY,bZ);by.uniqueSort(bY)}return bY};by.uniqueSort=function(bR){if(bJ){bB=bA;bR.sort(bJ);if(bB){for(var e=1;e0};by.find=function(bX,e,bY){var bW,bS,bU,bT,bV,bR;if(!bX){return[]}for(bS=0,bU=bE.order.length;bS":function(bW,bR){var bV,bU=typeof bR==="string",bS=0,e=bW.length;if(bU&&!bQ.test(bR)){bR=bR.toLowerCase();for(;bS=0)){if(!bS){e.push(bV)}}else{if(bS){bR[bU]=false}}}}return false},ID:function(e){return e[1].replace(bK,"")},TAG:function(bR,e){return bR[1].replace(bK,"").toLowerCase()},CHILD:function(e){if(e[1]==="nth"){if(!e[2]){by.error(e[0])}e[2]=e[2].replace(/^\+|\s*/g,"");var bR=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(e[2]==="even"&&"2n"||e[2]==="odd"&&"2n+1"||!/\D/.test(e[2])&&"0n+"+e[2]||e[2]);e[2]=(bR[1]+(bR[2]||1))-0;e[3]=bR[3]-0}else{if(e[2]){by.error(e[0])}}e[0]=bI++;return e},ATTR:function(bU,bR,bS,e,bV,bW){var bT=bU[1]=bU[1].replace(bK,"");if(!bW&&bE.attrMap[bT]){bU[1]=bE.attrMap[bT]}bU[4]=(bU[4]||bU[5]||"").replace(bK,"");if(bU[2]==="~="){bU[4]=" "+bU[4]+" "}return bU},PSEUDO:function(bU,bR,bS,e,bV){if(bU[1]==="not"){if((bH.exec(bU[3])||"").length>1||/^\w/.test(bU[3])){bU[3]=by(bU[3],null,null,bR)}else{var bT=by.filter(bU[3],bR,bS,true^bV);if(!bS){e.push.apply(e,bT)}return false}}else{if(bE.match.POS.test(bU[0])||bE.match.CHILD.test(bU[0])){return true}}return bU},POS:function(e){e.unshift(true);return e}},filters:{enabled:function(e){return e.disabled===false&&e.type!=="hidden"},disabled:function(e){return e.disabled===true},checked:function(e){return e.checked===true},selected:function(e){if(e.parentNode){e.parentNode.selectedIndex}return e.selected===true},parent:function(e){return !!e.firstChild},empty:function(e){return !e.firstChild},has:function(bS,bR,e){return !!by(e[3],bS).length},header:function(e){return(/h\d/i).test(e.nodeName)},text:function(bS){var e=bS.getAttribute("type"),bR=bS.type;return bS.nodeName.toLowerCase()==="input"&&"text"===bR&&(e===bR||e===null)},radio:function(e){return e.nodeName.toLowerCase()==="input"&&"radio"===e.type},checkbox:function(e){return e.nodeName.toLowerCase()==="input"&&"checkbox"===e.type},file:function(e){return e.nodeName.toLowerCase()==="input"&&"file"===e.type},password:function(e){return e.nodeName.toLowerCase()==="input"&&"password"===e.type},submit:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"submit"===bR.type},image:function(e){return e.nodeName.toLowerCase()==="input"&&"image"===e.type},reset:function(bR){var e=bR.nodeName.toLowerCase();return(e==="input"||e==="button")&&"reset"===bR.type},button:function(bR){var e=bR.nodeName.toLowerCase();return e==="input"&&"button"===bR.type||e==="button"},input:function(e){return(/input|select|textarea|button/i).test(e.nodeName)},focus:function(e){return e===e.ownerDocument.activeElement}},setFilters:{first:function(bR,e){return e===0},last:function(bS,bR,e,bT){return bR===bT.length-1},even:function(bR,e){return e%2===0},odd:function(bR,e){return e%2===1},lt:function(bS,bR,e){return bRe[3]-0},nth:function(bS,bR,e){return e[3]-0===bR},eq:function(bS,bR,e){return e[3]-0===bR}},filter:{PSEUDO:function(bS,bX,bW,bY){var e=bX[1],bR=bE.filters[e];if(bR){return bR(bS,bW,bX,bY)}else{if(e==="contains"){return(bS.textContent||bS.innerText||bw([bS])||"").indexOf(bX[3])>=0}else{if(e==="not"){var bT=bX[3];for(var bV=0,bU=bT.length;bV=0)}}},ID:function(bR,e){return bR.nodeType===1&&bR.getAttribute("id")===e},TAG:function(bR,e){return(e==="*"&&bR.nodeType===1)||!!bR.nodeName&&bR.nodeName.toLowerCase()===e},CLASS:function(bR,e){return(" "+(bR.className||bR.getAttribute("class"))+" ").indexOf(e)>-1},ATTR:function(bV,bT){var bS=bT[1],e=by.attr?by.attr(bV,bS):bE.attrHandle[bS]?bE.attrHandle[bS](bV):bV[bS]!=null?bV[bS]:bV.getAttribute(bS),bW=e+"",bU=bT[2],bR=bT[4];return e==null?bU==="!=":!bU&&by.attr?e!=null:bU==="="?bW===bR:bU==="*="?bW.indexOf(bR)>=0:bU==="~="?(" "+bW+" ").indexOf(bR)>=0:!bR?bW&&e!==false:bU==="!="?bW!==bR:bU==="^="?bW.indexOf(bR)===0:bU==="$="?bW.substr(bW.length-bR.length)===bR:bU==="|="?bW===bR||bW.substr(0,bR.length+1)===bR+"-":false},POS:function(bU,bR,bS,bV){var e=bR[2],bT=bE.setFilters[e];if(bT){return bT(bU,bS,bR,bV)}}}};var bD=bE.match.POS,bx=function(bR,e){return"\\"+(e-0+1)};for(var bz in bE.match){bE.match[bz]=new RegExp(bE.match[bz].source+(/(?![^\[]*\])(?![^\(]*\))/.source));bE.leftMatch[bz]=new RegExp(/(^(?:.|\r|\n)*?)/.source+bE.match[bz].source.replace(/\\(\d+)/g,bx))}var bF=function(bR,e){bR=Array.prototype.slice.call(bR,0);if(e){e.push.apply(e,bR);return e}return bR};try{Array.prototype.slice.call(av.documentElement.childNodes,0)[0].nodeType}catch(bP){bF=function(bU,bT){var bS=0,bR=bT||[];if(bL.call(bU)==="[object Array]"){Array.prototype.push.apply(bR,bU)}else{if(typeof bU.length==="number"){for(var e=bU.length;bS";e.insertBefore(bR,e.firstChild);if(av.getElementById(bS)){bE.find.ID=function(bU,bV,bW){if(typeof bV.getElementById!=="undefined"&&!bW){var bT=bV.getElementById(bU[1]);return bT?bT.id===bU[1]||typeof bT.getAttributeNode!=="undefined"&&bT.getAttributeNode("id").nodeValue===bU[1]?[bT]:L:[]}};bE.filter.ID=function(bV,bT){var bU=typeof bV.getAttributeNode!=="undefined"&&bV.getAttributeNode("id");return bV.nodeType===1&&bU&&bU.nodeValue===bT}}e.removeChild(bR);e=bR=null})();(function(){var e=av.createElement("div");e.appendChild(av.createComment(""));if(e.getElementsByTagName("*").length>0){bE.find.TAG=function(bR,bV){var bU=bV.getElementsByTagName(bR[1]);if(bR[1]==="*"){var bT=[];for(var bS=0;bU[bS];bS++){if(bU[bS].nodeType===1){bT.push(bU[bS])}}bU=bT}return bU}}e.innerHTML="";if(e.firstChild&&typeof e.firstChild.getAttribute!=="undefined"&&e.firstChild.getAttribute("href")!=="#"){bE.attrHandle.href=function(bR){return bR.getAttribute("href",2)}}e=null})();if(av.querySelectorAll){(function(){var e=by,bT=av.createElement("div"),bS="__sizzle__";bT.innerHTML="

";if(bT.querySelectorAll&&bT.querySelectorAll(".TEST").length===0){return}by=function(b4,bV,bZ,b3){bV=bV||av;if(!b3&&!by.isXML(bV)){var b2=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b4);if(b2&&(bV.nodeType===1||bV.nodeType===9)){if(b2[1]){return bF(bV.getElementsByTagName(b4),bZ)}else{if(b2[2]&&bE.find.CLASS&&bV.getElementsByClassName){return bF(bV.getElementsByClassName(b2[2]),bZ)}}}if(bV.nodeType===9){if(b4==="body"&&bV.body){return bF([bV.body],bZ)}else{if(b2&&b2[3]){var bY=bV.getElementById(b2[3]);if(bY&&bY.parentNode){if(bY.id===b2[3]){return bF([bY],bZ)}}else{return bF([],bZ)}}}try{return bF(bV.querySelectorAll(b4),bZ)}catch(b0){}}else{if(bV.nodeType===1&&bV.nodeName.toLowerCase()!=="object"){var bW=bV,bX=bV.getAttribute("id"),bU=bX||bS,b6=bV.parentNode,b5=/^\s*[+~]/.test(b4);if(!bX){bV.setAttribute("id",bU)}else{bU=bU.replace(/'/g,"\\$&")}if(b5&&b6){bV=bV.parentNode}try{if(!b5||b6){return bF(bV.querySelectorAll("[id='"+bU+"'] "+b4),bZ)}}catch(b1){}finally{if(!bX){bW.removeAttribute("id")}}}}}return e(b4,bV,bZ,b3)};for(var bR in e){by[bR]=e[bR]}bT=null})()}(function(){var e=av.documentElement,bS=e.matchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.msMatchesSelector;if(bS){var bU=!bS.call(av.createElement("div"),"div"),bR=false;try{bS.call(av.documentElement,"[test!='']:sizzle")}catch(bT){bR=true}by.matchesSelector=function(bW,bY){bY=bY.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!by.isXML(bW)){try{if(bR||!bE.match.PSEUDO.test(bY)&&!/!=/.test(bY)){var bV=bS.call(bW,bY);if(bV||!bU||bW.document&&bW.document.nodeType!==11){return bV}}}catch(bX){}}return by(bY,null,null,[bW]).length>0}}})();(function(){var e=av.createElement("div");e.innerHTML="
";if(!e.getElementsByClassName||e.getElementsByClassName("e").length===0){return}e.lastChild.className="e";if(e.getElementsByClassName("e").length===1){return}bE.order.splice(1,0,"CLASS");bE.find.CLASS=function(bR,bS,bT){if(typeof bS.getElementsByClassName!=="undefined"&&!bT){return bS.getElementsByClassName(bR[1])}};e=null})();function bv(bR,bW,bV,bZ,bX,bY){for(var bT=0,bS=bZ.length;bT0){bU=e;break}}}e=e[bR]}bZ[bT]=bU}}}if(av.documentElement.contains){by.contains=function(bR,e){return bR!==e&&(bR.contains?bR.contains(e):true)}}else{if(av.documentElement.compareDocumentPosition){by.contains=function(bR,e){return !!(bR.compareDocumentPosition(e)&16)}}else{by.contains=function(){return false}}}by.isXML=function(e){var bR=(e?e.ownerDocument||e:0).documentElement;return bR?bR.nodeName!=="HTML":false};var bM=function(bS,e,bW){var bV,bX=[],bU="",bY=e.nodeType?[e]:e;while((bV=bE.match.PSEUDO.exec(bS))){bU+=bV[0];bS=bS.replace(bE.match.PSEUDO,"")}bS=bE.relative[bS]?bS+"*":bS;for(var bT=0,bR=bY.length;bT0){for(bB=bA;bB=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(by,bx){var bv=[],bw,e,bz=this[0];if(b.isArray(by)){var bB=1;while(bz&&bz.ownerDocument&&bz!==bx){for(bw=0;bw-1:b.find.matchesSelector(bz,by)){bv.push(bz);break}else{bz=bz.parentNode;if(!bz||!bz.ownerDocument||bz===bx||bz.nodeType===11){break}}}}bv=bv.length>1?b.unique(bv):bv;return this.pushStack(bv,"closest",by)},index:function(e){if(!e){return(this[0]&&this[0].parentNode)?this.prevAll().length:-1}if(typeof e==="string"){return b.inArray(this[0],b(e))}return b.inArray(e.jquery?e[0]:e,this)},add:function(e,bv){var bx=typeof e==="string"?b(e,bv):b.makeArray(e&&e.nodeType?[e]:e),bw=b.merge(this.get(),bx);return this.pushStack(C(bx[0])||C(bw[0])?bw:b.unique(bw))},andSelf:function(){return this.add(this.prevObject)}});function C(e){return !e||!e.parentNode||e.parentNode.nodeType===11}b.each({parent:function(bv){var e=bv.parentNode;return e&&e.nodeType!==11?e:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(bv,e,bw){return b.dir(bv,"parentNode",bw)},next:function(e){return b.nth(e,2,"nextSibling")},prev:function(e){return b.nth(e,2,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(bv,e,bw){return b.dir(bv,"nextSibling",bw)},prevUntil:function(bv,e,bw){return b.dir(bv,"previousSibling",bw)},siblings:function(e){return b.sibling(e.parentNode.firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.makeArray(e.childNodes)}},function(e,bv){b.fn[e]=function(by,bw){var bx=b.map(this,bv,by);if(!ab.test(e)){bw=by}if(bw&&typeof bw==="string"){bx=b.filter(bw,bx)}bx=this.length>1&&!ay[e]?b.unique(bx):bx;if((this.length>1||a9.test(bw))&&aq.test(e)){bx=bx.reverse()}return this.pushStack(bx,e,P.call(arguments).join(","))}});b.extend({filter:function(bw,e,bv){if(bv){bw=":not("+bw+")"}return e.length===1?b.find.matchesSelector(e[0],bw)?[e[0]]:[]:b.find.matches(bw,e)},dir:function(bw,bv,by){var e=[],bx=bw[bv];while(bx&&bx.nodeType!==9&&(by===L||bx.nodeType!==1||!b(bx).is(by))){if(bx.nodeType===1){e.push(bx)}bx=bx[bv]}return e},nth:function(by,e,bw,bx){e=e||1;var bv=0;for(;by;by=by[bw]){if(by.nodeType===1&&++bv===e){break}}return by},sibling:function(bw,bv){var e=[];for(;bw;bw=bw.nextSibling){if(bw.nodeType===1&&bw!==bv){e.push(bw)}}return e}});function aG(bx,bw,e){bw=bw||0;if(b.isFunction(bw)){return b.grep(bx,function(bz,by){var bA=!!bw.call(bz,by,bz);return bA===e})}else{if(bw.nodeType){return b.grep(bx,function(bz,by){return(bz===bw)===e})}else{if(typeof bw==="string"){var bv=b.grep(bx,function(by){return by.nodeType===1});if(bp.test(bw)){return b.filter(bw,bv,!e)}else{bw=b.filter(bw,bv)}}}}return b.grep(bx,function(bz,by){return(b.inArray(bz,bw)>=0)===e})}function a(e){var bw=aR.split("|"),bv=e.createDocumentFragment();if(bv.createElement){while(bw.length){bv.createElement(bw.pop())}}return bv}var aR="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ag=/ jQuery\d+="(?:\d+|null)"/g,ar=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,d=/<([\w:]+)/,w=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},ac=a(av);ax.optgroup=ax.option;ax.tbody=ax.tfoot=ax.colgroup=ax.caption=ax.thead;ax.th=ax.td;if(!b.support.htmlSerialize){ax._default=[1,"div
","
"]}b.fn.extend({text:function(e){if(b.isFunction(e)){return this.each(function(bw){var bv=b(this);bv.text(e.call(this,bw,bv.text()))})}if(typeof e!=="object"&&e!==L){return this.empty().append((this[0]&&this[0].ownerDocument||av).createTextNode(e))}return b.text(this)},wrapAll:function(e){if(b.isFunction(e)){return this.each(function(bw){b(this).wrapAll(e.call(this,bw))})}if(this[0]){var bv=b(e,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){bv.insertBefore(this[0])}bv.map(function(){var bw=this;while(bw.firstChild&&bw.firstChild.nodeType===1){bw=bw.firstChild}return bw}).append(this)}return this},wrapInner:function(e){if(b.isFunction(e)){return this.each(function(bv){b(this).wrapInner(e.call(this,bv))})}return this.each(function(){var bv=b(this),bw=bv.contents();if(bw.length){bw.wrapAll(e)}else{bv.append(e)}})},wrap:function(e){var bv=b.isFunction(e);return this.each(function(bw){b(this).wrapAll(bv?e.call(this,bw):e)})},unwrap:function(){return this.parent().each(function(){if(!b.nodeName(this,"body")){b(this).replaceWith(this.childNodes)}}).end()},append:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.appendChild(e)}})},prepend:function(){return this.domManip(arguments,true,function(e){if(this.nodeType===1){this.insertBefore(e,this.firstChild)}})},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this)})}else{if(arguments.length){var e=b.clean(arguments);e.push.apply(e,this.toArray());return this.pushStack(e,"before",arguments)}}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(bv){this.parentNode.insertBefore(bv,this.nextSibling)})}else{if(arguments.length){var e=this.pushStack(this,"after",arguments);e.push.apply(e,b.clean(arguments));return e}}},remove:function(e,bx){for(var bv=0,bw;(bw=this[bv])!=null;bv++){if(!e||b.filter(e,[bw]).length){if(!bx&&bw.nodeType===1){b.cleanData(bw.getElementsByTagName("*"));b.cleanData([bw])}if(bw.parentNode){bw.parentNode.removeChild(bw)}}}return this},empty:function(){for(var e=0,bv;(bv=this[e])!=null;e++){if(bv.nodeType===1){b.cleanData(bv.getElementsByTagName("*"))}while(bv.firstChild){bv.removeChild(bv.firstChild)}}return this},clone:function(bv,e){bv=bv==null?false:bv;e=e==null?bv:e;return this.map(function(){return b.clone(this,bv,e)})},html:function(bx){if(bx===L){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(ag,""):null}else{if(typeof bx==="string"&&!ae.test(bx)&&(b.support.leadingWhitespace||!ar.test(bx))&&!ax[(d.exec(bx)||["",""])[1].toLowerCase()]){bx=bx.replace(R,"<$1>");try{for(var bw=0,bv=this.length;bw1&&bw0?this.clone(true):this).get();b(bC[bA])[bv](by);bz=bz.concat(by)}return this.pushStack(bz,e,bC.selector)}}});function bg(e){if(typeof e.getElementsByTagName!=="undefined"){return e.getElementsByTagName("*")}else{if(typeof e.querySelectorAll!=="undefined"){return e.querySelectorAll("*")}else{return[]}}}function az(e){if(e.type==="checkbox"||e.type==="radio"){e.defaultChecked=e.checked}}function E(e){var bv=(e.nodeName||"").toLowerCase();if(bv==="input"){az(e)}else{if(bv!=="script"&&typeof e.getElementsByTagName!=="undefined"){b.grep(e.getElementsByTagName("input"),az)}}}function al(e){var bv=av.createElement("div");ac.appendChild(bv);bv.innerHTML=e.outerHTML;return bv.firstChild}b.extend({clone:function(by,bA,bw){var e,bv,bx,bz=b.support.html5Clone||!ah.test("<"+by.nodeName)?by.cloneNode(true):al(by);if((!b.support.noCloneEvent||!b.support.noCloneChecked)&&(by.nodeType===1||by.nodeType===11)&&!b.isXMLDoc(by)){ai(by,bz);e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){if(bv[bx]){ai(e[bx],bv[bx])}}}if(bA){t(by,bz);if(bw){e=bg(by);bv=bg(bz);for(bx=0;e[bx];++bx){t(e[bx],bv[bx])}}}e=bv=null;return bz},clean:function(bw,by,bH,bA){var bF;by=by||av;if(typeof by.createElement==="undefined"){by=by.ownerDocument||by[0]&&by[0].ownerDocument||av}var bI=[],bB;for(var bE=0,bz;(bz=bw[bE])!=null;bE++){if(typeof bz==="number"){bz+=""}if(!bz){continue}if(typeof bz==="string"){if(!W.test(bz)){bz=by.createTextNode(bz)}else{bz=bz.replace(R,"<$1>");var bK=(d.exec(bz)||["",""])[1].toLowerCase(),bx=ax[bK]||ax._default,bD=bx[0],bv=by.createElement("div");if(by===av){ac.appendChild(bv)}else{a(by).appendChild(bv)}bv.innerHTML=bx[1]+bz+bx[2];while(bD--){bv=bv.lastChild}if(!b.support.tbody){var e=w.test(bz),bC=bK==="table"&&!e?bv.firstChild&&bv.firstChild.childNodes:bx[1]===""&&!e?bv.childNodes:[];for(bB=bC.length-1;bB>=0;--bB){if(b.nodeName(bC[bB],"tbody")&&!bC[bB].childNodes.length){bC[bB].parentNode.removeChild(bC[bB])}}}if(!b.support.leadingWhitespace&&ar.test(bz)){bv.insertBefore(by.createTextNode(ar.exec(bz)[0]),bv.firstChild)}bz=bv.childNodes}}var bG;if(!b.support.appendChecked){if(bz[0]&&typeof(bG=bz.length)==="number"){for(bB=0;bB=0){return bx+"px"}}else{return bx}}}});if(!b.support.opacity){b.cssHooks.opacity={get:function(bv,e){return au.test((e&&bv.currentStyle?bv.currentStyle.filter:bv.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":e?"1":""},set:function(by,bz){var bx=by.style,bv=by.currentStyle,e=b.isNumeric(bz)?"alpha(opacity="+bz*100+")":"",bw=bv&&bv.filter||bx.filter||"";bx.zoom=1;if(bz>=1&&b.trim(bw.replace(ak,""))===""){bx.removeAttribute("filter");if(bv&&!bv.filter){return}}bx.filter=ak.test(bw)?bw.replace(ak,e):bw+" "+e}}}b(function(){if(!b.support.reliableMarginRight){b.cssHooks.marginRight={get:function(bw,bv){var e;b.swap(bw,{display:"inline-block"},function(){if(bv){e=Z(bw,"margin-right","marginRight")}else{e=bw.style.marginRight}});return e}}}});if(av.defaultView&&av.defaultView.getComputedStyle){aI=function(by,bw){var bv,bx,e;bw=bw.replace(z,"-$1").toLowerCase();if((bx=by.ownerDocument.defaultView)&&(e=bx.getComputedStyle(by,null))){bv=e.getPropertyValue(bw);if(bv===""&&!b.contains(by.ownerDocument.documentElement,by)){bv=b.style(by,bw)}}return bv}}if(av.documentElement.currentStyle){aX=function(bz,bw){var bA,e,by,bv=bz.currentStyle&&bz.currentStyle[bw],bx=bz.style;if(bv===null&&bx&&(by=bx[bw])){bv=by}if(!bc.test(bv)&&bn.test(bv)){bA=bx.left;e=bz.runtimeStyle&&bz.runtimeStyle.left;if(e){bz.runtimeStyle.left=bz.currentStyle.left}bx.left=bw==="fontSize"?"1em":(bv||0);bv=bx.pixelLeft+"px";bx.left=bA;if(e){bz.runtimeStyle.left=e}}return bv===""?"auto":bv}}Z=aI||aX;function p(by,bw,bv){var bA=bw==="width"?by.offsetWidth:by.offsetHeight,bz=bw==="width"?an:a1,bx=0,e=bz.length;if(bA>0){if(bv!=="border"){for(;bx)<[^<]*)*<\/script>/gi,q=/^(?:select|textarea)/i,h=/\s+/,br=/([?&])_=[^&]*/,K=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,A=b.fn.load,aa={},r={},aE,s,aV=["*/"]+["*"];try{aE=bl.href}catch(aw){aE=av.createElement("a");aE.href="";aE=aE.href}s=K.exec(aE.toLowerCase())||[];function f(e){return function(by,bA){if(typeof by!=="string"){bA=by;by="*"}if(b.isFunction(bA)){var bx=by.toLowerCase().split(h),bw=0,bz=bx.length,bv,bB,bC;for(;bw=0){var e=bw.slice(by,bw.length);bw=bw.slice(0,by)}var bx="GET";if(bz){if(b.isFunction(bz)){bA=bz;bz=L}else{if(typeof bz==="object"){bz=b.param(bz,b.ajaxSettings.traditional);bx="POST"}}}var bv=this;b.ajax({url:bw,type:bx,dataType:"html",data:bz,complete:function(bC,bB,bD){bD=bC.responseText;if(bC.isResolved()){bC.done(function(bE){bD=bE});bv.html(e?b("
").append(bD.replace(a6,"")).find(e):bD)}if(bA){bv.each(bA,[bD,bB,bC])}}});return this},serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?b.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||q.test(this.nodeName)||aZ.test(this.type))}).map(function(e,bv){var bw=b(this).val();return bw==null?null:b.isArray(bw)?b.map(bw,function(by,bx){return{name:bv.name,value:by.replace(bs,"\r\n")}}):{name:bv.name,value:bw.replace(bs,"\r\n")}}).get()}});b.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,bv){b.fn[bv]=function(bw){return this.on(bv,bw)}});b.each(["get","post"],function(e,bv){b[bv]=function(bw,by,bz,bx){if(b.isFunction(by)){bx=bx||bz;bz=by;by=L}return b.ajax({type:bv,url:bw,data:by,success:bz,dataType:bx})}});b.extend({getScript:function(e,bv){return b.get(e,L,bv,"script")},getJSON:function(e,bv,bw){return b.get(e,bv,bw,"json")},ajaxSetup:function(bv,e){if(e){am(bv,b.ajaxSettings)}else{e=bv;bv=b.ajaxSettings}am(bv,e);return bv},ajaxSettings:{url:aE,isLocal:aM.test(s[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":aV},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":bb.String,"text html":true,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{context:true,url:true}},ajaxPrefilter:f(aa),ajaxTransport:f(r),ajax:function(bz,bx){if(typeof bz==="object"){bx=bz;bz=L}bx=bx||{};var bD=b.ajaxSetup({},bx),bS=bD.context||bD,bG=bS!==bD&&(bS.nodeType||bS instanceof b)?b(bS):b.event,bR=b.Deferred(),bN=b.Callbacks("once memory"),bB=bD.statusCode||{},bC,bH={},bO={},bQ,by,bL,bE,bI,bA=0,bw,bK,bJ={readyState:0,setRequestHeader:function(bT,bU){if(!bA){var e=bT.toLowerCase();bT=bO[e]=bO[e]||bT;bH[bT]=bU}return this},getAllResponseHeaders:function(){return bA===2?bQ:null},getResponseHeader:function(bT){var e;if(bA===2){if(!by){by={};while((e=aD.exec(bQ))){by[e[1].toLowerCase()]=e[2]}}e=by[bT.toLowerCase()]}return e===L?null:e},overrideMimeType:function(e){if(!bA){bD.mimeType=e}return this},abort:function(e){e=e||"abort";if(bL){bL.abort(e)}bF(0,e);return this}};function bF(bZ,bU,b0,bW){if(bA===2){return}bA=2;if(bE){clearTimeout(bE)}bL=L;bQ=bW||"";bJ.readyState=bZ>0?4:0;var bT,b4,b3,bX=bU,bY=b0?bj(bD,bJ,b0):L,bV,b2;if(bZ>=200&&bZ<300||bZ===304){if(bD.ifModified){if((bV=bJ.getResponseHeader("Last-Modified"))){b.lastModified[bC]=bV}if((b2=bJ.getResponseHeader("Etag"))){b.etag[bC]=b2}}if(bZ===304){bX="notmodified";bT=true}else{try{b4=G(bD,bY);bX="success";bT=true}catch(b1){bX="parsererror";b3=b1}}}else{b3=bX;if(!bX||bZ){bX="error";if(bZ<0){bZ=0}}}bJ.status=bZ;bJ.statusText=""+(bU||bX);if(bT){bR.resolveWith(bS,[b4,bX,bJ])}else{bR.rejectWith(bS,[bJ,bX,b3])}bJ.statusCode(bB);bB=L;if(bw){bG.trigger("ajax"+(bT?"Success":"Error"),[bJ,bD,bT?b4:b3])}bN.fireWith(bS,[bJ,bX]);if(bw){bG.trigger("ajaxComplete",[bJ,bD]);if(!(--b.active)){b.event.trigger("ajaxStop")}}}bR.promise(bJ);bJ.success=bJ.done;bJ.error=bJ.fail;bJ.complete=bN.add;bJ.statusCode=function(bT){if(bT){var e;if(bA<2){for(e in bT){bB[e]=[bB[e],bT[e]]}}else{e=bT[bJ.status];bJ.then(e,e)}}return this};bD.url=((bz||bD.url)+"").replace(bq,"").replace(c,s[1]+"//");bD.dataTypes=b.trim(bD.dataType||"*").toLowerCase().split(h);if(bD.crossDomain==null){bI=K.exec(bD.url.toLowerCase());bD.crossDomain=!!(bI&&(bI[1]!=s[1]||bI[2]!=s[2]||(bI[3]||(bI[1]==="http:"?80:443))!=(s[3]||(s[1]==="http:"?80:443))))}if(bD.data&&bD.processData&&typeof bD.data!=="string"){bD.data=b.param(bD.data,bD.traditional)}aW(aa,bD,bx,bJ);if(bA===2){return false}bw=bD.global;bD.type=bD.type.toUpperCase();bD.hasContent=!aQ.test(bD.type);if(bw&&b.active++===0){b.event.trigger("ajaxStart")}if(!bD.hasContent){if(bD.data){bD.url+=(M.test(bD.url)?"&":"?")+bD.data;delete bD.data}bC=bD.url;if(bD.cache===false){var bv=b.now(),bP=bD.url.replace(br,"$1_="+bv);bD.url=bP+((bP===bD.url)?(M.test(bD.url)?"&":"?")+"_="+bv:"")}}if(bD.data&&bD.hasContent&&bD.contentType!==false||bx.contentType){bJ.setRequestHeader("Content-Type",bD.contentType)}if(bD.ifModified){bC=bC||bD.url;if(b.lastModified[bC]){bJ.setRequestHeader("If-Modified-Since",b.lastModified[bC])}if(b.etag[bC]){bJ.setRequestHeader("If-None-Match",b.etag[bC])}}bJ.setRequestHeader("Accept",bD.dataTypes[0]&&bD.accepts[bD.dataTypes[0]]?bD.accepts[bD.dataTypes[0]]+(bD.dataTypes[0]!=="*"?", "+aV+"; q=0.01":""):bD.accepts["*"]);for(bK in bD.headers){bJ.setRequestHeader(bK,bD.headers[bK])}if(bD.beforeSend&&(bD.beforeSend.call(bS,bJ,bD)===false||bA===2)){bJ.abort();return false}for(bK in {success:1,error:1,complete:1}){bJ[bK](bD[bK])}bL=aW(r,bD,bx,bJ);if(!bL){bF(-1,"No Transport")}else{bJ.readyState=1;if(bw){bG.trigger("ajaxSend",[bJ,bD])}if(bD.async&&bD.timeout>0){bE=setTimeout(function(){bJ.abort("timeout")},bD.timeout)}try{bA=1;bL.send(bH,bF)}catch(bM){if(bA<2){bF(-1,bM)}else{throw bM}}}return bJ},param:function(e,bw){var bv=[],by=function(bz,bA){bA=b.isFunction(bA)?bA():bA;bv[bv.length]=encodeURIComponent(bz)+"="+encodeURIComponent(bA)};if(bw===L){bw=b.ajaxSettings.traditional}if(b.isArray(e)||(e.jquery&&!b.isPlainObject(e))){b.each(e,function(){by(this.name,this.value)})}else{for(var bx in e){v(bx,e[bx],bw,by)}}return bv.join("&").replace(k,"+")}});function v(bw,by,bv,bx){if(b.isArray(by)){b.each(by,function(bA,bz){if(bv||ap.test(bw)){bx(bw,bz)}else{v(bw+"["+(typeof bz==="object"||b.isArray(bz)?bA:"")+"]",bz,bv,bx)}})}else{if(!bv&&by!=null&&typeof by==="object"){for(var e in by){v(bw+"["+e+"]",by[e],bv,bx)}}else{bx(bw,by)}}}b.extend({active:0,lastModified:{},etag:{}});function bj(bD,bC,bz){var bv=bD.contents,bB=bD.dataTypes,bw=bD.responseFields,by,bA,bx,e;for(bA in bw){if(bA in bz){bC[bw[bA]]=bz[bA]}}while(bB[0]==="*"){bB.shift();if(by===L){by=bD.mimeType||bC.getResponseHeader("content-type")}}if(by){for(bA in bv){if(bv[bA]&&bv[bA].test(by)){bB.unshift(bA);break}}}if(bB[0] in bz){bx=bB[0]}else{for(bA in bz){if(!bB[0]||bD.converters[bA+" "+bB[0]]){bx=bA;break}if(!e){e=bA}}bx=bx||e}if(bx){if(bx!==bB[0]){bB.unshift(bx)}return bz[bx]}}function G(bH,bz){if(bH.dataFilter){bz=bH.dataFilter(bz,bH.dataType)}var bD=bH.dataTypes,bG={},bA,bE,bw=bD.length,bB,bC=bD[0],bx,by,bF,bv,e;for(bA=1;bA=bw.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();bw.animatedProperties[this.prop]=true;for(bA in bw.animatedProperties){if(bw.animatedProperties[bA]!==true){e=false}}if(e){if(bw.overflow!=null&&!b.support.shrinkWrapBlocks){b.each(["","X","Y"],function(bC,bD){bz.style["overflow"+bD]=bw.overflow[bC]})}if(bw.hide){b(bz).hide()}if(bw.hide||bw.show){for(bA in bw.animatedProperties){b.style(bz,bA,bw.orig[bA]);b.removeData(bz,"fxshow"+bA,true);b.removeData(bz,"toggle"+bA,true)}}bv=bw.complete;if(bv){bw.complete=false;bv.call(bz)}}return false}else{if(bw.duration==Infinity){this.now=bx}else{bB=bx-this.startTime;this.state=bB/bw.duration;this.pos=b.easing[bw.animatedProperties[this.prop]](this.state,bB,0,1,bw.duration);this.now=this.start+((this.end-this.start)*this.pos)}this.update()}return true}};b.extend(b.fx,{tick:function(){var bw,bv=b.timers,e=0;for(;e").appendTo(e),bw=bv.css("display");bv.remove();if(bw==="none"||bw===""){if(!a8){a8=av.createElement("iframe");a8.frameBorder=a8.width=a8.height=0}e.appendChild(a8);if(!m||!a8.createElement){m=(a8.contentWindow||a8.contentDocument).document;m.write((av.compatMode==="CSS1Compat"?"":"")+"");m.close()}bv=m.createElement(bx);m.body.appendChild(bv);bw=b.css(bv,"display");e.removeChild(a8)}Q[bx]=bw}return Q[bx]}var V=/^t(?:able|d|h)$/i,ad=/^(?:body|html)$/i;if("getBoundingClientRect" in av.documentElement){b.fn.offset=function(bI){var by=this[0],bB;if(bI){return this.each(function(e){b.offset.setOffset(this,bI,e)})}if(!by||!by.ownerDocument){return null}if(by===by.ownerDocument.body){return b.offset.bodyOffset(by)}try{bB=by.getBoundingClientRect()}catch(bF){}var bH=by.ownerDocument,bw=bH.documentElement;if(!bB||!b.contains(bw,by)){return bB?{top:bB.top,left:bB.left}:{top:0,left:0}}var bC=bH.body,bD=aK(bH),bA=bw.clientTop||bC.clientTop||0,bE=bw.clientLeft||bC.clientLeft||0,bv=bD.pageYOffset||b.support.boxModel&&bw.scrollTop||bC.scrollTop,bz=bD.pageXOffset||b.support.boxModel&&bw.scrollLeft||bC.scrollLeft,bG=bB.top+bv-bA,bx=bB.left+bz-bE;return{top:bG,left:bx}}}else{b.fn.offset=function(bF){var bz=this[0];if(bF){return this.each(function(bG){b.offset.setOffset(this,bF,bG)})}if(!bz||!bz.ownerDocument){return null}if(bz===bz.ownerDocument.body){return b.offset.bodyOffset(bz)}var bC,bw=bz.offsetParent,bv=bz,bE=bz.ownerDocument,bx=bE.documentElement,bA=bE.body,bB=bE.defaultView,e=bB?bB.getComputedStyle(bz,null):bz.currentStyle,bD=bz.offsetTop,by=bz.offsetLeft;while((bz=bz.parentNode)&&bz!==bA&&bz!==bx){if(b.support.fixedPosition&&e.position==="fixed"){break}bC=bB?bB.getComputedStyle(bz,null):bz.currentStyle;bD-=bz.scrollTop;by-=bz.scrollLeft;if(bz===bw){bD+=bz.offsetTop;by+=bz.offsetLeft;if(b.support.doesNotAddBorder&&!(b.support.doesAddBorderForTableAndCells&&V.test(bz.nodeName))){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}bv=bw;bw=bz.offsetParent}if(b.support.subtractsBorderForOverflowNotVisible&&bC.overflow!=="visible"){bD+=parseFloat(bC.borderTopWidth)||0;by+=parseFloat(bC.borderLeftWidth)||0}e=bC}if(e.position==="relative"||e.position==="static"){bD+=bA.offsetTop;by+=bA.offsetLeft}if(b.support.fixedPosition&&e.position==="fixed"){bD+=Math.max(bx.scrollTop,bA.scrollTop);by+=Math.max(bx.scrollLeft,bA.scrollLeft)}return{top:bD,left:by}}}b.offset={bodyOffset:function(e){var bw=e.offsetTop,bv=e.offsetLeft;if(b.support.doesNotIncludeMarginInBodyOffset){bw+=parseFloat(b.css(e,"marginTop"))||0;bv+=parseFloat(b.css(e,"marginLeft"))||0}return{top:bw,left:bv}},setOffset:function(bx,bG,bA){var bB=b.css(bx,"position");if(bB==="static"){bx.style.position="relative"}var bz=b(bx),bv=bz.offset(),e=b.css(bx,"top"),bE=b.css(bx,"left"),bF=(bB==="absolute"||bB==="fixed")&&b.inArray("auto",[e,bE])>-1,bD={},bC={},bw,by;if(bF){bC=bz.position();bw=bC.top;by=bC.left}else{bw=parseFloat(e)||0;by=parseFloat(bE)||0}if(b.isFunction(bG)){bG=bG.call(bx,bA,bv)}if(bG.top!=null){bD.top=(bG.top-bv.top)+bw}if(bG.left!=null){bD.left=(bG.left-bv.left)+by}if("using" in bG){bG.using.call(bx,bD)}else{bz.css(bD)}}};b.fn.extend({position:function(){if(!this[0]){return null}var bw=this[0],bv=this.offsetParent(),bx=this.offset(),e=ad.test(bv[0].nodeName)?{top:0,left:0}:bv.offset();bx.top-=parseFloat(b.css(bw,"marginTop"))||0;bx.left-=parseFloat(b.css(bw,"marginLeft"))||0;e.top+=parseFloat(b.css(bv[0],"borderTopWidth"))||0;e.left+=parseFloat(b.css(bv[0],"borderLeftWidth"))||0;return{top:bx.top-e.top,left:bx.left-e.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||av.body;while(e&&(!ad.test(e.nodeName)&&b.css(e,"position")==="static")){e=e.offsetParent}return e})}});b.each(["Left","Top"],function(bv,e){var bw="scroll"+e;b.fn[bw]=function(bz){var bx,by;if(bz===L){bx=this[0];if(!bx){return null}by=aK(bx);return by?("pageXOffset" in by)?by[bv?"pageYOffset":"pageXOffset"]:b.support.boxModel&&by.document.documentElement[bw]||by.document.body[bw]:bx[bw]}return this.each(function(){by=aK(this);if(by){by.scrollTo(!bv?bz:b(by).scrollLeft(),bv?bz:b(by).scrollTop())}else{this[bw]=bz}})}});function aK(e){return b.isWindow(e)?e:e.nodeType===9?e.defaultView||e.parentWindow:false}b.each(["Height","Width"],function(bv,e){var bw=e.toLowerCase();b.fn["inner"+e]=function(){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,"padding")):this[bw]():null};b.fn["outer"+e]=function(by){var bx=this[0];return bx?bx.style?parseFloat(b.css(bx,bw,by?"margin":"border")):this[bw]():null};b.fn[bw]=function(bz){var bA=this[0];if(!bA){return bz==null?null:this}if(b.isFunction(bz)){return this.each(function(bE){var bD=b(this);bD[bw](bz.call(this,bE,bD[bw]()))})}if(b.isWindow(bA)){var bB=bA.document.documentElement["client"+e],bx=bA.document.body;return bA.document.compatMode==="CSS1Compat"&&bB||bx&&bx["client"+e]||bB}else{if(bA.nodeType===9){return Math.max(bA.documentElement["client"+e],bA.body["scroll"+e],bA.documentElement["scroll"+e],bA.body["offset"+e],bA.documentElement["offset"+e])}else{if(bz===L){var bC=b.css(bA,bw),by=parseFloat(bC);return b.isNumeric(by)?by:bC}else{return this.css(bw,typeof bz==="string"?bz:bz+"px")}}}}});bb.jQuery=bb.$=b;if(typeof define==="function"&&define.amd&&define.amd.jQuery){define("jquery",[],function(){return b})}})(window);/*! + * jQuery UI 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI + */ +(function(a,d){a.ui=a.ui||{};if(a.ui.version){return}a.extend(a.ui,{version:"1.8.18",keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38,WINDOWS:91}});a.fn.extend({propAttr:a.fn.prop||a.fn.attr,_focus:a.fn.focus,focus:function(e,f){return typeof e==="number"?this.each(function(){var g=this;setTimeout(function(){a(g).focus();if(f){f.call(g)}},e)}):this._focus.apply(this,arguments)},scrollParent:function(){var e;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){e=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{e=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!e.length?a(document):e},zIndex:function(h){if(h!==d){return this.css("zIndex",h)}if(this.length){var f=a(this[0]),e,g;while(f.length&&f[0]!==document){e=f.css("position");if(e==="absolute"||e==="relative"||e==="fixed"){g=parseInt(f.css("zIndex"),10);if(!isNaN(g)&&g!==0){return g}}f=f.parent()}}return 0},disableSelection:function(){return this.bind((a.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",function(e){e.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});a.each(["Width","Height"],function(g,e){var f=e==="Width"?["Left","Right"]:["Top","Bottom"],h=e.toLowerCase(),k={innerWidth:a.fn.innerWidth,innerHeight:a.fn.innerHeight,outerWidth:a.fn.outerWidth,outerHeight:a.fn.outerHeight};function j(m,l,i,n){a.each(f,function(){l-=parseFloat(a.curCSS(m,"padding"+this,true))||0;if(i){l-=parseFloat(a.curCSS(m,"border"+this+"Width",true))||0}if(n){l-=parseFloat(a.curCSS(m,"margin"+this,true))||0}});return l}a.fn["inner"+e]=function(i){if(i===d){return k["inner"+e].call(this)}return this.each(function(){a(this).css(h,j(this,i)+"px")})};a.fn["outer"+e]=function(i,l){if(typeof i!=="number"){return k["outer"+e].call(this,i)}return this.each(function(){a(this).css(h,j(this,i,true,l)+"px")})}});function c(g,e){var j=g.nodeName.toLowerCase();if("area"===j){var i=g.parentNode,h=i.name,f;if(!g.href||!h||i.nodeName.toLowerCase()!=="map"){return false}f=a("img[usemap=#"+h+"]")[0];return !!f&&b(f)}return(/input|select|textarea|button|object/.test(j)?!g.disabled:"a"==j?g.href||e:e)&&b(g)}function b(e){return !a(e).parents().andSelf().filter(function(){return a.curCSS(this,"visibility")==="hidden"||a.expr.filters.hidden(this)}).length}a.extend(a.expr[":"],{data:function(g,f,e){return !!a.data(g,e[3])},focusable:function(e){return c(e,!isNaN(a.attr(e,"tabindex")))},tabbable:function(g){var e=a.attr(g,"tabindex"),f=isNaN(e);return(f||e>=0)&&c(g,!f)}});a(function(){var e=document.body,f=e.appendChild(f=document.createElement("div"));f.offsetHeight;a.extend(f.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});a.support.minHeight=f.offsetHeight===100;a.support.selectstart="onselectstart" in f;e.removeChild(f).style.display="none"});a.extend(a.ui,{plugin:{add:function(f,g,j){var h=a.ui[f].prototype;for(var e in j){h.plugins[e]=h.plugins[e]||[];h.plugins[e].push([g,j[e]])}},call:function(e,g,f){var j=e.plugins[g];if(!j||!e.element[0].parentNode){return}for(var h=0;h0){return true}h[e]=1;g=(h[e]>0);h[e]=0;return g},isOverAxis:function(f,e,g){return(f>e)&&(f<(e+g))},isOver:function(j,f,i,h,e,g){return a.ui.isOverAxis(j,i,e)&&a.ui.isOverAxis(f,h,g)}})})(jQuery);/*! + * jQuery UI Widget 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ +(function(b,d){if(b.cleanData){var c=b.cleanData;b.cleanData=function(f){for(var g=0,h;(h=f[g])!=null;g++){try{b(h).triggerHandler("remove")}catch(j){}}c(f)}}else{var a=b.fn.remove;b.fn.remove=function(e,f){return this.each(function(){if(!f){if(!e||b.filter(e,[this]).length){b("*",this).add([this]).each(function(){try{b(this).triggerHandler("remove")}catch(g){}})}}return a.call(b(this),e,f)})}}b.widget=function(f,h,e){var g=f.split(".")[0],j;f=f.split(".")[1];j=g+"-"+f;if(!e){e=h;h=b.Widget}b.expr[":"][j]=function(k){return !!b.data(k,f)};b[g]=b[g]||{};b[g][f]=function(k,l){if(arguments.length){this._createWidget(k,l)}};var i=new h();i.options=b.extend(true,{},i.options);b[g][f].prototype=b.extend(true,i,{namespace:g,widgetName:f,widgetEventPrefix:b[g][f].prototype.widgetEventPrefix||f,widgetBaseClass:j},e);b.widget.bridge(f,b[g][f])};b.widget.bridge=function(f,e){b.fn[f]=function(i){var g=typeof i==="string",h=Array.prototype.slice.call(arguments,1),j=this;i=!g&&h.length?b.extend.apply(null,[true,i].concat(h)):i;if(g&&i.charAt(0)==="_"){return j}if(g){this.each(function(){var k=b.data(this,f),l=k&&b.isFunction(k[i])?k[i].apply(k,h):k;if(l!==k&&l!==d){j=l;return false}})}else{this.each(function(){var k=b.data(this,f);if(k){k.option(i||{})._init()}else{b.data(this,f,new e(i,this))}})}return j}};b.Widget=function(e,f){if(arguments.length){this._createWidget(e,f)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(f,g){b.data(g,this.widgetName,this);this.element=b(g);this.options=b.extend(true,{},this.options,this._getCreateOptions(),f);var e=this;this.element.bind("remove."+this.widgetName,function(){e.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},widget:function(){return this.element},option:function(f,g){var e=f;if(arguments.length===0){return b.extend({},this.options)}if(typeof f==="string"){if(g===d){return this.options[f]}e={};e[f]=g}this._setOptions(e);return this},_setOptions:function(f){var e=this;b.each(f,function(g,h){e._setOption(g,h)});return this},_setOption:function(e,f){this.options[e]=f;if(e==="disabled"){this.widget()[f?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",f)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(e,f,g){var j,i,h=this.options[e];g=g||{};f=b.Event(f);f.type=(e===this.widgetEventPrefix?e:this.widgetEventPrefix+e).toLowerCase();f.target=this.element[0];i=f.originalEvent;if(i){for(j in i){if(!(j in f)){f[j]=i[j]}}}this.element.trigger(f,g);return !(b.isFunction(h)&&h.call(this.element[0],f,g)===false||f.isDefaultPrevented())}}})(jQuery);/*! + * jQuery UI Mouse 1.8.18 + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Mouse + * + * Depends: + * jquery.ui.widget.js + */ +(function(b,c){var a=false;b(document).mouseup(function(d){a=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var d=this;this.element.bind("mousedown."+this.widgetName,function(e){return d._mouseDown(e)}).bind("click."+this.widgetName,function(e){if(true===b.data(e.target,d.widgetName+".preventClickEvent")){b.removeData(e.target,d.widgetName+".preventClickEvent");e.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(f){if(a){return}(this._mouseStarted&&this._mouseUp(f));this._mouseDownEvent=f;var e=this,g=(f.which==1),d=(typeof this.options.cancel=="string"&&f.target.nodeName?b(f.target).closest(this.options.cancel).length:false);if(!g||d||!this._mouseCapture(f)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){e.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(f)&&this._mouseDelayMet(f)){this._mouseStarted=(this._mouseStart(f)!==false);if(!this._mouseStarted){f.preventDefault();return true}}if(true===b.data(f.target,this.widgetName+".preventClickEvent")){b.removeData(f.target,this.widgetName+".preventClickEvent")}this._mouseMoveDelegate=function(h){return e._mouseMove(h)};this._mouseUpDelegate=function(h){return e._mouseUp(h)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);f.preventDefault();a=true;return true},_mouseMove:function(d){if(b.browser.msie&&!(document.documentMode>=9)&&!d.button){return this._mouseUp(d)}if(this._mouseStarted){this._mouseDrag(d);return d.preventDefault()}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,d)!==false);(this._mouseStarted?this._mouseDrag(d):this._mouseUp(d))}return !this._mouseStarted},_mouseUp:function(d){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;if(d.target==this._mouseDownEvent.target){b.data(d.target,this.widgetName+".preventClickEvent",true)}this._mouseStop(d)}return false},_mouseDistanceMet:function(d){return(Math.max(Math.abs(this._mouseDownEvent.pageX-d.pageX),Math.abs(this._mouseDownEvent.pageY-d.pageY))>=this.options.distance)},_mouseDelayMet:function(d){return this.mouseDelayMet},_mouseStart:function(d){},_mouseDrag:function(d){},_mouseStop:function(d){},_mouseCapture:function(d){return true}})})(jQuery);(function(c,d){c.widget("ui.resizable",c.ui.mouse,{widgetEventPrefix:"resize",options:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,containment:false,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000},_create:function(){var f=this,k=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(k.aspectRatio),aspectRatio:k.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:k.helper||k.ghost||k.animate?k.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){this.element.wrap(c('
').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=k.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var l=this.handles.split(",");this.handles={};for(var g=0;g
');if(/sw|se|ne|nw/.test(j)){h.css({zIndex:++k.zIndex})}if("se"==j){h.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[j]=".ui-resizable-"+j;this.element.append(h)}}this._renderAxis=function(q){q=q||this.element;for(var n in this.handles){if(this.handles[n].constructor==String){this.handles[n]=c(this.handles[n],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var o=c(this.handles[n],this.element),p=0;p=/sw|ne|nw|se|n|s/.test(n)?o.outerHeight():o.outerWidth();var m=["padding",/ne|nw|n/.test(n)?"Top":/se|sw|s/.test(n)?"Bottom":/^e$/.test(n)?"Right":"Left"].join("");q.css(m,p);this._proportionallyResize()}if(!c(this.handles[n]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!f.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}f.axis=i&&i[1]?i[1]:"se"}});if(k.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){if(k.disabled){return}c(this).removeClass("ui-resizable-autohide");f._handles.show()},function(){if(k.disabled){return}if(!f.resizing){c(this).addClass("ui-resizable-autohide");f._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var e=function(g){c(g).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){e(this.element);var f=this.element;f.after(this.originalElement.css({position:f.css("position"),width:f.outerWidth(),height:f.outerHeight(),top:f.css("top"),left:f.css("left")})).remove()}this.originalElement.css("resize",this.originalResizeStyle);e(this.originalElement);return this},_mouseCapture:function(f){var g=false;for(var e in this.handles){if(c(this.handles[e])[0]==f.target){g=true}}return !this.options.disabled&&g},_mouseStart:function(g){var j=this.options,f=this.element.position(),e=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(e.is(".ui-draggable")||(/absolute/).test(e.css("position"))){e.css({position:"absolute",top:f.top,left:f.left})}this._renderProxy();var k=b(this.helper.css("left")),h=b(this.helper.css("top"));if(j.containment){k+=c(j.containment).scrollLeft()||0;h+=c(j.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:k,top:h};this.size=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalSize=this._helper?{width:e.outerWidth(),height:e.outerHeight()}:{width:e.width(),height:e.height()};this.originalPosition={left:k,top:h};this.sizeDiff={width:e.outerWidth()-e.width(),height:e.outerHeight()-e.height()};this.originalMousePosition={left:g.pageX,top:g.pageY};this.aspectRatio=(typeof j.aspectRatio=="number")?j.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var i=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",i=="auto"?this.axis+"-resize":i);e.addClass("ui-resizable-resizing");this._propagate("start",g);return true},_mouseDrag:function(e){var h=this.helper,g=this.options,m={},q=this,j=this.originalMousePosition,n=this.axis;var r=(e.pageX-j.left)||0,p=(e.pageY-j.top)||0;var i=this._change[n];if(!i){return false}var l=i.apply(this,[e,r,p]),k=c.browser.msie&&c.browser.version<7,f=this.sizeDiff;this._updateVirtualBoundaries(e.shiftKey);if(this._aspectRatio||e.shiftKey){l=this._updateRatio(l,e)}l=this._respectSize(l,e);this._propagate("resize",e);h.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(l);this._trigger("resize",e,this.ui());return false},_mouseStop:function(h){this.resizing=false;var i=this.options,m=this;if(this._helper){var g=this._proportionallyResizeElements,e=g.length&&(/textarea/i).test(g[0].nodeName),f=e&&c.ui.hasScroll(g[0],"left")?0:m.sizeDiff.height,k=e?0:m.sizeDiff.width;var n={width:(m.helper.width()-k),height:(m.helper.height()-f)},j=(parseInt(m.element.css("left"),10)+(m.position.left-m.originalPosition.left))||null,l=(parseInt(m.element.css("top"),10)+(m.position.top-m.originalPosition.top))||null;if(!i.animate){this.element.css(c.extend(n,{top:l,left:j}))}m.helper.height(m.size.height);m.helper.width(m.size.width);if(this._helper&&!i.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",h);if(this._helper){this.helper.remove()}return false},_updateVirtualBoundaries:function(g){var j=this.options,i,h,f,k,e;e={minWidth:a(j.minWidth)?j.minWidth:0,maxWidth:a(j.maxWidth)?j.maxWidth:Infinity,minHeight:a(j.minHeight)?j.minHeight:0,maxHeight:a(j.maxHeight)?j.maxHeight:Infinity};if(this._aspectRatio||g){i=e.minHeight*this.aspectRatio;f=e.minWidth/this.aspectRatio;h=e.maxHeight*this.aspectRatio;k=e.maxWidth/this.aspectRatio;if(i>e.minWidth){e.minWidth=i}if(f>e.minHeight){e.minHeight=f}if(hl.width),s=a(l.height)&&i.minHeight&&(i.minHeight>l.height);if(h){l.width=i.minWidth}if(s){l.height=i.minHeight}if(t){l.width=i.maxWidth}if(m){l.height=i.maxHeight}var f=this.originalPosition.left+this.originalSize.width,p=this.position.top+this.size.height;var k=/sw|nw|w/.test(q),e=/nw|ne|n/.test(q);if(h&&k){l.left=f-i.minWidth}if(t&&k){l.left=f-i.maxWidth}if(s&&e){l.top=p-i.minHeight}if(m&&e){l.top=p-i.maxHeight}var n=!l.width&&!l.height;if(n&&!l.left&&l.top){l.top=null}else{if(n&&!l.top&&l.left){l.left=null}}return l},_proportionallyResize:function(){var k=this.options;if(!this._proportionallyResizeElements.length){return}var g=this.helper||this.element;for(var f=0;f');var e=c.browser.msie&&c.browser.version<7,g=(e?1:0),h=(e?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+h,height:this.element.outerHeight()+h,position:"absolute",left:this.elementOffset.left-g+"px",top:this.elementOffset.top-g+"px",zIndex:++i.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(g,f,e){return{width:this.originalSize.width+f}},w:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{left:i.left+f,width:g.width-f}},n:function(h,f,e){var j=this.options,g=this.originalSize,i=this.originalPosition;return{top:i.top+e,height:g.height-e}},s:function(g,f,e){return{height:this.originalSize.height+e}},se:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},sw:function(g,f,e){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[g,f,e]))},ne:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[g,f,e]))},nw:function(g,f,e){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[g,f,e]))}},_propagate:function(f,e){c.ui.plugin.call(this,f,[e,this.ui()]);(f!="resize"&&this._trigger(f,e,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}});c.extend(c.ui.resizable,{version:"1.8.18"});c.ui.plugin.add("resizable","alsoResize",{start:function(f,g){var e=c(this).data("resizable"),i=e.options;var h=function(j){c(j).each(function(){var k=c(this);k.data("resizable-alsoresize",{width:parseInt(k.width(),10),height:parseInt(k.height(),10),left:parseInt(k.css("left"),10),top:parseInt(k.css("top"),10)})})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.parentNode){if(i.alsoResize.length){i.alsoResize=i.alsoResize[0];h(i.alsoResize)}else{c.each(i.alsoResize,function(j){h(j)})}}else{h(i.alsoResize)}},resize:function(g,i){var f=c(this).data("resizable"),j=f.options,h=f.originalSize,l=f.originalPosition;var k={height:(f.size.height-h.height)||0,width:(f.size.width-h.width)||0,top:(f.position.top-l.top)||0,left:(f.position.left-l.left)||0},e=function(m,n){c(m).each(function(){var q=c(this),r=c(this).data("resizable-alsoresize"),p={},o=n&&n.length?n:q.parents(i.originalElement[0]).length?["width","height"]:["width","height","top","left"];c.each(o,function(s,u){var t=(r[u]||0)+(k[u]||0);if(t&&t>=0){p[u]=t||null}});q.css(p)})};if(typeof(j.alsoResize)=="object"&&!j.alsoResize.nodeType){c.each(j.alsoResize,function(m,n){e(m,n)})}else{e(j.alsoResize)}},stop:function(e,f){c(this).removeData("resizable-alsoresize")}});c.ui.plugin.add("resizable","animate",{stop:function(i,n){var p=c(this).data("resizable"),j=p.options;var h=p._proportionallyResizeElements,e=h.length&&(/textarea/i).test(h[0].nodeName),f=e&&c.ui.hasScroll(h[0],"left")?0:p.sizeDiff.height,l=e?0:p.sizeDiff.width;var g={width:(p.size.width-l),height:(p.size.height-f)},k=(parseInt(p.element.css("left"),10)+(p.position.left-p.originalPosition.left))||null,m=(parseInt(p.element.css("top"),10)+(p.position.top-p.originalPosition.top))||null;p.element.animate(c.extend(g,m&&k?{top:m,left:k}:{}),{duration:j.animateDuration,easing:j.animateEasing,step:function(){var o={width:parseInt(p.element.css("width"),10),height:parseInt(p.element.css("height"),10),top:parseInt(p.element.css("top"),10),left:parseInt(p.element.css("left"),10)};if(h&&h.length){c(h[0]).css({width:o.width,height:o.height})}p._updateCache(o);p._propagate("resize",i)}})}});c.ui.plugin.add("resizable","containment",{start:function(f,r){var t=c(this).data("resizable"),j=t.options,l=t.element;var g=j.containment,k=(g instanceof c)?g.get(0):(/parent/.test(g))?l.parent().get(0):g;if(!k){return}t.containerElement=c(k);if(/document/.test(g)||g==document){t.containerOffset={left:0,top:0};t.containerPosition={left:0,top:0};t.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var n=c(k),i=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){i[p]=b(n.css("padding"+o))});t.containerOffset=n.offset();t.containerPosition=n.position();t.containerSize={height:(n.innerHeight()-i[3]),width:(n.innerWidth()-i[1])};var q=t.containerOffset,e=t.containerSize.height,m=t.containerSize.width,h=(c.ui.hasScroll(k,"left")?k.scrollWidth:m),s=(c.ui.hasScroll(k)?k.scrollHeight:e);t.parentData={element:k,left:q.left,top:q.top,width:h,height:s}}},resize:function(g,q){var t=c(this).data("resizable"),i=t.options,f=t.containerSize,p=t.containerOffset,m=t.size,n=t.position,r=t._aspectRatio||g.shiftKey,e={top:0,left:0},h=t.containerElement;if(h[0]!=document&&(/static/).test(h.css("position"))){e=p}if(n.left<(t._helper?p.left:0)){t.size.width=t.size.width+(t._helper?(t.position.left-p.left):(t.position.left-e.left));if(r){t.size.height=t.size.width/i.aspectRatio}t.position.left=i.helper?p.left:0}if(n.top<(t._helper?p.top:0)){t.size.height=t.size.height+(t._helper?(t.position.top-p.top):t.position.top);if(r){t.size.width=t.size.height*i.aspectRatio}t.position.top=t._helper?p.top:0}t.offset.left=t.parentData.left+t.position.left;t.offset.top=t.parentData.top+t.position.top;var l=Math.abs((t._helper?t.offset.left-e.left:(t.offset.left-e.left))+t.sizeDiff.width),s=Math.abs((t._helper?t.offset.top-e.top:(t.offset.top-p.top))+t.sizeDiff.height);var k=t.containerElement.get(0)==t.element.parent().get(0),j=/relative|absolute/.test(t.containerElement.css("position"));if(k&&j){l-=t.parentData.left}if(l+t.size.width>=t.parentData.width){t.size.width=t.parentData.width-l;if(r){t.size.height=t.size.width/t.aspectRatio}}if(s+t.size.height>=t.parentData.height){t.size.height=t.parentData.height-s;if(r){t.size.width=t.size.height*t.aspectRatio}}},stop:function(f,n){var q=c(this).data("resizable"),g=q.options,l=q.position,m=q.containerOffset,e=q.containerPosition,i=q.containerElement;var j=c(q.helper),r=j.offset(),p=j.outerWidth()-q.sizeDiff.width,k=j.outerHeight()-q.sizeDiff.height;if(q._helper&&!g.animate&&(/relative/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}if(q._helper&&!g.animate&&(/static/).test(i.css("position"))){c(this).css({left:r.left-e.left-m.left,width:p,height:k})}}});c.ui.plugin.add("resizable","ghost",{start:function(g,h){var e=c(this).data("resizable"),i=e.options,f=e.size;e.ghost=e.originalElement.clone();e.ghost.css({opacity:0.25,display:"block",position:"relative",height:f.height,width:f.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof i.ghost=="string"?i.ghost:"");e.ghost.appendTo(e.helper)},resize:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost){e.ghost.css({position:"relative",height:e.size.height,width:e.size.width})}},stop:function(f,g){var e=c(this).data("resizable"),h=e.options;if(e.ghost&&e.helper){e.helper.get(0).removeChild(e.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(e,m){var p=c(this).data("resizable"),h=p.options,k=p.size,i=p.originalSize,j=p.originalPosition,n=p.axis,l=h._aspectRatio||e.shiftKey;h.grid=typeof h.grid=="number"?[h.grid,h.grid]:h.grid;var g=Math.round((k.width-i.width)/(h.grid[0]||1))*(h.grid[0]||1),f=Math.round((k.height-i.height)/(h.grid[1]||1))*(h.grid[1]||1);if(/^(se|s|e)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f}else{if(/^(ne)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f}else{if(/^(sw)$/.test(n)){p.size.width=i.width+g;p.size.height=i.height+f;p.position.left=j.left-g}else{p.size.width=i.width+g;p.size.height=i.height+f;p.position.top=j.top-f;p.position.left=j.left-g}}}}});var b=function(e){return parseInt(e,10)||0};var a=function(e){return !isNaN(parseInt(e,10))}})(jQuery);/*! + * jQuery hashchange event - v1.3 - 7/21/2010 + * http://benalman.com/projects/jquery-hashchange-plugin/ + * + * Copyright (c) 2010 "Cowboy" Ben Alman + * Dual licensed under the MIT and GPL licenses. + * http://benalman.com/about/license/ + */ +(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('