[FFmpeg-cvslog] r12870 - trunk/libavcodec/alac.c
michael
subversion
Thu Apr 17 04:38:42 CEST 2008
Author: michael
Date: Thu Apr 17 04:38:41 2008
New Revision: 12870
Log:
sensless code
Modified:
trunk/libavcodec/alac.c
Modified: trunk/libavcodec/alac.c
==============================================================================
--- trunk/libavcodec/alac.c (original)
+++ trunk/libavcodec/alac.c Thu Apr 17 04:38:41 2008
@@ -170,10 +170,6 @@ static void bastardized_rice_decompress(
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;
More information about the ffmpeg-cvslog
mailing list