diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-04-17 02:38:41 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-04-17 02:38:41 +0000 |
commit | 26df3ba28c0a5f6d10ef9035b4be1c28b20d2655 (patch) | |
tree | bd0b312a2c38880c2df53dc00e44514157281ad9 | |
parent | ec04a74e7051829f9ea774b63fa358784498d4dc (diff) | |
download | ffmpeg-26df3ba28c0a5f6d10ef9035b4be1c28b20d2655.tar.gz |
senseless code
Originally committed as revision 12870 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/alac.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/alac.c b/libavcodec/alac.c index 75ea5f958b..219dcefab2 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; |