gst-libs/gst/floatcast/floatcast.h: Fix obviously-bogus macros; use the correct types.

Original commit message from CVS:
* gst-libs/gst/floatcast/floatcast.h:
Fix obviously-bogus macros; use the correct types.
This commit is contained in:
Michael Smith 2006-10-06 14:04:53 +00:00
parent 07aaf7f948
commit 0934b396d0
3 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-10-06 Michael Smith <msmith@fluendo.com>
* gst-libs/gst/floatcast/floatcast.h:
Fix obviously-bogus macros; use the correct types.
2006-10-06 Wim Taymans <wim@fluendo.com>
* gst-libs/gst/rtp/gstbasertpdepayload.c:

2
common

@ -1 +1 @@
Subproject commit a4af1b8542911352e29d53fba47e2c3d7231ebdb
Subproject commit 83b08805d0c109b6dbdcfca0a8b9659b1c556480

View file

@ -101,8 +101,8 @@ GDOUBLE_SWAP_LE_BE(gdouble in)
#endif /* !G_LITTLE_ENDIAN && !G_BIG_ENDIAN */
#define GFLOAT_FROM_LE(val) (GFLOAT_TO_LE (val))
#define GFLOAT_FROM_BE(val) (GDOUBLE_TO_BE (val))
#define GDOUBLE_FROM_LE(val) (GFLOAT_TO_LE (val))
#define GFLOAT_FROM_BE(val) (GFLOAT_TO_BE (val))
#define GDOUBLE_FROM_LE(val) (GDOUBLE_TO_LE (val))
#define GDOUBLE_FROM_BE(val) (GDOUBLE_TO_BE (val))
G_END_DECLS