summaryrefslogtreecommitdiffstats
path: root/libmpcodecs
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-11 18:14:16 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-07-11 18:14:16 +0000
commit796e4a53cacd6ed6b4a02c3f300d1fadd0687844 (patch)
tree6437633034584331329861331f87da951afcff96 /libmpcodecs
parentf5ead9d0ee5453af202a1fb0681d41b02730bf10 (diff)
downloadmpv-796e4a53cacd6ed6b4a02c3f300d1fadd0687844.tar.bz2
mpv-796e4a53cacd6ed6b4a02c3f300d1fadd0687844.tar.xz
Remove useless comments from ad_msadpcm
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27255 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r--libmpcodecs/ad_msadpcm.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libmpcodecs/ad_msadpcm.c b/libmpcodecs/ad_msadpcm.c
index 02e4d1d1d0..5313f65b8a 100644
--- a/libmpcodecs/ad_msadpcm.c
+++ b/libmpcodecs/ad_msadpcm.c
@@ -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