[MPlayer-cvslog] r28372 - trunk/libaf/af_format.c

diego subversion at mplayerhq.hu
Mon Jan 26 10:54:14 CET 2009


Author: diego
Date: Mon Jan 26 10:54:14 2009
New Revision: 28372

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

Modified:
   trunk/libaf/af_format.c

Modified: trunk/libaf/af_format.c
==============================================================================
--- trunk/libaf/af_format.c	Mon Jan 26 10:40:04 2009	(r28371)
+++ trunk/libaf/af_format.c	Mon Jan 26 10:54:14 2009	(r28372)
@@ -25,16 +25,9 @@
 #include <string.h>
 #include <inttypes.h>
 #include <limits.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 "config.h"
 #include "af.h"
 #include "mpbswap.h"
 #include "libvo/fastmemcpy.h"



More information about the MPlayer-cvslog mailing list