summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-07-26 19:53:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-07-26 19:53:00 +0000
commite5751ced4f16fe75f835b70e37ecf48a2032506b (patch)
tree38684770a130fa5d209776ef7413c22b7d2cec4b /mp3lib
parentc242fdbfd9242873aae85be9f841f1f3caf9633f (diff)
downloadmpv-e5751ced4f16fe75f835b70e37ecf48a2032506b.tar.bz2
mpv-e5751ced4f16fe75f835b70e37ecf48a2032506b.tar.xz
Replace WORDS_BIGENDIAN by HAVE_BIGENDIAN in all internal code.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29443 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/decod386.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index 4b6d69bc4d..a2cfb56ce8 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -50,11 +50,11 @@
* On a SPARC cpu, we fetch the low-order 32-bit from the second 32-bit
* word of the double fp value stored in memory. On an x86 cpu, we fetch it
* from the first 32-bit word.
- * I'm not sure if the WORDS_BIGENDIAN feature test covers all possible memory
+ * I'm not sure if the HAVE_BIGENDIAN feature test covers all possible memory
* layouts of double floating point values an all cpu architectures. If
* it doesn't work for you, just enable the "old WRITE_SAMPLE" macro.
*/
-#ifdef WORDS_BIGENDIAN
+#if HAVE_BIGENDIAN
#define MANTISSA_OFFSET 1
#else
#define MANTISSA_OFFSET 0