summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmpdemux/demux_mov.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/libmpdemux/demux_mov.c b/libmpdemux/demux_mov.c
index e81acec38e..0623809221 100644
--- a/libmpdemux/demux_mov.c
+++ b/libmpdemux/demux_mov.c
@@ -47,17 +47,15 @@
#include <fcntl.h>
#endif
-#define BE_16(x) (be2me_16(*(unsigned short *)(x)))
-#define BE_32(x) (be2me_32(*(unsigned int *)(x)))
-
-#ifndef WORDS_BIGENDIAN
-#define char2short(x,y) ((x[y]<<8)|x[y+1])
-#define char2int(x,y) ((x[y]<<24)|(x[y+1]<<16)|(x[y+2]<<8)|x[y+3])
-#else
-#warning Check the implementation of char2short and char2int on BIGENDIAN!!!
-#define char2short(x,y) (x[y]|(x[y+1]<<8))
-#define char2int(x,y) (x[y]|(x[y+1]<<8)|(x[y+2]<<16)|(x[y+3]<<24))
-#endif
+#define BE_16(x) (((unsigned char *)(x))[0] << 8 | \
+ ((unsigned char *)(x))[1])
+#define BE_32(x) (((unsigned char *)(x))[0] << 24 | \
+ ((unsigned char *)(x))[1] << 16 | \
+ ((unsigned char *)(x))[2] << 8 | \
+ ((unsigned char *)(x))[3])
+
+#define char2short(x,y) BE_16(&(x)[(y)])
+#define char2int(x,y) BE_32(&(x)[(y)])
typedef struct {
unsigned int pts; // duration