diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-14 16:25:38 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-14 16:25:38 +0200 |
commit | 97049a8985f7f9cadff0d61d65961c5cfd490829 (patch) | |
tree | 32db874d5040bc0a42f20b5a9f5adc1712471373 /src/input/libreal/rmff.c | |
parent | 7ae03d031828b8595ef6a441717b3b5402f6ce0d (diff) | |
parent | 9f35b93d3ee2a40444c538247cfc5b05b4b0bf89 (diff) | |
download | xine-lib-97049a8985f7f9cadff0d61d65961c5cfd490829.tar.gz xine-lib-97049a8985f7f9cadff0d61d65961c5cfd490829.tar.bz2 |
Merge from 1.1 branch.
Diffstat (limited to 'src/input/libreal/rmff.c')
-rw-r--r-- | src/input/libreal/rmff.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/input/libreal/rmff.c b/src/input/libreal/rmff.c index 0c4ee2ccd..419c5252e 100644 --- a/src/input/libreal/rmff.c +++ b/src/input/libreal/rmff.c @@ -30,14 +30,9 @@ */ #include "xineutils.h" +#include "bswap.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 */ |