File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed
include/mpg123/ports/generic Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change 109109/* also gapless playback! */
110110#define GAPLESS 1
111111
112- /* new huffman decoding */
113- #define USE_NEW_HUFFTABLE 1
114-
115112/* Debugging */
116113
117114/* #define DEBUG */
118115/* #define EXTRA_DEBUG */
119116
120- /* Arch */
117+ /* CPU Features */
118+
119+ /* use floating point */
120+ #define REAL_IS_FLOAT 1
121+
122+ /* use rounding instead of trunction */
123+ #define ACCURATE_ROUNDING 1
121124
125+ /* new huffman decoding */
126+ #define USE_NEW_HUFFTABLE 1
127+
128+ /* Endian */
122129#if defined(_MSC_VER )
123130#define WORDS_LITTLEENDIAN 1
124131#elif defined(__GNUC__ ) || defined(__clang__ )
136143#endif
137144#endif
138145#endif
139- // fallback
146+ /* fallback */
140147#if !defined(WORDS_BIGENDIAN ) && !defined(WORDS_LITTLEENDIAN )
141148#if (defined(_BIG_ENDIAN ) && !defined(_LITTLE_ENDIAN )) || (defined(__BIG_ENDIAN__ ) && !defined(__LITTLE_ENDIAN__ )) || (defined(_STLP_BIG_ENDIAN ) && !defined(_STLP_LITTLE_ENDIAN ))
142149#define WORDS_BIGENDIAN 1
149156#endif
150157#endif
151158
152- /* Precision */
153-
154- /* use floating point */
155- #define REAL_IS_FLOAT 1
156-
157159/* floating point is IEEE754 */
158160#if defined(_WIN32 )
159161#define IEEE_FLOAT 1
160162#endif
161163
162- /* use rounding instead of trunction */
163- #define ACCURATE_ROUNDING 1
164-
165164/* Platform */
166165
167166/* use the unicode support within libmpg123 */
You can’t perform that action at this time.
0 commit comments