Merge pull request #36 from A-KL/aac-enable-codec-build-macos

Enable AAC decoder build on Apple/MacOS
This commit is contained in:
Phil Schatzmann
2025-10-23 00:05:32 +02:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -64,6 +64,8 @@
#
#elif defined(__GNUC__) && (defined(__powerpc__) || defined(__POWERPC__))
#
#elif defined(__GNUC__) && defined(__APPLE__)
#
#elif defined(_OPENWAVE_SIMULATOR) || defined(_OPENWAVE_ARMULATOR)
#
#elif defined(_SOLARIS) && !defined(__GNUC__)

View File

@@ -429,7 +429,7 @@ static inline Word64 MADD64(Word64 sum64, int x, int y)
/* toolchain: x86 gcc
* target architecture: x86
*/
#elif defined(__GNUC__) && (defined(__i386__) || defined(__amd64__)) || (defined (_SOLARIS) && !defined (__GNUC__) && defined(_SOLARISX86))
#elif defined(__GNUC__) && (defined(__i386__) || defined(__amd64__) || defined(__APPLE__)) || (defined (_SOLARIS) && !defined (__GNUC__) && defined(_SOLARISX86))
typedef long long Word64;