diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-16 15:11:56 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-16 15:11:56 +0200 |
commit | f86215baf77d5b928a047d83ea19ea442f2a83f9 (patch) | |
tree | f663dc788902b722657e745ce9144a5116c82022 /src/demuxers/demux_aud.c | |
parent | ca74f1ccdf190bdd0beff7dfc7722a11b43b649d (diff) | |
download | xine-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/demux_aud.c')
-rw-r--r-- | src/demuxers/demux_aud.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_aud.c b/src/demuxers/demux_aud.c index ea57a6939..8604ea317 100644 --- a/src/demuxers/demux_aud.c +++ b/src/demuxers/demux_aud.c @@ -97,7 +97,7 @@ static int open_aud_file(demux_aud_t *this) { * of numbers. There is a 80002/16777216 = 0.48% chance of a false * positive. */ - this->audio_samplerate = LE_16(&header[0]); + this->audio_samplerate = _X_LE_16(&header[0]); if ((this->audio_samplerate < 8000) || (this->audio_samplerate > 48000)) return 0; @@ -145,12 +145,12 @@ static int demux_aud_send_chunk(demux_plugin_t *this_gen) { } /* validate the chunk */ - if (LE_32(&chunk_preamble[4]) != 0x0000DEAF) { + if (_X_LE_32(&chunk_preamble[4]) != 0x0000DEAF) { this->status = DEMUX_FINISHED; return this->status; } - chunk_size = LE_16(&chunk_preamble[0]); + chunk_size = _X_LE_16(&chunk_preamble[0]); current_file_pos = this->input->get_current_pos(this->input) - this->data_start; |