diff options
author | Raghu Gandham <raghu@mips.com> | 2012-07-10 17:34:45 -0700 |
---|---|---|
committer | Raghu Gandham <raghu@mips.com> | 2012-08-09 18:57:46 -0700 |
commit | 50d9a4cb1ec671f8ca1da5ad4262fb6e77a924fd (patch) | |
tree | a4c34dfac26b7248edf356755d84cb7295cd69dc /libFDK/include/mips/fixmul_mips.h | |
parent | d2854e2ac7e7e3cbe4b3c67a2d7823a6153c2488 (diff) | |
download | ODR-AudioEnc-50d9a4cb1ec671f8ca1da5ad4262fb6e77a924fd.tar.gz ODR-AudioEnc-50d9a4cb1ec671f8ca1da5ad4262fb6e77a924fd.tar.bz2 ODR-AudioEnc-50d9a4cb1ec671f8ca1da5ad4262fb6e77a924fd.zip |
GCC 4.4 and later cannot handle h constructs. Fix to replace the assembly constructs.
Change-Id: I47509c20ee32f04ce42105563d2d4013910da531
Diffstat (limited to 'libFDK/include/mips/fixmul_mips.h')
-rw-r--r-- | libFDK/include/mips/fixmul_mips.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libFDK/include/mips/fixmul_mips.h b/libFDK/include/mips/fixmul_mips.h index 4fb72f7..0e7af0d 100644 --- a/libFDK/include/mips/fixmul_mips.h +++ b/libFDK/include/mips/fixmul_mips.h @@ -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__) */ |