From 0934b396d0c17200ac6811b183865e4c8af52fdd Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 6 Oct 2006 14:04:53 +0000 Subject: [PATCH] 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. --- ChangeLog | 5 +++++ common | 2 +- gst-libs/gst/floatcast/floatcast.h | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 962117d0b5..9483ef1250 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-10-06 Michael Smith + + * gst-libs/gst/floatcast/floatcast.h: + Fix obviously-bogus macros; use the correct types. + 2006-10-06 Wim Taymans * gst-libs/gst/rtp/gstbasertpdepayload.c: diff --git a/common b/common index a4af1b8542..83b08805d0 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit a4af1b8542911352e29d53fba47e2c3d7231ebdb +Subproject commit 83b08805d0c109b6dbdcfca0a8b9659b1c556480 diff --git a/gst-libs/gst/floatcast/floatcast.h b/gst-libs/gst/floatcast/floatcast.h index 4e4f3b3116..518d7a6e3b 100644 --- a/gst-libs/gst/floatcast/floatcast.h +++ b/gst-libs/gst/floatcast/floatcast.h @@ -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