mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
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
This commit is contained in:
parent
979c091056
commit
36564c514c
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user