diff pixfmt.h @ 758:22a58fc2125d libavutil

Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
author mru
date Sun, 26 Jul 2009 12:20:04 +0000
parents b339440472c6
children 0c82f8789664
line wrap: on
line diff
--- a/pixfmt.h	Fri Jul 17 08:21:43 2009 +0000
+++ b/pixfmt.h	Sun Jul 26 12:20:04 2009 +0000
@@ -126,7 +126,7 @@
     PIX_FMT_NB,        ///< number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of formats might differ between versions
 };
 
-#ifdef WORDS_BIGENDIAN
+#if HAVE_BIGENDIAN
 #   define PIX_FMT_NE(be, le) PIX_FMT_##be
 #else
 #   define PIX_FMT_NE(be, le) PIX_FMT_##le