summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-24 09:23:06 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-24 09:23:06 +0000
commit437895cc46d8246b197f5ff40117b20a30e3f09b (patch)
tree400ba6065e63ce1ebeedf5a6defcb729b06d307f /libvo
parentb4109f4efefd3a9e690e5b31e126c26b1495ba02 (diff)
downloadmpv-437895cc46d8246b197f5ff40117b20a30e3f09b.tar.bz2
mpv-437895cc46d8246b197f5ff40117b20a30e3f09b.tar.xz
Remove fallback round implementation that is protected by a preprocessor
directive that configure never sets or checks for. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24134 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/gtf.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libvo/gtf.c b/libvo/gtf.c
index 95ad01cd74..38b3c0ba18 100644
--- a/libvo/gtf.c
+++ b/libvo/gtf.c
@@ -25,13 +25,6 @@
static GTF_constants GTF_given_constants = { 3.0,550.0,1,8,1.8,8,40,20,128,600 };
-#ifndef HAVE_ROUND
-static double round(double v)
-{
- return floor(v + 0.5);
-}
-#endif
-
static void GetRoundedConstants(GTF_constants *c)
{
c->Vsync_need = round(GTF_given_constants.Vsync_need);