From 26df3ba28c0a5f6d10ef9035b4be1c28b20d2655 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 17 Apr 2008 02:38:41 +0000 Subject: [PATCH] senseless code Originally committed as revision 12870 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/alac.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 75ea5f9..219dcef 100644 --- a/libavcodec/alac.c +++ b/libavcodec/alac.c @@ -170,10 +170,6 @@ static void bastardized_rice_decompress(ALACContext *alac, if (x > 8) { /* RICE THRESHOLD */ /* use alternative encoding */ x = get_bits(&alac->gb, readsamplesize); - - /* mask value to readsamplesize size */ - if (readsamplesize != 32) - x &= (0xffffffff >> (32 - readsamplesize)); } else { /* standard rice encoding */ int extrabits; -- 2.7.4