summaryrefslogtreecommitdiff
path: root/src/demuxers/ebml.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:11:56 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:11:56 +0200
commitf86215baf77d5b928a047d83ea19ea442f2a83f9 (patch)
treef663dc788902b722657e745ce9144a5116c82022 /src/demuxers/ebml.c
parentca74f1ccdf190bdd0beff7dfc7722a11b43b649d (diff)
downloadxine-lib-f86215baf77d5b928a047d83ea19ea442f2a83f9.tar.gz
xine-lib-f86215baf77d5b928a047d83ea19ea442f2a83f9.tar.bz2
Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with Solaris definitions.
Diffstat (limited to 'src/demuxers/ebml.c')
-rw-r--r--src/demuxers/ebml.c4
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;