From: Michael Niedermayer Date: Wed, 31 Jan 2007 10:48:08 +0000 (+0000) Subject: another >> vs > X-Git-Tag: v0.5~10278 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=960e48f8f061f4a947fceb2ba52dd84a84fb271d;p=platform%2Fupstream%2Flibav.git another >> vs > Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/lzo.c b/libavcodec/lzo.c index d4c19aa..340b552 100644 --- a/libavcodec/lzo.c +++ b/libavcodec/lzo.c @@ -213,7 +213,7 @@ int lzo1x_decode(void *out, int *outlen, void *in, int *inlen) { c.error |= LZO_INPUT_DEPLETED; continue; } - if (x >> 4) + if (x > 15) continue; cnt = 1; back = (1 << 11) + (GETB(c) << 2) + (x >> 2) + 1;