changeset 4444:73b81d87c846 libavcodec

another >> vs >
author michael
date Wed, 31 Jan 2007 10:48:08 +0000
parents 54bed3ee58f3
children fc9a42d0e848
files lzo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lzo.c	Wed Jan 31 10:34:13 2007 +0000
+++ b/lzo.c	Wed Jan 31 10:48:08 2007 +0000
@@ -213,7 +213,7 @@
                     c.error |= LZO_INPUT_DEPLETED;
                     continue;
                 }
-                if (x >> 4)
+                if (x > 15)
                     continue;
                 cnt = 1;
                 back = (1 << 11) + (GETB(c) << 2) + (x >> 2) + 1;