1
0
mirror of https://github.com/mstorsjo/fdk-aac.git synced 2025-06-05 22:39:13 +02:00

fix mips build by reverting files back

- MIPS still needs the work-around

Change-Id: If68b2028bd2779ada79020bb333ec8817abe9429
This commit is contained in:
Keun young Park
2012-09-11 17:28:46 -07:00
parent 381d69840a
commit 1043598349
2 changed files with 5 additions and 31 deletions

View File

@@ -100,14 +100,8 @@ amm-info@iis.fraunhofer.de
inline INT fixmuldiv2_DD (const INT a, const INT b)
{
INT result ;
asm ("mult %1,%2;\n"
: "=hi" (result)
: "d" (a), "r" (b)
: "lo");
return result ;
return ((long long) a * b) >> 32;
}
#endif /* (__GNUC__) && defined(__mips__) */