shithub: aacdec

Download patch

ref: e8061cfd442cd04fc730c832869c73d0f19a07b3
parent: 043d37b60cdded2abed7c4054f954e6f9f5cada6
author: Michał Janiszewski <janisozaur@users.noreply.github.com>
date: Wed Nov 13 19:59:19 EST 2019

Only use x86-assembly when explicitly on x86

--- a/libfaad/common.h
+++ b/libfaad/common.h
@@ -313,7 +313,7 @@
   }
 
 
-  #if defined(_WIN32) && !defined(_WIN64) && !defined(__MINGW32__)
+  #if defined(_WIN32) && defined(_M_IX86) && !defined(__MINGW32__)
     #ifndef HAVE_LRINTF
     #define HAS_LRINTF
     static INLINE int lrintf(float f)