1 /* Define if you have alloca, as a function or macro. */
4 /* Define if you have <alloca.h> and it should be used (not on Ultrix). */
5 #define HAVE_ALLOCA_H 1
7 /* Define if the `long double' type works. */
8 #define HAVE_LONG_DOUBLE 1
10 /* Define to `unsigned' if <sys/types.h> doesn't define. */
13 /* Define if you have the ANSI C header files. */
14 #define STDC_HEADERS 1
16 /* Define if you can safely include both <sys/time.h> and <time.h>. */
17 #define TIME_WITH_SYS_TIME 1
19 /* Define if your processor stores words with the most significant
20 byte first (like Motorola and SPARC, unlike Intel and VAX). */
21 /* #undef WORDS_BIGENDIAN */
24 #define uint8_t unsigned char
26 #define uint16_t unsigned short
28 #define uint32_t unsigned int
30 #define uint64_t unsigned long long
31 #define ieee854_float80_t long double
32 #define ieee754_float64_t double
33 #define ieee754_float32_t float
35 /* The number of bytes in a double. */
36 #define SIZEOF_DOUBLE 8
38 /* The number of bytes in a float. */
39 #define SIZEOF_FLOAT 4
41 /* The number of bytes in a int. */
44 /* The number of bytes in a long. */
47 /* The number of bytes in a long double. */
48 /* #undef SIZEOF_LONG_DOUBLE */
50 /* The number of bytes in a long long. */
51 #define SIZEOF_LONG_LONG 8
53 /* The number of bytes in a short. */
54 #define SIZEOF_SHORT 2
56 /* The number of bytes in a unsigned int. */
57 #define SIZEOF_UNSIGNED_INT 4
59 /* The number of bytes in a unsigned long. */
60 #define SIZEOF_UNSIGNED_LONG 4
62 /* The number of bytes in a unsigned long long. */
63 #define SIZEOF_UNSIGNED_LONG_LONG 8
65 /* The number of bytes in a unsigned short. */
66 #define SIZEOF_UNSIGNED_SHORT 2
68 /* Define if you have the <errno.h> header file. */
69 #define HAVE_ERRNO_H 1
71 /* Define if you have the <fcntl.h> header file. */
72 #define HAVE_FCNTL_H 1
74 /* Define if you have the <limits.h> header file. */
75 #define HAVE_LIMITS_H 1
77 /* Define if you have the <string.h> header file. */
78 #define HAVE_STRING_H 1
80 /* Define if you have the <sys/time.h> header file. */
81 #define HAVE_SYS_TIME_H 1
83 /* Define if you have the <termcap.h> header file. */
84 #define HAVE_TERMCAP_H 1
86 /* Define if you have the <unistd.h> header file. */
87 #define HAVE_UNISTD_H 1
90 #define PACKAGE "lame"
92 /* Version number of package */
93 #define VERSION "3.91"
95 /* Define if compiler has function prototypes */
98 /* system has 80 bit floats */
99 #define HAVE_IEEE854_FLOAT80 1
101 /* requested by Frank, seems to be temporary needed for a smooth transition */
102 #define LAME_LIBRARY_BUILD 1
104 /* have working GTK */
107 /* build with layer 1 decoding */
108 #define USE_LAYER_1 1
110 /* build with layer 2 decoding */
111 #define USE_LAYER_2 1
113 /* enable VBR bitrate histogram */
117 #define HAVE_TERMCAP 1
119 /* IEEE754 compatible machine */
120 #define TAKEHIRO_IEEE754_HACK 1