Cog/Frameworks/OpenMPT.old/config.h
Christopher Snowhill 52ddc26bb9 OpenMPT Legacy: Remove modifications from library
There were some leftover modifications to the 0.5.x tree I was using,
which were supposed to be speed optimizations, but they're probably
pointless anyway. The NEON optimizations were especially pointless,
since this plugin version isn't used on any macOS version that runs on
Apple Silicon.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-02-08 00:15:49 -08:00

17 lines
275 B
C

#ifndef _LIBOPENMPT_CONFIG_H_
#define _LIBOPENMPT_CONFIG_H_
#if 0
#define MPT_WITH_MPG123 1
#define MPT_WITH_OGG 1
#define MPT_WITH_VORBIS 1
#define MPT_WITH_VORBISFILE 1
#else
#define MPT_WITH_MINIMP3 1
#define MPT_WITH_STBVORBIS 1
#endif
#define MPT_WITH_ZLIB 1
#endif