/* The number of bytes in a double. */ #define SIZEOF_DOUBLE 8 /* The number of bytes in a float. */ #define SIZEOF_FLOAT 4 /* The number of bytes in a int. */ #define SIZEOF_INT 4 /* The number of bytes in a long. */ #define SIZEOF_LONG 4 /* The number of bytes in a long double. */ #define SIZEOF_LONG_DOUBLE 12 /* The number of bytes in a short. */ #define SIZEOF_SHORT 2 /* The number of bytes in a unsigned int. */ #define SIZEOF_UNSIGNED_INT 4 /* The number of bytes in a unsigned long. */ #define SIZEOF_UNSIGNED_LONG 4 /* The number of bytes in a unsigned short. */ #define SIZEOF_UNSIGNED_SHORT 2 /* Define if you have the ANSI C header files. */ #define STDC_HEADERS /* Define if you have the header file. */ #define HAVE_ERRNO_H /* Define if you have the header file. */ #define HAVE_FCNTL_H /* Define if you have the header file. */ #define HAVE_LIMITS_H /* Name of package */ #define PACKAGE "lame" /* Version number of package */ #define VERSION "3.90" /* Define if compiler has function prototypes */ #define PROTOTYPES 1 /* enable VBR bitrate histogram */ #define BRHIST 1 /* IEEE754 compatible machine */ #define TAKEHIRO_IEEE754_HACK 1 /* #define HAVE_STRCHR */ #ifndef HAVE_MEMCPY #define HAVE_MEMCPY #endif #if defined(_MSC_VER) typedef __int8 int8_t; typedef __int16 int16_t; typedef __int32 int32_t; typedef __int64 int64_t; typedef unsigned __int8 uint8_t; typedef unsigned __int16 uint16_t; typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t; typedef float float32_t; typedef double float64_t; #elif defined (__GNUC__) #define uint8_t unsigned char #define uint16_t unsigned short #define uint32_t unsigned int #define uint64_t unsigned long long #endif typedef long double ieee854_float80_t; typedef double ieee754_float64_t; typedef float ieee754_float32_t; #define LAME_LIBRARY_BUILD