diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-16 15:34:23 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-16 15:34:23 +0200 |
commit | 5935b6fbe5c4d83ea35a1464b3a1c32e00b23304 (patch) | |
tree | e4d1ef387a60a17eb797b2b837dc446a009fa19a /src/demuxers/ebml.c | |
parent | ea58c6bc3db42aad918da8c90ce05997909e7eb8 (diff) | |
download | xine-lib-5935b6fbe5c4d83ea35a1464b3a1c32e00b23304.tar.gz xine-lib-5935b6fbe5c4d83ea35a1464b3a1c32e00b23304.tar.bz2 |
Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with Solaris definitions (1.2 branch commit).
Diffstat (limited to 'src/demuxers/ebml.c')
-rw-r--r-- | src/demuxers/ebml.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/ebml.c b/src/demuxers/ebml.c index 88492dde6..487344316 100644 --- a/src/demuxers/ebml.c +++ b/src/demuxers/ebml.c @@ -297,12 +297,12 @@ int ebml_read_float (ebml_parser_t *ebml, ebml_elem_t *elem, double *num) { if (size == 4) { float f; - *((uint32_t *) &f) = BE_32(data); + *((uint32_t *) &f) = _X_BE_32(data); *num = f; } else { double d; - *((uint64_t *) &d) = BE_64(data); + *((uint64_t *) &d) = _X_BE_64(data); *num = d; } return 1; |