summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-13 23:45:57 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-13 23:45:57 +0200
commitabb542ad1aa480c11e751218606aa1e85a859cdb (patch)
tree9e3333552c3a0a1990f366f7b40a5514ca6be5bb
parent3aa7cc767f81803598c18044d45ebc9bdfe0c8cd (diff)
downloadxine-lib-abb542ad1aa480c11e751218606aa1e85a859cdb.tar.gz
xine-lib-abb542ad1aa480c11e751218606aa1e85a859cdb.tar.bz2
Don't redefine the BE_16/32 macros.
Inspired by a patch by Albert Lee.
-rw-r--r--src/input/libreal/rmff.c6
1 files changed, 0 insertions, 6 deletions
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
*/