diff flicvideo.c @ 9985:266bf83f634d libavcodec

Replace WORDS_BIGENDIAN with HAVE_BIGENDIAN
author mru
date Sun, 26 Jul 2009 12:20:04 +0000
parents 5da84f0d0a55
children 8a4984c5cacc
line wrap: on
line diff
--- a/flicvideo.c	Fri Jul 24 21:28:44 2009 +0000
+++ b/flicvideo.c	Sun Jul 26 12:20:04 2009 +0000
@@ -585,7 +585,7 @@
                  * during decompression. So if it is required (i.e., this is not a LE target, we do
                  * a second pass over the line here, swapping the bytes.
                  */
-#ifdef WORDS_BIGENDIAN
+#if HAVE_BIGENDIAN
                 pixel_ptr = y_ptr;
                 pixel_countdown = s->avctx->width;
                 while (pixel_countdown > 0) {