diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2002-10-06 03:48:13 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2002-10-06 03:48:13 +0000 |
commit | 24ed40652239b8e3841803e473b31736b4d04bca (patch) | |
tree | 32858182f1bbd66458e4467608cdad8efe6a9b09 /src/libxinevdec/wc3video.c | |
parent | 08d0890139902ec1a227d2bd429585534fa6ff24 (diff) | |
download | xine-lib-24ed40652239b8e3841803e473b31736b4d04bca.tar.gz xine-lib-24ed40652239b8e3841803e473b31736b4d04bca.tar.bz2 |
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
Diffstat (limited to 'src/libxinevdec/wc3video.c')
-rw-r--r-- | src/libxinevdec/wc3video.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/libxinevdec/wc3video.c b/src/libxinevdec/wc3video.c index 9c943581e..413c3b7de 100644 --- a/src/libxinevdec/wc3video.c +++ b/src/libxinevdec/wc3video.c @@ -22,7 +22,7 @@ * For more information on the WC3 Movie format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: wc3video.c,v 1.5 2002/09/13 03:02:18 tmmm Exp $ + * $Id: wc3video.c,v 1.6 2002/10/06 03:48:13 komadori Exp $ */ #include <stdio.h> @@ -42,11 +42,6 @@ #define WC3_WIDTH 320 #define WC3_HEIGHT 165 -#define LE_16(x) (le2me_16(*(uint16_t *)(x))) -#define LE_32(x) (le2me_32(*(uint32_t *)(x))) -#define BE_16(x) (be2me_16(*(unsigned short *)(x))) -#define BE_32(x) (be2me_32(*(unsigned int *)(x))) - typedef struct wc3video_decoder_s { video_decoder_t video_decoder; /* parent video decoder structure */ |