#include config.h

This commit is contained in:
Josh Coalson
2002-12-04 07:07:35 +00:00
parent 4fa90599fe
commit 5e31be1500
11 changed files with 44 additions and 2 deletions

View File

@@ -21,6 +21,10 @@
#include<stdlib.h>
#include<stdio.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
const unsigned FLAC__CPUINFO_IA32_CPUID_CMOV = 0x00008000;
const unsigned FLAC__CPUINFO_IA32_CPUID_MMX = 0x00800000;
const unsigned FLAC__CPUINFO_IA32_CPUID_FXSR = 0x01000000;

View File

@@ -22,6 +22,10 @@
#include "FLAC/ordinals.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
typedef enum {
FLAC__CPUINFO_TYPE_IA32,
FLAC__CPUINFO_TYPE_UNKNOWN

View File

@@ -22,6 +22,10 @@
#include "FLAC/format.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/*
* FLAC__fixed_compute_best_predictor()
* --------------------------------------------------------------------

View File

@@ -20,9 +20,11 @@
#ifndef FLAC__PRIVATE__LPC_H
#define FLAC__PRIVATE__LPC_H
#include "FLAC/ordinals.h"
#include "FLAC/format.h"
#define FLAC__MAX_LPC_ORDER (32u)
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/*
* FLAC__lpc_compute_autocorrelation()

View File

@@ -28,6 +28,10 @@
#include "private/md5.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef FLaC__INLINE
#define FLaC__INLINE
#endif

View File

@@ -20,6 +20,10 @@
#include "private/memory.h"
#include "FLAC/assert.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
void *FLAC__memory_alloc_aligned(size_t bytes, void **aligned_address)
{
void *x;

View File

@@ -30,6 +30,10 @@
#include "private/format.h"
#include "private/lpc.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef max
#undef max
#endif

View File

@@ -35,6 +35,10 @@
#include "private/memory.h"
#include "private/stream_encoder_framing.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef min
#undef min
#endif