[MPlayer-cvslog] r27255 - trunk/libmpcodecs/ad_msadpcm.c

reimar subversion at mplayerhq.hu
Fri Jul 11 20:14:16 CEST 2008


Author: reimar
Date: Fri Jul 11 20:14:16 2008
New Revision: 27255

Log:
Remove useless comments from ad_msadpcm


Modified:
   trunk/libmpcodecs/ad_msadpcm.c

Modified: trunk/libmpcodecs/ad_msadpcm.c
==============================================================================
--- trunk/libmpcodecs/ad_msadpcm.c	(original)
+++ trunk/libmpcodecs/ad_msadpcm.c	Fri Jul 11 20:14:16 2008
@@ -45,11 +45,7 @@ static const int ms_adapt_coeff2[] =
 #define MS_ADPCM_PREAMBLE_SIZE 6
 
 #define LE_16(x) ((x)[0]+(256*((x)[1])))
-//#define LE_16(x) (le2me_16((x)[1]+(256*((x)[0]))))
-//#define LE_16(x) (le2me_16(*(unsigned short *)(x)))
-//#define LE_32(x) (le2me_32(*(unsigned int *)(x)))
 
-// useful macros
 // clamp a number between 0 and 88
 #define CLAMP_0_TO_88(x)  if (x < 0) x = 0; else if (x > 88) x = 88;
 // clamp a number within a signed 16-bit range



More information about the MPlayer-cvslog mailing list