# HG changeset patch # User reimar # Date 1215799935 0 # Node ID 7bd7dd22faad7b6dda8b95eeb57e4f8ee9da99c3 # Parent 3d94f70003e9f06c7777dcffb7b6a9a9822e23aa Remove unused macros diff -r 3d94f70003e9 -r 7bd7dd22faad libmpcodecs/ad_imaadpcm.c --- a/libmpcodecs/ad_imaadpcm.c Fri Jul 11 18:10:06 2008 +0000 +++ b/libmpcodecs/ad_imaadpcm.c Fri Jul 11 18:12:15 2008 +0000 @@ -33,9 +33,7 @@ #define QT_IMA_ADPCM_SAMPLES_PER_BLOCK 64 #define BE_16(x) (be2me_16(*(unsigned short *)(x))) -#define BE_32(x) (be2me_32(*(unsigned int *)(x))) #define LE_16(x) (le2me_16(*(unsigned short *)(x))) -#define LE_32(x) (le2me_32(*(unsigned int *)(x))) // pertinent tables for IMA ADPCM static const int16_t adpcm_step[89] = @@ -63,8 +61,6 @@ #define CLAMP_S16(x) x = av_clip_int16(x); // clamp a number above 16 #define CLAMP_ABOVE_16(x) if (x < 16) x = 16; -// sign extend a 4-bit value -#define SE_4BIT(x) if (x & 0x8) x -= 0x10; static ad_info_t info = {