From abb542ad1aa480c11e751218606aa1e85a859cdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20=27Flameeyes=27=20Petten=C3=B2?= Date: Wed, 13 Jun 2007 23:45:57 +0200 Subject: Don't redefine the BE_16/32 macros. Inspired by a patch by Albert Lee. --- src/input/libreal/rmff.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src') diff --git a/src/input/libreal/rmff.c b/src/input/libreal/rmff.c index 0c4ee2ccd..3e8d5db9c 100644 --- a/src/input/libreal/rmff.c +++ b/src/input/libreal/rmff.c @@ -32,12 +32,6 @@ #include "xineutils.h" #include "rmff.h" -#define BE_16(x) ((((uint8_t*)(x))[0] << 8) | ((uint8_t*)(x))[1]) -#define BE_32(x) ((((uint8_t*)(x))[0] << 24) | \ - (((uint8_t*)(x))[1] << 16) | \ - (((uint8_t*)(x))[2] << 8) | \ - ((uint8_t*)(x))[3]) - /* * writes header data to a buffer */ -- cgit v1.2.3