mirror of https://github.com/mstorsjo/fdk-aac.git
Only use __int64 on MSVC, not on all win32 compilers
Mingw32 doesn't define the __int64 types. This was implicitly reverted in AOSP (where this change was already merged before) by the new code drop from Fraunhofer.
This commit is contained in:
parent
961d5598d3
commit
dc0de33e86
|
@ -173,7 +173,7 @@ amm-info@iis.fraunhofer.de
|
|||
|
||||
|
||||
/* Define 64 bit base integer type. */
|
||||
#ifdef _WIN32
|
||||
#ifdef _MSC_VER
|
||||
typedef __int64 INT64;
|
||||
typedef unsigned __int64 UINT64;
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue