replace WORDS_BIGENDIAN with __BIG_ENDIAN__

This commit is contained in:
Campbell Barton 2011-09-19 08:11:30 +00:00
parent 83a2f02a78
commit 4e9ab6d04c
2 changed files with 9 additions and 14 deletions

@ -42,11 +42,6 @@
#include "MEM_guardedalloc.h" #include "MEM_guardedalloc.h"
#include "avirgb.h" #include "avirgb.h"
#ifdef __BIG_ENDIAN__
# define WORDS_BIGENDIAN
#endif
/* implementation */ /* implementation */
void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size) { void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *buffer, int *size) {
@ -63,7 +58,7 @@ void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *bu
if (bits==16) { if (bits==16) {
unsigned short *pxl; unsigned short *pxl;
unsigned char *to; unsigned char *to;
#ifdef WORDS_BIGENDIAN #ifdef __BIG_ENDIAN__
unsigned char *pxla; unsigned char *pxla;
#endif #endif
@ -75,13 +70,13 @@ void *avi_converter_from_avi_rgb (AviMovie *movie, int stream, unsigned char *bu
while (y--) { while (y--) {
pxl= (unsigned short *) (buffer + y * movie->header->Width * 2); pxl= (unsigned short *) (buffer + y * movie->header->Width * 2);
#ifdef WORDS_BIGENDIAN #ifdef __BIG_ENDIAN__
pxla= (unsigned char *)pxl; pxla= (unsigned char *)pxl;
#endif #endif
x= movie->header->Width; x= movie->header->Width;
while (x--) { while (x--) {
#ifdef WORDS_BIGENDIAN #ifdef __BIG_ENDIAN__
i= pxla[0]; i= pxla[0];
pxla[0]= pxla[1]; pxla[0]= pxla[1];
pxla[1]= i; pxla[1]= i;

@ -28,7 +28,7 @@
#include "md5.h" #include "md5.h"
#ifdef WORDS_BIGENDIAN #ifdef __BIG_ENDIAN__
# define SWAP(n) \ # define SWAP(n) \
(((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24)) (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
#else #else