Commit 960e48f8 authored by Michael Niedermayer's avatar Michael Niedermayer

another >> vs >

Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent bf47272f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment