Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-31 14:31:37 +0400
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2009-05-31 14:31:37 +0400
commit5a18221ba844858905c3a84ce2f9851ac88a53da (patch)
tree94b4a0b1b57f7bceeda15738324826e9f48c82c9 /libavcodec/lcldec.c
parent7b151a98b0ed36ebf04e5f336734678dbf98b6ba (diff)
Remove useless & 0x1f
Originally committed as revision 19050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lcldec.c')
-rw-r--r--libavcodec/lcldec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c
index 44bcfbdc11..6bd4556d0a 100644
--- a/libavcodec/lcldec.c
+++ b/libavcodec/lcldec.c
@@ -99,7 +99,7 @@ static unsigned int mszh_decomp(unsigned char * srcptr, int srclen, unsigned cha
ofs = *srcptr++;
cnt = *srcptr++;
ofs += cnt * 256;
- cnt = ((cnt >> 3) & 0x1f) + 1;
+ cnt = (cnt >> 3) + 1;
ofs &= 0x7ff;
cnt *= 4;
if (destptr_end - destptr < cnt) {