From 960e48f8f061f4a947fceb2ba52dd84a84fb271d Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 31 Jan 2007 10:48:08 +0000 Subject: [PATCH] another >> vs > Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/lzo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/lzo.c b/libavcodec/lzo.c index d4c19aad5a..340b552cd8 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;