cairo, videofilter: use gst/math-compat.h header for rint

This commit is contained in:
Tim-Philipp Müller 2010-12-31 02:16:54 +00:00
parent cdaf72b614
commit cfa7225898
2 changed files with 4 additions and 10 deletions

View file

@ -36,19 +36,16 @@
#include "config.h"
#endif
#include <gst/math-compat.h>
#include <gsttimeoverlay.h>
#include <string.h>
#include <math.h>
#include <cairo.h>
#include <gst/video/video.h>
#ifndef HAVE_RINT
#define rint(x) ((double) floor((x)+(((x) < 0)? -0.5 : 0.5)))
#endif
static GstStaticPadTemplate gst_cairo_time_overlay_src_template =
GST_STATIC_PAD_TEMPLATE ("src",
GST_PAD_SRC,

View file

@ -44,17 +44,14 @@
#include "config.h"
#endif
#include <gst/math-compat.h>
#include "gstvideobalance.h"
#include <string.h>
#include <math.h>
#include <gst/controller/gstcontroller.h>
#include <gst/interfaces/colorbalance.h>
#ifndef HAVE_RINT
#define rint(x) (floor((x)+0.5))
#endif
GST_DEBUG_CATEGORY_STATIC (videobalance_debug);
#define GST_CAT_DEFAULT videobalance_debug