summaryrefslogtreecommitdiff
path: root/libavcodec/alac.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-04-17 02:38:41 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-04-17 02:38:41 +0000
commit26df3ba28c0a5f6d10ef9035b4be1c28b20d2655 (patch)
treebd0b312a2c38880c2df53dc00e44514157281ad9 /libavcodec/alac.c
parentec04a74e7051829f9ea774b63fa358784498d4dc (diff)
senseless code
Originally committed as revision 12870 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/alac.c')
-rw-r--r--libavcodec/alac.c4
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;