diff options
Diffstat (limited to 'src/libxineadec/roqaudio.c')
-rw-r--r-- | src/libxineadec/roqaudio.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libxineadec/roqaudio.c b/src/libxineadec/roqaudio.c index 59da90eb4..56c48ed95 100644 --- a/src/libxineadec/roqaudio.c +++ b/src/libxineadec/roqaudio.c @@ -21,7 +21,7 @@ * For more information regarding the RoQ file format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: roqaudio.c,v 1.7 2002/09/05 22:19:01 mroi Exp $ + * $Id: roqaudio.c,v 1.8 2002/10/06 03:48:13 komadori Exp $ * */ @@ -43,9 +43,6 @@ #define AUDIOBUFSIZE 128*1024 -#define LE_16(x) (le2me_16(*(unsigned short *)(x))) -#define LE_32(x) (le2me_32(*(unsigned int *)(x))) - #define CLAMP_S16(x) if (x < -32768) x = -32768; \ else if (x > 32767) x = 32767; #define SE_16BIT(x) if (x & 0x8000) x -= 0x10000; |