From 24ed40652239b8e3841803e473b31736b4d04bca Mon Sep 17 00:00:00 2001 From: Robin KAY Date: Sun, 6 Oct 2002 03:48:13 +0000 Subject: Workaround for code generation bug in gcc on SPARC. Mike's endian macros now moved to bswap.h CVS patchset: 2794 CVS date: 2002/10/06 03:48:13 --- src/demuxers/demux_smjpeg.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/demuxers/demux_smjpeg.c') diff --git a/src/demuxers/demux_smjpeg.c b/src/demuxers/demux_smjpeg.c index 547222b1b..1619d36a3 100644 --- a/src/demuxers/demux_smjpeg.c +++ b/src/demuxers/demux_smjpeg.c @@ -21,7 +21,7 @@ * For more information on the SMJPEG file format, visit: * http://www.lokigames.com/development/smjpeg.php3 * - * $Id: demux_smjpeg.c,v 1.17 2002/10/05 21:09:18 komadori Exp $ + * $Id: demux_smjpeg.c,v 1.18 2002/10/06 03:48:13 komadori Exp $ */ #ifdef HAVE_CONFIG_H @@ -41,9 +41,6 @@ #include "demux.h" #include "bswap.h" -#define BE_16(x) (be2me_16(*(unsigned short *)(x))) -#define BE_32(x) (be2me_32(*(unsigned int *)(x))) - #define FOURCC_TAG( ch0, ch1, ch2, ch3 ) \ ( (long)(unsigned char)(ch3) | ( (long)(unsigned char)(ch2) << 8 ) | \ ( (long)(unsigned char)(ch1) << 16 ) | ( (long)(unsigned char)(ch0) << 24 ) ) -- cgit v1.2.3