Drop HAVE_LRINTF check, lrintf is used without checking in other places.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28372 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-26 09:54:14 +00:00
parent 92e4d64a61
commit 65ea2d93f8
1 changed files with 1 additions and 8 deletions

View File

@ -25,16 +25,9 @@
#include <string.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include "config.h"
// Integer to float conversion through lrintf()
#if HAVE_LRINTF
#include <math.h>
long int lrintf(float);
#else
#define lrintf(x) ((int)(x))
#endif
#include "af.h"
#include "mpbswap.h"
#include "libvo/fastmemcpy.h"