2002-04-26 09:21:14 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* Library <2002> Steve Baker <stevebaker_org@yahoo.co.uk>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2006-06-16 10:02:25 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstfloatcast
|
|
|
|
* @short_description: Floating point platform independence macros
|
|
|
|
*/
|
|
|
|
|
2002-04-26 09:21:14 +00:00
|
|
|
#ifndef __FLOATCAST_H__
|
|
|
|
#define __FLOATCAST_H__
|
|
|
|
|
2003-11-16 21:47:16 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib/gtypes.h>
|
2007-05-31 16:36:22 +00:00
|
|
|
#include <glib/gutils.h> /* to make sure inline is defined properly */
|
|
|
|
|
|
|
|
#if defined (_MSC_VER) && !defined (inline)
|
|
|
|
#define inline __inline
|
|
|
|
#endif
|
2003-11-16 21:47:16 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-04-26 09:21:14 +00:00
|
|
|
#if (HAVE_LRINT && HAVE_LRINTF)
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
/* These defines enable functionality introduced with the 1999 ISO C
|
|
|
|
** standard. They must be defined before the inclusion of math.h to
|
|
|
|
** engage them. If optimisation is enabled, these functions will be
|
|
|
|
** inlined. With optimisation switched off, you have to link in the
|
|
|
|
** maths library using -lm.
|
|
|
|
*/
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
#define _ISOC9X_SOURCE 1
|
|
|
|
#define _ISOC99_SOURCE 1
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
#define __USE_ISOC9X 1
|
|
|
|
#define __USE_ISOC99 1
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
#include <math.h>
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2005-12-06 19:42:02 +00:00
|
|
|
#define gst_cast_float(x) ((gint)lrintf(x))
|
|
|
|
#define gst_cast_double(x) ((gint)lrint(x))
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-04-26 09:21:14 +00:00
|
|
|
#else
|
2005-12-06 19:42:02 +00:00
|
|
|
/* use a standard c cast, but do rounding correctly */
|
|
|
|
#define gst_cast_float(x) ((gint)floor((x)+0.5))
|
|
|
|
#define gst_cast_double(x) ((gint)floor((x)+0.5))
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-04-26 09:21:14 +00:00
|
|
|
#endif
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2003-11-16 21:47:16 +00:00
|
|
|
inline static gfloat
|
2004-03-15 16:32:55 +00:00
|
|
|
GFLOAT_SWAP_LE_BE(gfloat in)
|
2003-11-16 21:47:16 +00:00
|
|
|
{
|
2007-03-29 18:42:34 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
guint32 i;
|
|
|
|
gfloat f;
|
|
|
|
} u;
|
|
|
|
|
|
|
|
u.f = in;
|
|
|
|
u.i = GUINT32_SWAP_LE_BE (u.i);
|
|
|
|
return u.f;
|
2003-11-16 21:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static gdouble
|
2004-03-15 16:32:55 +00:00
|
|
|
GDOUBLE_SWAP_LE_BE(gdouble in)
|
2003-11-16 21:47:16 +00:00
|
|
|
{
|
2007-03-29 18:42:34 +00:00
|
|
|
union
|
|
|
|
{
|
|
|
|
guint64 i;
|
|
|
|
gdouble d;
|
|
|
|
} u;
|
|
|
|
|
|
|
|
u.d = in;
|
|
|
|
u.i = GUINT64_SWAP_LE_BE (u.i);
|
|
|
|
return u.d;
|
2003-11-16 21:47:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
#define GFLOAT_TO_LE(val) ((gfloat) (val))
|
|
|
|
#define GFLOAT_TO_BE(val) (GFLOAT_SWAP_LE_BE (val))
|
|
|
|
#define GDOUBLE_TO_LE(val) ((gdouble) (val))
|
|
|
|
#define GDOUBLE_TO_BE(val) (GDOUBLE_SWAP_LE_BE (val))
|
|
|
|
|
|
|
|
#elif G_BYTE_ORDER == G_BIG_ENDIAN
|
|
|
|
#define GFLOAT_TO_LE(val) (GFLOAT_SWAP_LE_BE (val))
|
|
|
|
#define GFLOAT_TO_BE(val) ((gfloat) (val))
|
|
|
|
#define GDOUBLE_TO_LE(val) (GDOUBLE_SWAP_LE_BE (val))
|
|
|
|
#define GDOUBLE_TO_BE(val) ((gdouble) (val))
|
|
|
|
|
|
|
|
#else /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
|
|
|
|
#error unknown ENDIAN type
|
|
|
|
#endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
|
|
|
|
|
|
|
|
#define GFLOAT_FROM_LE(val) (GFLOAT_TO_LE (val))
|
2006-10-06 14:04:53 +00:00
|
|
|
#define GFLOAT_FROM_BE(val) (GFLOAT_TO_BE (val))
|
|
|
|
#define GDOUBLE_FROM_LE(val) (GDOUBLE_TO_LE (val))
|
2003-11-16 21:47:16 +00:00
|
|
|
#define GDOUBLE_FROM_BE(val) (GDOUBLE_TO_BE (val))
|
|
|
|
|
|
|
|
G_END_DECLS
|
2004-03-15 16:32:55 +00:00
|
|
|
|
2002-04-26 09:21:14 +00:00
|
|
|
#endif /* __FLOATCAST_H__ */
|
2004-03-15 16:32:55 +00:00
|
|
|
|