From 36564c514c79a17233e6285cd5ace43c3730b0d1 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Wed, 11 Jul 2007 13:44:50 +0000 Subject: [PATCH] Remove MinGW lrint hack. It has been in mingw-runtime at least since version 2.4 Originally committed as revision 9594 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/internal.h | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/libavutil/internal.h b/libavutil/internal.h index ac0fcf7332..842c260028 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -270,21 +270,7 @@ if((y)<(x)){\ /* btw, rintf() is existing on fbsd too -- alex */ static av_always_inline long int lrintf(float x) { -#ifdef __MINGW32__ -# ifdef ARCH_X86_32 - int32_t i; - asm volatile( - "fistpl %0\n\t" - : "=m" (i) : "t" (x) : "st" - ); - return i; -# else - /* XXX: incorrect, but make it compile */ - return (int)(x + (x < 0 ? -0.5 : 0.5)); -# endif /* ARCH_X86_32 */ -#else return (int)(rint(x)); -#endif /* __MINGW32__ */ } #endif /* HAVE_LRINTF */