summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-31 10:48:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-31 10:48:08 +0000
commit960e48f8f061f4a947fceb2ba52dd84a84fb271d (patch)
tree40bf77e2c2517fbbba874fe96a441dc906403976 /libavcodec
parentbf47272f3cb9fb8a60e734a70c7d1085adc64724 (diff)
another >> vs >
Originally committed as revision 7779 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/lzo.c2
1 files changed, 1 insertions, 1 deletions
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;