mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
cairo, videofilter: use gst/math-compat.h header for rint
This commit is contained in:
parent
cdaf72b614
commit
cfa7225898
2 changed files with 4 additions and 10 deletions
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue