Commit 1bbb83f9 authored by michael's avatar michael

another >> vs >


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7779 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 86776dfd
...@@ -213,7 +213,7 @@ int lzo1x_decode(void *out, int *outlen, void *in, int *inlen) { ...@@ -213,7 +213,7 @@ int lzo1x_decode(void *out, int *outlen, void *in, int *inlen) {
c.error |= LZO_INPUT_DEPLETED; c.error |= LZO_INPUT_DEPLETED;
continue; continue;
} }
if (x >> 4) if (x > 15)
continue; continue;
cnt = 1; cnt = 1;
back = (1 << 11) + (GETB(c) << 2) + (x >> 2) + 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