1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

another >> vs >

Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2007-01-31 10:48:08 +00:00
parent bf47272f3c
commit 960e48f8f0

View File

@ -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;